| 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 |
|
|---|
| 22 |
|
|---|
| 23 | #ifdef __cplusplus
|
|---|
| 24 | extern "C" {
|
|---|
| 25 | #endif
|
|---|
| 26 |
|
|---|
| 27 | /* registers window classes inside this DLL */
|
|---|
| 28 | void CDECL RegisterCOMCTL32WindowClasses(unsigned long hinstDLL);
|
|---|
| 29 | void CDECL UnregisterCOMCTL32WindowClasses(void);
|
|---|
| 30 | #ifdef __cplusplus
|
|---|
| 31 | }
|
|---|
| 32 | #endif
|
|---|
| 33 |
|
|---|
| 34 |
|
|---|
| 35 | /**************************************************************************
|
|---|
| 36 | * UNDOCUMENTED functions
|
|---|
| 37 | */
|
|---|
| 38 |
|
|---|
| 39 | /* private heap memory functions */
|
|---|
| 40 |
|
|---|
| 41 | LPVOID WINAPI COMCTL32_Alloc (DWORD);
|
|---|
| 42 | LPVOID WINAPI COMCTL32_ReAlloc (LPVOID, DWORD);
|
|---|
| 43 | BOOL WINAPI COMCTL32_Free (LPVOID);
|
|---|
| 44 | DWORD WINAPI COMCTL32_GetSize (LPVOID);
|
|---|
| 45 |
|
|---|
| 46 |
|
|---|
| 47 | extern HMODULE COMCTL32_hModule;
|
|---|
| 48 |
|
|---|
| 49 | /* Property sheet / Wizard */
|
|---|
| 50 | #define IDD_PROPSHEET 1006
|
|---|
| 51 | #define IDD_WIZARD 1020
|
|---|
| 52 |
|
|---|
| 53 | #define IDC_TABCONTROL 12320
|
|---|
| 54 | #define IDC_APPLY_BUTTON 12321
|
|---|
| 55 |
|
|---|
| 56 | /* Toolbar customization dialog */
|
|---|
| 57 | #define IDD_TBCUSTOMIZE 200
|
|---|
| 58 |
|
|---|
| 59 | #define IDC_AVAILBTN_LBOX 201
|
|---|
| 60 | #define IDC_RESET_BTN 202
|
|---|
| 61 | #define IDC_TOOLBARBTN_LBOX 203
|
|---|
| 62 | #define IDC_REMOVE_BTN 204
|
|---|
| 63 | #define IDC_HELP_BTN 205
|
|---|
| 64 | #define IDC_MOVEUP_BTN 206
|
|---|
| 65 | #define IDC_MOVEDN_BTN 207
|
|---|
| 66 |
|
|---|
| 67 |
|
|---|
| 68 | #endif /* _H_COMCTL32 */
|
|---|