Module: wine Branch: refs/heads/master Commit: e8950b29ae90fc8e53fe79af5dcbb946289d6e0d URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=e8950b29ae90fc8e53fe79af...
Author: Detlef Riekenberg wine.dev@web.de Date: Mon Jun 19 01:13:54 2006 +0200
include: Declare remaining exported functions in compstui.h.
---
include/ddk/compstui.h | 9 ++++++--- 1 files changed, 6 insertions(+), 3 deletions(-)
diff --git a/include/ddk/compstui.h b/include/ddk/compstui.h index 3b06749..63612f4 100644 --- a/include/ddk/compstui.h +++ b/include/ddk/compstui.h @@ -54,13 +54,16 @@ typedef struct _PROPSHEETUI_INFO { DWORD Result; } PROPSHEETUI_INFO, *PPROPSHEETUI_INFO;
-typedef LONG (CALLBACK *PFNPROPSHEETUI)(PROPSHEETUI_INFO, LPARAM lParam); +typedef LONG (CALLBACK *PFNPROPSHEETUI)(PROPSHEETUI_INFO, LPARAM);
/* FUNCTIONS */ -LONG CommonPropertySheetUIA(HWND, PFNPROPSHEETUI, LPARAM, LPDWORD); -LONG CommonPropertySheetUIW(HWND, PFNPROPSHEETUI, LPARAM, LPDWORD); +LONG WINAPI CommonPropertySheetUIA(HWND, PFNPROPSHEETUI, LPARAM, LPDWORD); +LONG WINAPI CommonPropertySheetUIW(HWND, PFNPROPSHEETUI, LPARAM, LPDWORD); #define CommonPropertySheetUI WINELIB_NAME_AW(CommonPropertySheetUI)
+ULONG_PTR WINAPI GetPSTUIUserData(HWND); +BOOL WINAPI SetPSTUIUserData(HWND, ULONG_PTR); + #ifdef __cplusplus } /* extern "C" */ #endif