source: trunk/src/comctl32/comctl32.h@ 73

Last change on this file since 73 was 73, checked in by achimha, 26 years ago

Fixed Unicode<->Ascii issues partially

File size: 1.4 KB
Line 
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
25extern "C" {
26#endif
27
28/* registers window classes inside this DLL */
29void CDECL RegisterCOMCTL32WindowClasses(unsigned long hinstDLL);
30void CDECL UnregisterCOMCTL32WindowClasses(void);
31#ifdef __cplusplus
32}
33#endif
34
35
36/**************************************************************************
37 * UNDOCUMENTED functions
38 */
39
40/* private heap memory functions */
41
42LPVOID WINAPI COMCTL32_Alloc (DWORD);
43LPVOID WINAPI COMCTL32_ReAlloc (LPVOID, DWORD);
44BOOL WINAPI COMCTL32_Free (LPVOID);
45DWORD WINAPI COMCTL32_GetSize (LPVOID);
46
47
48extern 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 */
Note: See TracBrowser for help on using the repository browser.