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

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

* empty log message *

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