mirror of
https://github.com/ziglang/zig.git
synced 2025-12-12 17:23:09 +00:00
also start prefering NtDll API. so far: * NtQueryInformationFile * NtClose adds a performance workaround for windows unicode conversion. but that should probably be removed before merging
5 lines
176 B
Zig
5 lines
176 B
Zig
/// The operation completed successfully.
|
|
pub const SUCCESS = 0x00000000;
|
|
|
|
/// The data was too large to fit into the specified buffer.
|
|
pub const BUFFER_OVERFLOW = 0x80000005; |