My Project  UNKNOWN_GIT_VERSION
omStructs.h
Go to the documentation of this file.
1 /*******************************************************************
2  * File: omStructs.h
3  * Purpose: declaration of structs and typedefs of omalloc
4  * Author: obachman (Olaf Bachmann)
5  * Created: 11/99
6  *******************************************************************/
7 #ifndef OM_STRUCTS_H
8 #define OM_STRUCTS_H
9 
10 struct omBin_s;
11 typedef struct omBin_s omBin_t;
12 typedef omBin_t* omBin;
13 
14 struct omBinPage_s;
15 typedef struct omBinPage_s omBinPage_t;
16 typedef omBinPage_t* omBinPage;
17 
18 struct omBinPageRegion_s;
19 typedef struct omBinPageRegion_s omBinPageRegion_t;
20 typedef omBinPageRegion_t* omBinPageRegion;
21 
22 struct omOpts_s;
23 typedef struct omOpts_s omOpts_t;
24 
25 struct omInfo_s;
26 typedef struct omInfo_s omInfo_t;
27 
28 struct omSpecBin_s;
29 typedef struct omSpecBin_s omSpecBin_t;
30 typedef omSpecBin_t* omSpecBin;
31 
32 struct omRetInfo_s;
33 typedef struct omRetInfo_s omRetInfo_t;
34 typedef omRetInfo_t* omRetInfo;
35 
36 #endif /* OM_STRUCTS_H */
omRetInfo_t * omRetInfo
Definition: omStructs.h:34
omBin_t * omBin
Definition: omStructs.h:12
omSpecBin_t * omSpecBin
Definition: omStructs.h:30
omBinPage_t * omBinPage
Definition: omStructs.h:16
omBinPageRegion_t * omBinPageRegion
Definition: omStructs.h:20