zig/std/os/windows/status.zig
Andrew Kelley 7e75e1075e
zig fmt
2019-08-15 18:19:04 -04:00

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;