mirror of
https://github.com/ziglang/zig.git
synced 2026-02-21 16:54:52 +00:00
fix LRESULT and LPARAM typedefs
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.
This commit is contained in:
parent
5ee0431527
commit
f1ef0a80f1
@ -84,8 +84,8 @@ pub const HLOCAL = HANDLE;
|
||||
pub const LANGID = c_ushort;
|
||||
|
||||
pub const WPARAM = usize;
|
||||
pub const LPARAM = ?*c_void;
|
||||
pub const LRESULT = ?*c_void;
|
||||
pub const LPARAM = LONG_PTR;
|
||||
pub const LRESULT = LONG_PTR;
|
||||
|
||||
pub const va_list = *opaque {};
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user