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 |
|
---|
21 |
|
---|
22 | /* registers window classes inside this DLL */
|
---|
23 | void RegisterCOMCTL32WindowClasses(void);
|
---|
24 |
|
---|
25 |
|
---|
26 |
|
---|
27 | /**************************************************************************
|
---|
28 | * UNDOCUMENTED functions
|
---|
29 | */
|
---|
30 |
|
---|
31 | /* private heap memory functions */
|
---|
32 |
|
---|
33 | LPVOID WINAPI COMCTL32_Alloc (DWORD);
|
---|
34 | LPVOID WINAPI COMCTL32_ReAlloc (LPVOID, DWORD);
|
---|
35 | BOOL WINAPI COMCTL32_Free (LPVOID);
|
---|
36 | DWORD WINAPI COMCTL32_GetSize (LPVOID);
|
---|
37 |
|
---|
38 |
|
---|
39 | #endif /* _H_COMCTL32 */
|
---|
Note:
See
TracBrowser
for help on using the repository browser.