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

Last change on this file since 8 was 4, checked in by ktk, 26 years ago

Import

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