source: git/omalloc/omStructs.h @ 9cf75aa

spielwiese
Last change on this file since 9cf75aa was 6ce030f, checked in by Oleksandr Motsak <motsak@…>, 12 years ago
removal of the $Id$ svn tag from everywhere NOTE: the git SHA1 may be used instead (only on special places) NOTE: the libraries Singular/LIB/*.lib still contain the marker due to our current use of svn
  • Property mode set to 100644
File size: 967 bytes
Line 
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
18struct omBinPageRegion_s;
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 */
Note: See TracBrowser for help on using the repository browser.