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

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

source code cleanup, remove warnings

File size: 2.3 KB
Line 
1/* $Id: comctl32.h,v 1.9 1999-11-05 13:01:32 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/* Status: WINE 990923 */
15
16#ifndef _H_COMCTL32
17#define _H_COMCTL32
18
19#include "winbase.h"
20#include "wingdi.h"
21#include "winuser.h"
22#include <win/commctrl.h>
23#include "unicode.h"
24#include "wineuni.h"
25
26#define TRACE(x)
27#define FIXME(x)
28#define WARN(x)
29
30#define _OS2WIN_H
31#define NO_ULONG
32#include <misc.h>
33
34#ifdef __cplusplus
35extern "C" {
36#endif
37
38/* registers window classes inside this DLL */
39void CDECL RegisterCOMCTL32WindowClasses(unsigned long hinstDLL);
40void CDECL UnregisterCOMCTL32WindowClasses(void);
41#ifdef __cplusplus
42}
43#endif
44
45
46/**************************************************************************
47 * UNDOCUMENTED functions
48 */
49
50/* private heap memory functions */
51
52LPVOID WINAPI COMCTL32_Alloc (DWORD);
53LPVOID WINAPI COMCTL32_ReAlloc (LPVOID, DWORD);
54BOOL WINAPI COMCTL32_Free (LPVOID);
55DWORD WINAPI COMCTL32_GetSize (LPVOID);
56
57
58extern HMODULE COMCTL32_hModule;
59
60/* Property sheet / Wizard */
61#define IDD_PROPSHEET 1006
62#define IDD_WIZARD 1020
63
64#define IDC_TABCONTROL 12320
65#define IDC_APPLY_BUTTON 12321
66#define IDC_BACK_BUTTON 12323
67#define IDC_NEXT_BUTTON 12324
68#define IDC_FINISH_BUTTON 12325
69#define IDC_SUNKEN_LINE 12326
70
71/* Toolbar customization dialog */
72#define IDD_TBCUSTOMIZE 200
73
74#define IDC_AVAILBTN_LBOX 201
75#define IDC_RESET_BTN 202
76#define IDC_TOOLBARBTN_LBOX 203
77#define IDC_REMOVE_BTN 204
78#define IDC_HELP_BTN 205
79#define IDC_MOVEUP_BTN 206
80#define IDC_MOVEDN_BTN 207
81
82/* Toolbar imagelist bitmaps */
83#define IDB_STD_SMALL 120
84#define IDB_STD_LARGE 121
85#define IDB_VIEW_SMALL 124
86#define IDB_VIEW_LARGE 125
87#define IDB_HIST_SMALL 130
88#define IDB_HIST_LARGE 131
89
90
91/* Month calendar month menu popup */
92#define IDD_MCMONTHMENU 300
93
94#define IDM_JAN 301
95#define IDM_FEB 302
96#define IDM_MAR 303
97#define IDM_APR 304
98#define IDM_MAY 305
99#define IDM_JUN 306
100#define IDM_JUL 307
101#define IDM_AUG 308
102#define IDM_SEP 309
103#define IDM_OCT 310
104#define IDM_NOV 311
105#define IDM_DEC 312
106
107#endif /* _H_COMCTL32 */
Note: See TracBrowser for help on using the repository browser.