-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6f193db
commit 852ee48
Showing
329 changed files
with
1,584,528 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
const builtin = @import("builtin"); | ||
const std = @import("std"); | ||
|
||
const is_zig_0_11 = std.mem.eql(u8, builtin.zig_version_string, "0.11.0"); | ||
|
||
pub fn build(b: *std.Build) void { | ||
if (is_zig_0_11) { | ||
_ = b.addModule("zigwin32", .{ | ||
.source_file = .{ .path = "win32.zig" }, | ||
}); | ||
} else { | ||
_ = b.addModule("zigwin32", .{ | ||
.root_source_file = .{ .path = "win32.zig" }, | ||
}); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
//! NOTE: this file is autogenerated, DO NOT MODIFY | ||
pub const ai = @import("win32/ai.zig"); | ||
pub const data = @import("win32/data.zig"); | ||
pub const devices = @import("win32/devices.zig"); | ||
pub const everything = @import("win32/everything.zig"); | ||
pub const foundation = @import("win32/foundation.zig"); | ||
pub const gaming = @import("win32/gaming.zig"); | ||
pub const globalization = @import("win32/globalization.zig"); | ||
pub const graphics = @import("win32/graphics.zig"); | ||
pub const management = @import("win32/management.zig"); | ||
pub const media = @import("win32/media.zig"); | ||
pub const missing = @import("win32/missing.zig"); | ||
pub const network_management = @import("win32/network_management.zig"); | ||
pub const networking = @import("win32/networking.zig"); | ||
pub const security = @import("win32/security.zig"); | ||
pub const storage = @import("win32/storage.zig"); | ||
pub const system = @import("win32/system.zig"); | ||
pub const ui = @import("win32/ui.zig"); | ||
pub const web = @import("win32/web.zig"); | ||
pub const windowlongptr = @import("win32/windowlongptr.zig"); | ||
pub const zig = @import("win32/zig.zig"); | ||
test { | ||
@import("std").testing.refAllDecls(@This()); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
//! NOTE: this file is autogenerated, DO NOT MODIFY | ||
pub const machine_learning = @import("ai/machine_learning.zig"); | ||
test { | ||
@import("std").testing.refAllDecls(@This()); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
//! NOTE: this file is autogenerated, DO NOT MODIFY | ||
pub const direct_ml = @import("machine_learning/direct_ml.zig"); | ||
pub const win_ml = @import("machine_learning/win_ml.zig"); | ||
test { | ||
@import("std").testing.refAllDecls(@This()); | ||
} |
Oops, something went wrong.