2009-20-10 Heiko Hund <heiko@ist.eigentlich.net>
* include/commctrl.h (GetMUILanguage, InitMUILanguage): Add prototypes. * lib/comctl32.def (GetMUILanguage, InitMUILanguage): Define.
This commit is contained in:
parent
21d105b7c6
commit
547f15d128
|
@ -1,3 +1,8 @@
|
||||||
|
2009-20-10 Heiko Hund <heiko@ist.eigentlich.net>
|
||||||
|
|
||||||
|
* include/commctrl.h (GetMUILanguage, InitMUILanguage): Add prototypes.
|
||||||
|
* lib/comctl32.def (GetMUILanguage, InitMUILanguage): Define.
|
||||||
|
|
||||||
2009-20-10 Michael James <james.me@gmail.com>
|
2009-20-10 Michael James <james.me@gmail.com>
|
||||||
|
|
||||||
* include/wingdi.h (CLEARTYPE_QUALITY): Define.
|
* include/wingdi.h (CLEARTYPE_QUALITY): Define.
|
||||||
|
|
|
@ -2985,6 +2985,9 @@ void WINAPI DrawInsert(HWND,HWND,int);
|
||||||
void WINAPI DrawStatusTextA(HDC,LPRECT,LPCSTR,UINT);
|
void WINAPI DrawStatusTextA(HDC,LPRECT,LPCSTR,UINT);
|
||||||
void WINAPI DrawStatusTextW(HDC,LPRECT,LPCWSTR,UINT);
|
void WINAPI DrawStatusTextW(HDC,LPRECT,LPCWSTR,UINT);
|
||||||
void WINAPI GetEffectiveClientRect(HWND,LPRECT,LPINT);
|
void WINAPI GetEffectiveClientRect(HWND,LPRECT,LPINT);
|
||||||
|
#if (_WIN32_IE >= 0x0500)
|
||||||
|
LANGID WINAPI GetMUILanguage(VOID);
|
||||||
|
#endif
|
||||||
#define Header_GetItemCount(w) (int)SNDMSG((w),HDM_GETITEMCOUNT,0,0)
|
#define Header_GetItemCount(w) (int)SNDMSG((w),HDM_GETITEMCOUNT,0,0)
|
||||||
#define Header_InsertItem(w,i,phdi) (int)SNDMSG((w),HDM_INSERTITEM,(WPARAM)(int)(i),(LPARAM)(const HD_ITEM*)(phdi))
|
#define Header_InsertItem(w,i,phdi) (int)SNDMSG((w),HDM_INSERTITEM,(WPARAM)(int)(i),(LPARAM)(const HD_ITEM*)(phdi))
|
||||||
#define Header_DeleteItem(w,i) (BOOL)SNDMSG((w),HDM_DELETEITEM,(WPARAM)(int)(i),0)
|
#define Header_DeleteItem(w,i) (BOOL)SNDMSG((w),HDM_DELETEITEM,(WPARAM)(int)(i),0)
|
||||||
|
@ -3091,6 +3094,9 @@ void WINAPI InitCommonControls(void);
|
||||||
#if (_WIN32_IE >= 0x0300)
|
#if (_WIN32_IE >= 0x0300)
|
||||||
BOOL WINAPI InitCommonControlsEx(LPINITCOMMONCONTROLSEX);
|
BOOL WINAPI InitCommonControlsEx(LPINITCOMMONCONTROLSEX);
|
||||||
#endif
|
#endif
|
||||||
|
#if (_WIN32_IE >= 0x0500)
|
||||||
|
VOID WINAPI InitMUILanguage(LANGID);
|
||||||
|
#endif
|
||||||
int WINAPI LBItemFromPt(HWND,POINT,BOOL);
|
int WINAPI LBItemFromPt(HWND,POINT,BOOL);
|
||||||
#define ListView_GetBkColor(w) (COLORREF)SNDMSG((w),LVM_GETBKCOLOR,0,0)
|
#define ListView_GetBkColor(w) (COLORREF)SNDMSG((w),LVM_GETBKCOLOR,0,0)
|
||||||
#define ListView_GetImageList(w,i) (HIMAGELIST)SNDMSG((w),LVM_GETIMAGELIST,(i),0)
|
#define ListView_GetImageList(w,i) (HIMAGELIST)SNDMSG((w),LVM_GETIMAGELIST,(i),0)
|
||||||
|
|
|
@ -55,6 +55,7 @@ FindMRUStringW@12
|
||||||
Free@4
|
Free@4
|
||||||
FreeMRUList@4
|
FreeMRUList@4
|
||||||
GetEffectiveClientRect@12
|
GetEffectiveClientRect@12
|
||||||
|
GetMUILanguage@0
|
||||||
GetSize@4
|
GetSize@4
|
||||||
GetWindowSubclass@16
|
GetWindowSubclass@16
|
||||||
ImageList_Add@12
|
ImageList_Add@12
|
||||||
|
@ -96,6 +97,7 @@ ImageList_SetOverlayImage@12
|
||||||
ImageList_Write@8
|
ImageList_Write@8
|
||||||
InitCommonControls@0
|
InitCommonControls@0
|
||||||
InitCommonControlsEx@4
|
InitCommonControlsEx@4
|
||||||
|
InitMUILanguage@4
|
||||||
LBItemFromPt@16
|
LBItemFromPt@16
|
||||||
MakeDragList@4
|
MakeDragList@4
|
||||||
MenuHelp@28
|
MenuHelp@28
|
||||||
|
|
Loading…
Reference in New Issue