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 |
|
---|
21 |
|
---|
22 | /* registers window classes inside this DLL */
|
---|
23 | void RegisterCOMCTL32WindowClasses(unsigned long hinstDLL);
|
---|
24 |
|
---|
25 |
|
---|
26 |
|
---|
27 | /**************************************************************************
|
---|
28 | * UNDOCUMENTED functions
|
---|
29 | */
|
---|
30 |
|
---|
31 | /* private heap memory functions */
|
---|
32 |
|
---|
33 | LPVOID WINAPI COMCTL32_Alloc (DWORD);
|
---|
34 | LPVOID WINAPI COMCTL32_ReAlloc (LPVOID, DWORD);
|
---|
35 | BOOL WINAPI COMCTL32_Free (LPVOID);
|
---|
36 | DWORD WINAPI COMCTL32_GetSize (LPVOID);
|
---|
37 |
|
---|
38 |
|
---|
39 | extern HMODULE COMCTL32_hModule;
|
---|
40 |
|
---|
41 | /* Property sheet / Wizard */
|
---|
42 | #define IDD_PROPSHEET 1006
|
---|
43 | #define IDD_WIZARD 1020
|
---|
44 |
|
---|
45 | #define IDC_TABCONTROL 12320
|
---|
46 | #define IDC_APPLY_BUTTON 12321
|
---|
47 |
|
---|
48 | /* Toolbar customization dialog */
|
---|
49 | #define IDD_TBCUSTOMIZE 200
|
---|
50 |
|
---|
51 | #define IDC_AVAILBTN_LBOX 201
|
---|
52 | #define IDC_RESET_BTN 202
|
---|
53 | #define IDC_TOOLBARBTN_LBOX 203
|
---|
54 | #define IDC_REMOVE_BTN 204
|
---|
55 | #define IDC_HELP_BTN 205
|
---|
56 | #define IDC_MOVEUP_BTN 206
|
---|
57 | #define IDC_MOVEDN_BTN 207
|
---|
58 |
|
---|
59 |
|
---|
60 | #endif /* _H_COMCTL32 */
|
---|