Correct the comments: the code is right.

This commit is contained in:
Thomas Heller 2007-01-11 21:23:12 +00:00
parent 8138c26a83
commit f5b5183a19
1 changed files with 2 additions and 2 deletions

View File

@ -34,8 +34,8 @@ LPCOLESTR = LPOLESTR = OLESTR = c_wchar_p
LPCWSTR = LPWSTR = c_wchar_p
LPCSTR = LPSTR = c_char_p
# WPARAM is defined as UINT_PTR (which is signed)
# LPARAM is defined as LONG_PTR (which is unsigned)
# WPARAM is defined as UINT_PTR (unsigned type)
# LPARAM is defined as LONG_PTR (signed type)
if sizeof(c_long) == sizeof(c_void_p):
WPARAM = c_ulong
LPARAM = c_long