diff options
Diffstat (limited to 'lib/std/os/windows/status.zig')
| -rw-r--r-- | lib/std/os/windows/status.zig | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/std/os/windows/status.zig b/lib/std/os/windows/status.zig new file mode 100644 index 0000000000..b9fd2b495f --- /dev/null +++ b/lib/std/os/windows/status.zig @@ -0,0 +1,5 @@ +/// The operation completed successfully. +pub const SUCCESS = 0x00000000; + +/// The data was too large to fit into the specified buffer. +pub const BUFFER_OVERFLOW = 0x80000005; |
