| author | |
| committer | |
| log | f1ef0a80f1d614bbbb9ad8fae7992d55111c8cd7 |
| tree | 9b93cb231e99c2b17c3428b5a7541c706ea0b6fa |
| parent | 5ee04315272ba19e3d329ad21d38e9e425e21ab5 |
LRESULT and LPARAM are currently typedef'd as ?*c_void, however, they are supposed to be typedef'd as LONG_PTR which is equivalent to isize in Zig.1 files changed, 2 insertions(+), 2 deletions(-)
lib/std/os/windows/bits.zig+2-2| ... | ... | @@ -84,8 +84,8 @@ pub const HLOCAL = HANDLE; |
| 84 | 84 | pub const LANGID = c_ushort; |
| 85 | 85 | |
| 86 | 86 | pub const WPARAM = usize; |
| 87 | pub const LPARAM = ?*c_void; | |
| 88 | pub const LRESULT = ?*c_void; | |
| 87 | pub const LPARAM = LONG_PTR; | |
| 88 | pub const LRESULT = LONG_PTR; | |
| 89 | 89 | |
| 90 | 90 | pub const va_list = *opaque {}; |
| 91 | 91 |