diff options
author | Chris Sutcliffe <ir0nh34d@users.sourceforge.net> | 2007-02-11 14:32:24 +0000 |
---|---|---|
committer | Chris Sutcliffe <ir0nh34d@users.sourceforge.net> | 2007-02-11 14:32:24 +0000 |
commit | b46bc8f5f51ea1fbe334644e540268dbcce9c24e (patch) | |
tree | 3533546618644f7fe84f3f146a7e16062b661122 /winsup/w32api/include/winuser.h | |
parent | 60800fb274865b0cddbe568bcfe012a5d6be30e4 (diff) | |
download | cygnal-b46bc8f5f51ea1fbe334644e540268dbcce9c24e.tar.gz cygnal-b46bc8f5f51ea1fbe334644e540268dbcce9c24e.tar.bz2 cygnal-b46bc8f5f51ea1fbe334644e540268dbcce9c24e.zip |
2007-02-11 Daniel Atallah <datallah@users.sourceforge.net>
* include/winnt.h (LANG_SERBIAN_NEUTRAL, LANG_BOSNIAN,
LANG_BOSNIAN_NEUTRAL): Define.
2007-02-11 Daniel Schlyder <thrug@users.sourceforge.net>
* include/winuser.h: Add guards around TITLEBARINFO and
GetTitleBarInfo().
Diffstat (limited to 'winsup/w32api/include/winuser.h')
-rw-r--r-- | winsup/w32api/include/winuser.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/winsup/w32api/include/winuser.h b/winsup/w32api/include/winuser.h index 4692b5ce6..7a3885e1f 100644 --- a/winsup/w32api/include/winuser.h +++ b/winsup/w32api/include/winuser.h @@ -3103,12 +3103,14 @@ typedef struct tagSCROLLBARINFO { int reserved; DWORD rgstate[CCHILDREN_SCROLLBAR+1]; } SCROLLBARINFO,*PSCROLLBARINFO,*LPSCROLLBARINFO; +#if (_WIN32_WINDOWS >= 0x0410) #define CCHILDREN_TITLEBAR 5 typedef struct tagTITLEBARINFO { DWORD cbSize; RECT rcTitleBar; DWORD rgstate[CCHILDREN_TITLEBAR+1]; } TITLEBARINFO,*PTITLEBARINFO,*LPTITLEBARINFO; +#endif typedef struct tagWINDOWINFO { DWORD cbSize; RECT rcWindow; @@ -3713,7 +3715,9 @@ WINUSERAPI BOOL WINAPI GetMenuInfo(HMENU,LPMENUINFO); WINUSERAPI BOOL WINAPI GetProcessDefaultLayout(DWORD*); #endif WINUSERAPI BOOL WINAPI GetScrollBarInfo(HWND,LONG,PSCROLLBARINFO); +#if (_WIN32_WINDOWS >= 0x0410) WINUSERAPI BOOL WINAPI GetTitleBarInfo(HWND,PTITLEBARINFO); +#endif WINUSERAPI BOOL WINAPI GetWindowInfo(HWND,PWINDOWINFO); WINUSERAPI BOOL WINAPI GetMonitorInfoA(HMONITOR,LPMONITORINFO); WINUSERAPI BOOL WINAPI GetMonitorInfoW(HMONITOR,LPMONITORINFO); |