Changed CBGetDroppedControlRect to be compliant with Windows API.
[wine/testsucceed.git] / dlls / commdlg / cdlg.h
blob7dd58d971f7674837ba4fe911785730af5598643
1 /*
2 * Common Dialog Boxes interface (32 bit)
4 * Copyright 1998 Bertho A. Stultiens
5 */
7 #ifndef _WINE_DLL_CDLG_H
8 #define _WINE_DLL_CDLG_H
10 /*---------------- 16-bit ----------------*/
11 extern HINSTANCE16 COMMDLG_hInstance;
12 extern HINSTANCE COMMDLG_hInstance32;
14 /*---------------- 32-bit ----------------*/
16 /* Common dialogs implementation globals */
17 #define COMDLG32_Atom ((ATOM)0xa000) /* MS uses this one to identify props */
19 extern HINSTANCE COMDLG32_hInstance;
21 void COMDLG32_SetCommDlgExtendedError(DWORD err);
22 LPVOID COMDLG32_AllocMem(int size);
26 /* Find/Replace local definitions */
28 #define FR_WINE_UNICODE 0x80000000
29 #define FR_WINE_REPLACE 0x40000000
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;
39 #endif