Last change
on this file since 724 was 724, checked in by sandervl, 26 years ago |
Use shared memory for class & window objects
|
File size:
407 bytes
|
Line | |
---|
1 | /* $Id: heapshared.h,v 1.1 1999-08-28 14:09:58 sandervl Exp $ */
|
---|
2 | /*
|
---|
3 | * Shared heap functions for OS/2
|
---|
4 | *
|
---|
5 | * Copyright 1999 Sander van Leeuwen (sandervl@xs4all.nl)
|
---|
6 | *
|
---|
7 | */
|
---|
8 | #ifndef __HEAPSHARED_H__
|
---|
9 | #define __HEAPSHARED_H__
|
---|
10 |
|
---|
11 | #include <stddef.h>
|
---|
12 | #include <stdlib.h>
|
---|
13 | #include <umalloc.h>
|
---|
14 |
|
---|
15 | extern Heap_t sharedHeap;
|
---|
16 |
|
---|
17 | BOOL InitializeSharedHeap();
|
---|
18 | void DestroySharedHeap();
|
---|
19 |
|
---|
20 | void *_smalloc(size_t size);
|
---|
21 |
|
---|
22 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.