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

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

merged latest WINE 990923 changes

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