version 1.17, 2003/05/25 16:35:41 |
version 1.18, 2003/05/28 08:43:59 |
|
|
/* -*- mode: C -*- */ |
/* -*- mode: C -*- */ |
/* $OpenXM: OpenXM/src/ox_toolkit/ox_toolkit.h,v 1.16 2003/05/24 23:10:40 ohara Exp $ */ |
/* $OpenXM: OpenXM/src/ox_toolkit/ox_toolkit.h,v 1.17 2003/05/25 16:35:41 ohara Exp $ */ |
|
|
#ifndef _OX_TOOLKIT_H_ |
#ifndef _OX_TOOLKIT_H_ |
|
|
Line 46 typedef struct OXFILE{ |
|
Line 46 typedef struct OXFILE{ |
|
int error; |
int error; |
} OXFILE; |
} OXFILE; |
|
|
typedef struct { |
typedef struct cmo { |
int tag; |
int tag; |
} cmo; |
} cmo; |
|
|
Line 81 typedef cmo_mathcap cmo_indeterminate; |
|
Line 81 typedef cmo_mathcap cmo_indeterminate; |
|
|
|
/* a double linked list */ |
/* a double linked list */ |
typedef struct cell { |
typedef struct cell { |
cmo *cmo; |
struct cmo *cmo; |
struct cell *next; |
struct cell *next; |
struct cell *prev; |
struct cell *prev; |
} cell; |
} cell; |
Line 135 typedef struct { |
|
Line 135 typedef struct { |
|
|
|
typedef struct { |
typedef struct { |
int tag; |
int tag; |
cmo *cmo; |
struct cmo *cmo; |
} ox_data; |
} ox_data; |
|
|
cmo_null* new_cmo_null(); |
cmo_null* new_cmo_null(); |