zig/std/os/windows/status.zig

5 lines
176 B
Zig
Raw Normal View History

/// The operation completed successfully.
pub const SUCCESS = 0x00000000;
/// The data was too large to fit into the specified buffer.
pub const BUFFER_OVERFLOW = 0x80000005;