My Project
Loading...
Searching...
No Matches
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
10struct omBin_s;
11typedef struct omBin_s omBin_t;
12typedef omBin_t* omBin;
13
14struct omBinPage_s;
15typedef struct omBinPage_s omBinPage_t;
16typedef omBinPage_t* omBinPage;
17
19typedef struct omBinPageRegion_s omBinPageRegion_t;
20typedef omBinPageRegion_t* omBinPageRegion;
21
22struct omOpts_s;
23typedef struct omOpts_s omOpts_t;
24
25struct omInfo_s;
26typedef struct omInfo_s omInfo_t;
27
28struct omSpecBin_s;
29typedef struct omSpecBin_s omSpecBin_t;
30typedef omSpecBin_t* omSpecBin;
31
32struct omRetInfo_s;
33typedef struct omRetInfo_s omRetInfo_t;
34typedef omRetInfo_t* omRetInfo;
35
36#endif /* OM_STRUCTS_H */
omBinPage_t * omBinPage
Definition: omStructs.h:16
omRetInfo_t * omRetInfo
Definition: omStructs.h:34
omBin_t * omBin
Definition: omStructs.h:12
omSpecBin_t * omSpecBin
Definition: omStructs.h:30
omBinPageRegion_t * omBinPageRegion
Definition: omStructs.h:20