zig/lib/std/os/windows/status.zig

6 lines
176 B
Zig
Raw Normal View History

2019-08-16 06:19:04 +08:00
/// The operation completed successfully.
pub const SUCCESS = 0x00000000;
/// The data was too large to fit into the specified buffer.
2019-08-16 06:19:04 +08:00
pub const BUFFER_OVERFLOW = 0x80000005;