source: git/omalloc/omStructs.h @ bee06d

spielwiese
Last change on this file since bee06d was 341696, checked in by Hans Schönemann <hannes@…>, 14 years ago
Adding Id property to all files git-svn-id: file:///usr/local/Singular/svn/trunk@12231 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 985 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 *  Version: $Id$
7 *******************************************************************/
8#ifndef OM_STRUCTS_H
9#define OM_STRUCTS_H
10
11struct omBin_s;
12typedef struct omBin_s      omBin_t;
13typedef omBin_t*            omBin;
14
15struct omBinPage_s;
16typedef struct omBinPage_s  omBinPage_t;
17typedef omBinPage_t*        omBinPage;
18
19struct omBinPageRegion_s;
20typedef struct omBinPageRegion_s omBinPageRegion_t;
21typedef omBinPageRegion_t* omBinPageRegion;
22
23struct omOpts_s;
24typedef struct omOpts_s omOpts_t;
25
26struct omInfo_s;
27typedef struct omInfo_s omInfo_t;
28
29struct omSpecBin_s;
30typedef struct omSpecBin_s omSpecBin_t;
31typedef omSpecBin_t*        omSpecBin;
32
33struct omRetInfo_s;
34typedef struct omRetInfo_s omRetInfo_t;
35typedef omRetInfo_t*        omRetInfo;
36
37#endif /* OM_STRUCTS_H */
Note: See TracBrowser for help on using the repository browser.