OpenSWMM Engine  6.0.0-alpha.1
Data-oriented, plugin-extensible SWMM Engine (6.0.0-alpha.1)
Loading...
Searching...
No Matches
mempool.h
Go to the documentation of this file.
1//-----------------------------------------------------------------------------
2// mempool.h
3//
4// Header for mempool.c
5//
6// The type alloc_handle_t provides an opaque reference to the
7// alloc pool - only the alloc routines know its structure.
8//-----------------------------------------------------------------------------
9
10#ifndef MEMPOOL_H
11#define MEMPOOL_H
12
13
14typedef struct
15{
16 long dummy;
18
20char *Alloc(long);
22void AllocReset(void);
23void AllocFreePool(void);
24
25
26#endif //MEMPOOL_H
void AllocReset(void)
Definition mempool.c:176
char * Alloc(long)
Definition mempool.c:111
alloc_handle_t * AllocInit(void)
Definition mempool.c:91
void AllocFreePool(void)
Definition mempool.c:190
alloc_handle_t * AllocSetPool(alloc_handle_t *)
Definition mempool.c:161
Definition mempool.h:15
long dummy
Definition mempool.h:16