* include/winuser.h [WINVER >= 0x0500] (GetGUIThreadInfo,

LPGUITHREADINFO): Add function and associated typedef...
* include/winable.h [WINVER < 0x0500] (GetGUIThreadInfo,
LPGUITHREADINFO): ...and duplicate them in <winable.h> as
seems to be required on older versions of Windows.
This commit is contained in:
Dimitri Papadopoulos
2003-09-25 07:53:44 +00:00
parent 64150cfc6a
commit 75e1776af6
3 changed files with 15 additions and 2 deletions

View File

@@ -42,7 +42,8 @@ typedef struct tagGUITHREADINFO {
HWND hwndMoveSize;
HWND hwndCaret;
RECT rcCaret;
} GUITHREADINFO,*PGUITHREADINFO;
} GUITHREADINFO,*PGUITHREADINFO,*LPGUITHREADINFO;
BOOL WINAPI GetGUIThreadInfo(DWORD,LPGUITHREADINFO);
#endif /* (WINVER < 0x0500) */
#ifdef __cplusplus