diff options
author | Danny Smith <dannysmith@users.sourceforge.net> | 2003-08-17 08:47:37 +0000 |
---|---|---|
committer | Danny Smith <dannysmith@users.sourceforge.net> | 2003-08-17 08:47:37 +0000 |
commit | 5ca7a646d5c4bf58816d6cbce806d150a11e346f (patch) | |
tree | 1a28fa6bd79690934da12f4daf926c733f793990 | |
parent | 4f0b39d4210bdc692c18486152b7b3a476327aa8 (diff) | |
download | newlib-5ca7a646d5c4bf58816d6cbce806d150a11e346f.zip newlib-5ca7a646d5c4bf58816d6cbce806d150a11e346f.tar.gz newlib-5ca7a646d5c4bf58816d6cbce806d150a11e346f.tar.bz2 |
2003-08-17 Martin Fuchs <Martin-Fuchs@gmx.net>
* include/commctrl.h (TreeView_GetScrollTime,
TreeView_SetScrollTime): Define macros.
* include/winuser.h (GetShellWindow): Add prototype.
* include/objidl.h (STGMEDIUM): Correct lpszFileName type.
-rw-r--r-- | winsup/w32api/include/commctrl.h | 2 | ||||
-rw-r--r-- | winsup/w32api/include/objidl.h | 2 | ||||
-rw-r--r-- | winsup/w32api/include/winuser.h | 3 |
3 files changed, 6 insertions, 1 deletions
diff --git a/winsup/w32api/include/commctrl.h b/winsup/w32api/include/commctrl.h index 90f2e8c..d1a0c0a 100644 --- a/winsup/w32api/include/commctrl.h +++ b/winsup/w32api/include/commctrl.h @@ -2582,10 +2582,12 @@ WINBOOL WINAPI ImageList_DrawIndirect(IMAGELISTDRAWPARAMS*); #define TreeView_GetBkColor(w) (COLORREF)SNDMSG((w),TVM_GETBKCOLOR,0,0) #define TreeView_GetInsertMarkColor(w) (COLORREF)SNDMSG((w),TVM_GETINSERTMARKCOLOR,0,0) #define TreeView_GetItemHeight(w) (int)SNDMSG((w),TVM_GETITEMHEIGHT,0,0) +#define TreeView_GetScrollTime(w) (UINT)SNDMSG((w),TVM_GETSCROLLTIME,0,0) #define TreeView_GetTextColor(w) (COLORREF)SNDMSG((w),TVM_GETTEXTCOLOR,0,0) #define TreeView_SetBkColor(w,c) (COLORREF)SNDMSG((w),TVM_SETBKCOLOR,0,(LPARAM)(c)) #define TreeView_SetInsertMarkColor(w,c) (COLORREF)SNDMSG((w),TVM_SETINSERTMARKCOLOR,0,(LPARAM)(c)) #define TreeView_SetItemHeight(w,h) (int)SNDMSG((w),TVM_SETITEMHEIGHT,(WPARAM)(h),0) +#define TreeView_SetScrollTime(w,t) (UINT)SNDMSG((w),TVM_SETSCROLLTIME,(WPARAM)(UINT)(t),0) #define TreeView_SetTextColor(w,c) (COLORREF)SNDMSG((w),TVM_SETTEXTCOLOR,0,(LPARAM)(c)) #endif diff --git a/winsup/w32api/include/objidl.h b/winsup/w32api/include/objidl.h index 6cbd038..326915c 100644 --- a/winsup/w32api/include/objidl.h +++ b/winsup/w32api/include/objidl.h @@ -159,7 +159,7 @@ typedef struct tagSTGMEDIUM { PVOID hMetaFilePict; HENHMETAFILE hEnhMetaFile; HGLOBAL hGlobal; - LPCSTR lpszFileName; + LPWSTR lpszFileName; LPSTREAM pstm; LPSTORAGE pstg; } DUMMYUNIONNAME; diff --git a/winsup/w32api/include/winuser.h b/winsup/w32api/include/winuser.h index b62b3cc..8879002 100644 --- a/winsup/w32api/include/winuser.h +++ b/winsup/w32api/include/winuser.h @@ -3060,6 +3060,9 @@ DWORD WINAPI GetQueueStatus(UINT); BOOL WINAPI GetScrollInfo(HWND,int,LPSCROLLINFO); int WINAPI GetScrollPos(HWND,int); BOOL WINAPI GetScrollRange(HWND,int,LPINT,LPINT); +#if (_WIN32_WINNT >= _NT5) +HWND WINAPI GetShellWindow(VOID); +#endif HMENU WINAPI GetSubMenu(HMENU,int); DWORD WINAPI GetSysColor(int); HBRUSH WINAPI GetSysColorBrush(int); |