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

Last change on this file since 1036 was 496, checked in by cbratschi, 26 years ago

wine-990731 update

File size: 2.0 KB
Line 
1/* $Id: comctl32.h,v 1.7 1999-08-14 16:13:10 cbratschi 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
26extern "C" {
27#endif
28
29/* registers window classes inside this DLL */
30void CDECL RegisterCOMCTL32WindowClasses(unsigned long hinstDLL);
31void CDECL UnregisterCOMCTL32WindowClasses(void);
32#ifdef __cplusplus
33}
34#endif
35
36
37/**************************************************************************
38 * UNDOCUMENTED functions
39 */
40
41/* private heap memory functions */
42
43LPVOID WINAPI COMCTL32_Alloc (DWORD);
44LPVOID WINAPI COMCTL32_ReAlloc (LPVOID, DWORD);
45BOOL WINAPI COMCTL32_Free (LPVOID);
46DWORD WINAPI COMCTL32_GetSize (LPVOID);
47
48
49extern 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/* Toolbar imagelist bitmaps */
70#define IDB_STD_SMALL 120
71#define IDB_STD_LARGE 121
72#define IDB_VIEW_SMALL 124
73#define IDB_VIEW_LARGE 125
74#define IDB_HIST_SMALL 130
75#define IDB_HIST_LARGE 131
76
77
78/* Month calendar month menu popup */
79#define IDD_MCMONTHMENU 300
80
81#define IDM_JAN 301
82#define IDM_FEB 302
83#define IDM_MAR 303
84#define IDM_APR 304
85#define IDM_MAY 305
86#define IDM_JUN 306
87#define IDM_JUL 307
88#define IDM_AUG 308
89#define IDM_SEP 309
90#define IDM_OCT 310
91#define IDM_NOV 311
92#define IDM_DEC 312
93
94#endif /* _H_COMCTL32 */
Note: See TracBrowser for help on using the repository browser.