1 | /*
|
---|
2 | * Win32 common controls implementation
|
---|
3 | *
|
---|
4 | * Copyright (C) 1999 Achim Hasenmueller
|
---|
5 | *
|
---|
6 | * Based on the work of the WINE group (www.winehq.com)
|
---|
7 | *
|
---|
8 | *
|
---|
9 | * Project Odin Software License can be found in LICENSE.TXT
|
---|
10 | *
|
---|
11 | */
|
---|
12 |
|
---|
13 | #ifndef _H_COMCTL32
|
---|
14 | #define _H_COMCTL32
|
---|
15 |
|
---|
16 | #include "winbase.h"
|
---|
17 | #include "wingdi.h"
|
---|
18 | #include "winuser.h"
|
---|
19 | #include <win/commctrl.h>
|
---|
20 | #include "unicode.h"
|
---|
21 | #include "wineuni.h"
|
---|
22 |
|
---|
23 |
|
---|
24 | #ifdef __cplusplus
|
---|
25 | extern "C" {
|
---|
26 | #endif
|
---|
27 |
|
---|
28 | /* registers window classes inside this DLL */
|
---|
29 | void CDECL RegisterCOMCTL32WindowClasses(unsigned long hinstDLL);
|
---|
30 | void CDECL UnregisterCOMCTL32WindowClasses(void);
|
---|
31 | #ifdef __cplusplus
|
---|
32 | }
|
---|
33 | #endif
|
---|
34 |
|
---|
35 |
|
---|
36 | /**************************************************************************
|
---|
37 | * UNDOCUMENTED functions
|
---|
38 | */
|
---|
39 |
|
---|
40 | /* private heap memory functions */
|
---|
41 |
|
---|
42 | LPVOID WINAPI COMCTL32_Alloc (DWORD);
|
---|
43 | LPVOID WINAPI COMCTL32_ReAlloc (LPVOID, DWORD);
|
---|
44 | BOOL WINAPI COMCTL32_Free (LPVOID);
|
---|
45 | DWORD WINAPI COMCTL32_GetSize (LPVOID);
|
---|
46 |
|
---|
47 |
|
---|
48 | extern HMODULE COMCTL32_hModule;
|
---|
49 |
|
---|
50 | /* Property sheet / Wizard */
|
---|
51 | #define IDD_PROPSHEET 1006
|
---|
52 | #define IDD_WIZARD 1020
|
---|
53 |
|
---|
54 | #define IDC_TABCONTROL 12320
|
---|
55 | #define IDC_APPLY_BUTTON 12321
|
---|
56 |
|
---|
57 | /* Toolbar customization dialog */
|
---|
58 | #define IDD_TBCUSTOMIZE 200
|
---|
59 |
|
---|
60 | #define IDC_AVAILBTN_LBOX 201
|
---|
61 | #define IDC_RESET_BTN 202
|
---|
62 | #define IDC_TOOLBARBTN_LBOX 203
|
---|
63 | #define IDC_REMOVE_BTN 204
|
---|
64 | #define IDC_HELP_BTN 205
|
---|
65 | #define IDC_MOVEUP_BTN 206
|
---|
66 | #define IDC_MOVEDN_BTN 207
|
---|
67 |
|
---|
68 |
|
---|
69 | #endif /* _H_COMCTL32 */
|
---|