mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 16:23:01 +00:00
[WIN32K] Fix 64 bit issues (#420)
- Fix ULONG/SIZE_T issues - Use LOWORD/HIWORD - Change a struct member to HANDLE - Implement lstrlenW helper function
This commit is contained in:
parent
5b2ff8a3f9
commit
2d9c88e0c5
35 changed files with 108 additions and 94 deletions
|
@ -219,7 +219,7 @@ typedef struct tagHOOK
|
|||
int HookId; /* Hook table index */
|
||||
ULONG_PTR offPfn;
|
||||
ULONG flags; /* Some internal flags */
|
||||
INT ihmod;
|
||||
INT_PTR ihmod;
|
||||
struct _THREADINFO *ptiHooked;
|
||||
struct _DESKTOP *rpdesk;
|
||||
/* ReactOS */
|
||||
|
@ -692,7 +692,7 @@ typedef struct _WND
|
|||
HMENU SystemMenu;
|
||||
//PMENU spmenuSys;
|
||||
/* Window menu handle or window id */
|
||||
UINT IDMenu; // Use spmenu
|
||||
UINT_PTR IDMenu; // Use spmenu
|
||||
//PMENU spmenu;
|
||||
HRGN hrgnClip;
|
||||
HRGN hrgnNewFrame;
|
||||
|
@ -1662,14 +1662,14 @@ DWORD
|
|||
NTAPI
|
||||
NtUserCallHwndParam(
|
||||
HWND hWnd,
|
||||
DWORD Param,
|
||||
DWORD_PTR Param,
|
||||
DWORD Routine);
|
||||
|
||||
DWORD
|
||||
NTAPI
|
||||
NtUserCallHwndParamLock(
|
||||
HWND hWnd,
|
||||
DWORD Param,
|
||||
DWORD_PTR Param,
|
||||
DWORD Routine);
|
||||
|
||||
BOOL
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue