source:
trunk/include/heapcode.h@
10010
Last change on this file since 10010 was 5077, checked in by , 25 years ago | |
---|---|
File size: 374 bytes |
Line | |
---|---|
1 | /* $Id: heapcode.h,v 1.2 2001-02-09 18:32:06 sandervl Exp $ */ |
2 | /* |
3 | * Code heap functions for OS/2 |
4 | * |
5 | * Copyright 1999 Sander van Leeuwen (sandervl@xs4all.nl) |
6 | * |
7 | */ |
8 | #ifndef __HEAPCODE_H__ |
9 | #define __HEAPCODE_H__ |
10 | |
11 | #include <heapshared.h> |
12 | |
13 | extern Heap_t codeHeap; |
14 | |
15 | BOOL InitializeCodeHeap(); |
16 | void DestroyCodeHeap(); |
17 | |
18 | #define _cmalloc(size) _umalloc(codeHeap, size) |
19 | |
20 | #endif |
Note:
See TracBrowser
for help on using the repository browser.