|
|
|
@ -0,0 +1,38 @@ |
|
|
|
/* |
|
|
|
* forward declaration of important structs |
|
|
|
* and central typedefs which are not allowed to be repeated |
|
|
|
*/ |
|
|
|
|
|
|
|
#ifndef TYPEDEFS_H_INCLUDED |
|
|
|
#define TYPEDEFS_H_INCLUDED |
|
|
|
|
|
|
|
|
|
|
|
typedef struct CKTcircuit CKTcircuit; |
|
|
|
typedef struct CKTnode CKTnode; |
|
|
|
|
|
|
|
|
|
|
|
typedef struct GENinstance GENinstance; |
|
|
|
typedef struct GENmodel GENmodel; |
|
|
|
|
|
|
|
|
|
|
|
typedef struct IFparm IFparm; |
|
|
|
typedef union IFvalue IFvalue; |
|
|
|
typedef struct IFparseTree IFparseTree; |
|
|
|
typedef struct IFcomplex IFcomplex; |
|
|
|
typedef struct IFdevice IFdevice; |
|
|
|
typedef struct IFanalysis IFanalysis; |
|
|
|
typedef struct IFsimulator IFsimulator; |
|
|
|
typedef struct IFfrontEnd IFfrontEnd; |
|
|
|
typedef char *IFuid; |
|
|
|
|
|
|
|
|
|
|
|
typedef struct TFan TFan; |
|
|
|
|
|
|
|
|
|
|
|
typedef struct graph GRAPH; |
|
|
|
|
|
|
|
|
|
|
|
struct dbcomm; |
|
|
|
|
|
|
|
|
|
|
|
#endif |