source: trunk/src/kernel32/heap.h@ 91

Last change on this file since 91 was 46, checked in by sandervl, 26 years ago

* empty log message *

File size: 627 bytes
Line 
1/*
2 *
3 * Project Odin Software License can be found in LICENSE.TXT
4 *
5 */
6/*
7 * Win32 heap API functions for OS/2
8 *
9 * Copyright 1998 Sander van Leeuwen
10 *
11 */
12#ifndef __HEAP_H__
13#define __HEAP_H__
14
15HANDLE WIN32API OS2HeapCreate(DWORD flOptions,
16 DWORD dwInitialSize,
17 DWORD dwMaximumSize);
18
19LPVOID WIN32API OS2HeapAlloc (HANDLE hHeap,
20 DWORD dwFlags,
21 DWORD dwBytes);
22
23#ifndef HEAP_NO_SERIALIZE
24 #define HEAP_NO_SERIALIZE 1
25#endif
26
27#ifndef HEAP_ZERO_MEMORY
28 #define HEAP_ZERO_MEMORY 8
29#endif
30
31
32#endif
Note: See TracBrowser for help on using the repository browser.