Compiler warnings fix.
[wine] / dlls / commdlg / cdlg.h
1 /*
2  *  Common Dialog Boxes interface (32 bit)
3  *
4  * Copyright 1998 Bertho A. Stultiens
5  */
6
7 #ifndef _WINE_DLL_CDLG_H
8 #define _WINE_DLL_CDLG_H
9
10 /*---------------- 16-bit ----------------*/
11 extern HINSTANCE16      COMMDLG_hInstance;
12 extern HINSTANCE        COMMDLG_hInstance32;
13
14 /*---------------- 32-bit ----------------*/
15
16 /* Common dialogs implementation globals */
17 #define COMDLG32_Atom   ((ATOM)0xa000)  /* MS uses this one to identify props */
18
19 extern HINSTANCE        COMDLG32_hInstance;
20
21 void    COMDLG32_SetCommDlgExtendedError(DWORD err);
22 LPVOID  COMDLG32_AllocMem(int size);
23
24
25
26 /* Find/Replace local definitions */
27
28 #define FR_WINE_UNICODE         0x80000000
29 #define FR_WINE_REPLACE         0x40000000
30
31 typedef struct {
32         FINDREPLACEA    fr;     /* Internally used structure */
33         union {
34                 FINDREPLACEA    *fra;   /* Reference to the user supplied structure */
35                 FINDREPLACEW    *frw;
36         } user_fr;
37 } COMDLG32_FR_Data;
38
39 #endif
40