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

Last change on this file since 201 was 99, checked in by phaller, 26 years ago

Add: added cvs variable $Id$ to source files.

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