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