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:
committed by
Andrew Kelley
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 {};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user