mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
698 B
36 lines
698 B
__foldwin32sstuff __foldwin32sstuff;
|
|
//foldstyleinitialization = true;
|
|
|
|
enablemapdirect3216 = true;
|
|
flatthunks = true;
|
|
|
|
#include "..\types.thk"
|
|
|
|
//
|
|
// thunks for COMCTL32.DLL (32) -> COMMCTRL.DLL (16)
|
|
//
|
|
// 1st function is the 16 bit name
|
|
// 2nd is the 32 bit name
|
|
//
|
|
|
|
typedef HANDLE32 HPROPSHEETPAGE16;
|
|
|
|
BOOL DestroyPropertySheetPage16(HPROPSHEETPAGE16 hpage)
|
|
{
|
|
target = DestroyPropertySheetPage;
|
|
}
|
|
|
|
HWND CreatePage16(HPROPSHEETPAGE16 hpage, HWND hwndParent)
|
|
{
|
|
target = CreatePage;
|
|
}
|
|
|
|
typedef UINT *PHICON;
|
|
|
|
BOOL GetPageInfo16(HPROPSHEETPAGE16 hpage, LPSTR pszCaption, int cbCaption, LPPOINT ppt, PHICON phIcon)
|
|
{
|
|
target = GetPageInfo;
|
|
ppt = output;
|
|
phIcon = output;
|
|
pszCaption = output;
|
|
}
|