Move __stdcall/__cdecl to the right place.
[wine/multimedia.git] / include / prsht.h
blob205384235c94b1fa7ff8427301a8cc4ff6325aec
1 #ifndef __WINE_PRSHT_H
2 #define __WINE_PRSHT_H
4 #include "windef.h"
5 #include "wingdi.h"
6 #include "winuser.h"
8 #ifdef __cplusplus
9 extern "C" {
10 #endif
14 * Property sheet support (callback procs)
18 #define WC_PROPSHEETA "SysPropertySheet"
19 static const WCHAR WC_PROPSHEETW[] = { 'S','y','s',
20 'P','r','o','p','e','r','t','y','S','h','e','e','t',0 };
21 #define WC_PROPSHEET WINELIB_NAME_AW(WC_PROPSHEET)
23 struct _PROPSHEETPAGEA; /** need to forward declare those structs **/
24 struct _PROPSHEETPAGEW;
25 struct _PSP;
26 typedef struct _PSP *HPROPSHEETPAGE;
29 typedef UINT (CALLBACK *LPFNPSPCALLBACKA)(HWND, UINT, struct _PROPSHEETPAGEA*);
30 typedef UINT (CALLBACK *LPFNPSPCALLBACKW)(HWND, UINT, struct _PROPSHEETPAGEW*);
31 typedef INT (CALLBACK *PFNPROPSHEETCALLBACK)(HWND, UINT, LPARAM);
32 typedef BOOL (CALLBACK *LPFNADDPROPSHEETPAGE)(HPROPSHEETPAGE, LPARAM);
33 typedef BOOL (CALLBACK *LPFNADDPROPSHEETPAGES)(LPVOID, LPFNADDPROPSHEETPAGE, LPARAM);
36 * Property sheet support (structures)
38 typedef struct _PROPSHEETPAGEA
40 DWORD dwSize;
41 DWORD dwFlags;
42 HINSTANCE hInstance;
43 union
45 LPCSTR pszTemplate;
46 LPCDLGTEMPLATEA pResource;
47 }DUMMYUNIONNAME;
48 union
50 HICON hIcon;
51 LPCSTR pszIcon;
52 }DUMMYUNIONNAME2;
53 LPCSTR pszTitle;
54 DLGPROC pfnDlgProc;
55 LPARAM lParam;
56 LPFNPSPCALLBACKA pfnCallback;
57 UINT* pcRefParent;
58 LPCSTR pszHeaderTitle;
59 LPCSTR pszHeaderSubTitle;
60 } PROPSHEETPAGEA, *LPPROPSHEETPAGEA;
62 typedef const PROPSHEETPAGEA *LPCPROPSHEETPAGEA;
64 typedef struct _PROPSHEETPAGEW
66 DWORD dwSize;
67 DWORD dwFlags;
68 HINSTANCE hInstance;
69 union
71 LPCWSTR pszTemplate;
72 LPCDLGTEMPLATEW pResource;
73 }DUMMYUNIONNAME;
74 union
76 HICON hIcon;
77 LPCWSTR pszIcon;
78 }DUMMYUNIONNAME2;
79 LPCWSTR pszTitle;
80 DLGPROC pfnDlgProc;
81 LPARAM lParam;
82 LPFNPSPCALLBACKW pfnCallback;
83 UINT* pcRefParent;
84 LPCWSTR pszHeaderTitle;
85 LPCWSTR pszHeaderSubTitle;
86 } PROPSHEETPAGEW, *LPPROPSHEETPAGEW;
88 typedef const PROPSHEETPAGEW *LPCPROPSHEETPAGEW;
91 typedef struct _PROPSHEETHEADERA
93 DWORD dwSize;
94 DWORD dwFlags;
95 HWND hwndParent;
96 HINSTANCE hInstance;
97 union
99 HICON hIcon;
100 LPCSTR pszIcon;
101 }DUMMYUNIONNAME;
102 LPCSTR pszCaption;
103 UINT nPages;
104 union
106 UINT nStartPage;
107 LPCSTR pStartPage;
108 }DUMMYUNIONNAME2;
109 union
111 LPCPROPSHEETPAGEA ppsp;
112 HPROPSHEETPAGE* phpage;
113 }DUMMYUNIONNAME3;
114 PFNPROPSHEETCALLBACK pfnCallback;
115 union
117 HBITMAP hbmWatermark;
118 LPCSTR pszbmWatermark;
119 }DUMMYUNIONNAME4;
120 HPALETTE hplWatermark;
121 union
123 HBITMAP hbmHeader;
124 LPCSTR pszbmHeader;
125 }DUMMYUNIONNAME5;
126 } PROPSHEETHEADERA, *LPPROPSHEETHEADERA;
128 typedef const PROPSHEETHEADERA *LPCPROPSHEETHEADERA;
130 typedef struct _PROPSHEETHEADERW
132 DWORD dwSize;
133 DWORD dwFlags;
134 HWND hwndParent;
135 HINSTANCE hInstance;
136 union
138 HICON hIcon;
139 LPCWSTR pszIcon;
140 }DUMMYUNIONNAME;
141 LPCWSTR pszCaption;
142 UINT nPages;
143 union
145 UINT nStartPage;
146 LPCWSTR pStartPage;
147 }DUMMYUNIONNAME2;
148 union
150 LPCPROPSHEETPAGEW ppsp;
151 HPROPSHEETPAGE* phpage;
152 }DUMMYUNIONNAME3;
153 PFNPROPSHEETCALLBACK pfnCallback;
154 union
156 HBITMAP hbmWatermark;
157 LPCWSTR pszbmWatermark;
158 }DUMMYUNIONNAME4;
159 HPALETTE hplWatermark;
160 union
162 HBITMAP hbmHeader;
163 LPCWSTR pszbmHeader;
164 }DUMMYUNIONNAME5;
165 } PROPSHEETHEADERW, *LPPROPSHEETHEADERW;
167 typedef const PROPSHEETHEADERW *LPCPROPSHEETHEADERW;
171 * Property sheet support (methods)
173 INT WINAPI PropertySheetA(LPCPROPSHEETHEADERA);
174 INT WINAPI PropertySheetW(LPCPROPSHEETHEADERW);
175 #define PropertySheet WINELIB_NAME_AW(PropertySheet)
176 HPROPSHEETPAGE WINAPI CreatePropertySheetPageA(LPCPROPSHEETPAGEA);
177 HPROPSHEETPAGE WINAPI CreatePropertySheetPageW(LPCPROPSHEETPAGEW);
178 #define CreatePropertySheetPage WINELIB_NAME_AW(CreatePropertySheetPage)
179 BOOL WINAPI DestroyPropertySheetPage(HPROPSHEETPAGE hPropPage);
182 * Property sheet support (UNICODE-Winelib)
185 DECL_WINELIB_TYPE_AW(PROPSHEETPAGE)
186 DECL_WINELIB_TYPE_AW(LPPROPSHEETPAGE)
187 DECL_WINELIB_TYPE_AW(LPCPROPSHEETPAGE)
188 DECL_WINELIB_TYPE_AW(PROPSHEETHEADER)
189 DECL_WINELIB_TYPE_AW(LPPROPSHEETHEADER)
190 DECL_WINELIB_TYPE_AW(LPCPROPSHEETHEADER)
191 DECL_WINELIB_TYPE_AW(LPFNPSPCALLBACK)
195 * Property sheet support (defines)
197 #define PSP_DEFAULT 0x0000
198 #define PSP_DLGINDIRECT 0x0001
199 #define PSP_USEHICON 0x0002
200 #define PSP_USEICONID 0x0004
201 #define PSP_USETITLE 0x0008
202 #define PSP_RTLREADING 0x0010
204 #define PSP_HASHELP 0x0020
205 #define PSP_USEREFPARENT 0x0040
206 #define PSP_USECALLBACK 0x0080
207 #define PSP_PREMATURE 0x0400
209 #define PSP_HIDEHEADER 0x00000800
210 #define PSP_USEHEADERTITLE 0x00001000
211 #define PSP_USEHEADERSUBTITLE 0x00002000
213 #define PSPCB_RELEASE 1
214 #define PSPCB_CREATE 2
216 #define PSH_DEFAULT 0x0000
217 #define PSH_PROPTITLE 0x0001
218 #define PSH_USEHICON 0x0002
219 #define PSH_USEICONID 0x0004
220 #define PSH_PROPSHEETPAGE 0x0008
221 #define PSH_WIZARDHASFINISH 0x0010
222 #define PSH_WIZARD 0x0020
223 #define PSH_USEPSTARTPAGE 0x0040
224 #define PSH_NOAPPLYNOW 0x0080
225 #define PSH_USECALLBACK 0x0100
226 #define PSH_HASHELP 0x0200
227 #define PSH_MODELESS 0x0400
228 #define PSH_RTLREADING 0x0800
229 #define PSH_WIZARDCONTEXTHELP 0x00001000
232 * for below IE 5
233 * PSH_WIZARD97 0x00002000
235 #define PSH_WATERMARK 0x00008000
236 #define PSH_USEHBMWATERMARK 0x00010000
237 #define PSH_USEHPLWATERMARK 0x00020000
238 #define PSH_STRETCHWATERMARK 0x00040000
239 #define PSH_HEADER 0x00080000
240 #define PSH_USEHBMHEADER 0x00100000
241 #define PSH_USEPAGELANG 0x00200000
242 #define PSH_WIZARD_LITE 0x00400000
244 * for IE 5 and above
245 * PSH_WIZARD97 0x01000000
247 #define PSH_NOCONTEXTHELP 0x02000000
249 #define PSCB_INITIALIZED 1
250 #define PSCB_PRECREATE 2
252 typedef struct _PSHNOTIFY
254 NMHDR hdr;
255 LPARAM lParam;
256 } PSHNOTIFY, *LPPSHNOTIFY;
258 #define PSN_FIRST (0U-200U)
259 #define PSN_LAST (0U-299U)
262 #define PSN_SETACTIVE (PSN_FIRST-0)
263 #define PSN_KILLACTIVE (PSN_FIRST-1)
264 /* #define PSN_VALIDATE (PSN_FIRST-1) */
265 #define PSN_APPLY (PSN_FIRST-2)
266 #define PSN_RESET (PSN_FIRST-3)
267 /* #define PSN_CANCEL (PSN_FIRST-3) */
268 #define PSN_HELP (PSN_FIRST-5)
269 #define PSN_WIZBACK (PSN_FIRST-6)
270 #define PSN_WIZNEXT (PSN_FIRST-7)
271 #define PSN_WIZFINISH (PSN_FIRST-8)
272 #define PSN_QUERYCANCEL (PSN_FIRST-9)
273 #define PSN_GETOBJECT (PSN_FIRST-10)
275 #define PSNRET_NOERROR 0
276 #define PSNRET_INVALID 1
277 #define PSNRET_INVALID_NOCHANGEPAGE 2
280 #define PSM_SETCURSEL (WM_USER + 101)
281 #define PSM_REMOVEPAGE (WM_USER + 102)
282 #define PSM_ADDPAGE (WM_USER + 103)
283 #define PSM_CHANGED (WM_USER + 104)
284 #define PSM_RESTARTWINDOWS (WM_USER + 105)
285 #define PSM_REBOOTSYSTEM (WM_USER + 106)
286 #define PSM_CANCELTOCLOSE (WM_USER + 107)
287 #define PSM_QUERYSIBLINGS (WM_USER + 108)
288 #define PSM_UNCHANGED (WM_USER + 109)
289 #define PSM_APPLY (WM_USER + 110)
290 #define PSM_SETTITLEA (WM_USER + 111)
291 #define PSM_SETTITLEW (WM_USER + 120)
292 #define PSM_SETTITLE WINELIB_NAME_AW(PSM_SETTITLE)
293 #define PSM_SETWIZBUTTONS (WM_USER + 112)
294 #define PSM_PRESSBUTTON (WM_USER + 113)
295 #define PSM_SETCURSELID (WM_USER + 114)
296 #define PSM_SETFINISHTEXTA (WM_USER + 115)
297 #define PSM_SETFINISHTEXTW (WM_USER + 121)
298 #define PSM_SETFINISHTEXT WINELIB_NAME_AW(PSM_SETFINISHTEXT)
299 #define PSM_GETTABCONTROL (WM_USER + 116)
300 #define PSM_ISDIALOGMESSAGE (WM_USER + 117)
301 #define PSM_GETCURRENTPAGEHWND (WM_USER + 118)
303 #define PSWIZB_BACK 0x00000001
304 #define PSWIZB_NEXT 0x00000002
305 #define PSWIZB_FINISH 0x00000004
306 #define PSWIZB_DISABLEDFINISH 0x00000008
308 #define PSBTN_BACK 0
309 #define PSBTN_NEXT 1
310 #define PSBTN_FINISH 2
311 #define PSBTN_OK 3
312 #define PSBTN_APPLYNOW 4
313 #define PSBTN_CANCEL 5
314 #define PSBTN_HELP 6
315 #define PSBTN_MAX 6
317 #define ID_PSRESTARTWINDOWS 0x2
318 #define ID_PSREBOOTSYSTEM (ID_PSRESTARTWINDOWS | 0x1)
321 #define WIZ_CXDLG 276
322 #define WIZ_CYDLG 140
324 #define WIZ_CXBMP 80
326 #define WIZ_BODYX 92
327 #define WIZ_BODYCX 184
329 #define PROP_SM_CXDLG 212
330 #define PROP_SM_CYDLG 188
332 #define PROP_MED_CXDLG 227
333 #define PROP_MED_CYDLG 215
335 #define PROP_LG_CXDLG 252
336 #define PROP_LG_CYDLG 218
339 * Property sheet support (macros)
342 #define PropSheet_SetCurSel(hDlg, hpage, index) \
343 SendMessageA(hDlg, PSM_SETCURSEL, (WPARAM)index, (LPARAM)hpage)
345 #define PropSheet_RemovePage(hDlg, index, hpage) \
346 SNDMSG(hDlg, PSM_REMOVEPAGE, index, (LPARAM)hpage)
348 #define PropSheet_AddPage(hDlg, hpage) \
349 SNDMSG(hDlg, PSM_ADDPAGE, 0, (LPARAM)hpage)
351 #define PropSheet_Changed(hDlg, hwnd) \
352 SNDMSG(hDlg, PSM_CHANGED, (WPARAM)hwnd, 0L)
354 #define PropSheet_RestartWindows(hDlg) \
355 SNDMSG(hDlg, PSM_RESTARTWINDOWS, 0, 0L)
357 #define PropSheet_RebootSystem(hDlg) \
358 SNDMSG(hDlg, PSM_REBOOTSYSTEM, 0, 0L)
360 #define PropSheet_CancelToClose(hDlg) \
361 PostMessage(hDlg, PSM_CANCELTOCLOSE, 0, 0L)
363 #define PropSheet_QuerySiblings(hDlg, wParam, lParam) \
364 SNDMSG(hDlg, PSM_QUERYSIBLINGS, wParam, lParam)
366 #define PropSheet_UnChanged(hDlg, hwnd) \
367 SNDMSG(hDlg, PSM_UNCHANGED, (WPARAM)hwnd, 0L)
369 #define PropSheet_Apply(hDlg) \
370 SNDMSG(hDlg, PSM_APPLY, 0, 0L)
372 #define PropSheet_SetTitle(hDlg, wStyle, lpszText)\
373 SNDMSG(hDlg, PSM_SETTITLE, wStyle, (LPARAM)(LPCTSTR)lpszText)
375 #define PropSheet_SetWizButtons(hDlg, dwFlags) \
376 PostMessage(hDlg, PSM_SETWIZBUTTONS, 0, (LPARAM)dwFlags)
378 #define PropSheet_PressButton(hDlg, iButton) \
379 PostMessage(hDlg, PSM_PRESSBUTTON, (WPARAM)iButton, 0)
381 #define PropSheet_SetCurSelByID(hDlg, id) \
382 SNDMSG(hDlg, PSM_SETCURSELID, 0, (LPARAM)id)
384 #define PropSheet_SetFinishText(hDlg, lpszText) \
385 SNDMSG(hDlg, PSM_SETFINISHTEXT, 0, (LPARAM)lpszText)
387 #define PropSheet_GetTabControl(hDlg) \
388 (HWND)SNDMSG(hDlg, PSM_GETTABCONTROL, 0, 0)
390 #define PropSheet_IsDialogMessage(hDlg, pMsg) \
391 (BOOL)SNDMSG(hDlg, PSM_ISDIALOGMESSAGE, 0, (LPARAM)pMsg)
393 #define PropSheet_GetCurrentPageHwnd(hDlg) \
394 (HWND)SNDMSG(hDlg, PSM_GETCURRENTPAGEHWND, 0, 0L)
397 #ifdef __cplusplus
399 #endif
401 #endif /* __WINE_PRSHT_H */