struct runDesc forward declaration
This commit is contained in:
parent
c3741ae6a1
commit
5df8e981e5
|
|
@ -1,3 +1,8 @@
|
|||
2012-02-07 Robert Larice
|
||||
* src/frontend/outitf.h ,
|
||||
* src/include/ngspice/typedefs.h :
|
||||
struct runDesc forward declaration
|
||||
|
||||
2012-02-07 Robert Larice
|
||||
* src/frontend/rawfile.c :
|
||||
comment/pinpoint a local misuse of a structure element
|
||||
|
|
|
|||
|
|
@ -5,6 +5,10 @@
|
|||
|
||||
#ifndef OUTITF_H_INCLUDED
|
||||
#define OUTITF_H_INCLUDED
|
||||
|
||||
#include "ngspice/typedefs.h"
|
||||
|
||||
|
||||
typedef struct dataDesc {
|
||||
char *name; /* The name of the vector. */
|
||||
int type; /* The type. */
|
||||
|
|
@ -20,7 +24,7 @@ typedef struct dataDesc {
|
|||
struct dvec *vec;
|
||||
} dataDesc;
|
||||
|
||||
typedef struct runDesc {
|
||||
struct runDesc {
|
||||
void *analysis;
|
||||
CKTcircuit *circuit;
|
||||
char *name;
|
||||
|
|
@ -37,7 +41,7 @@ typedef struct runDesc {
|
|||
int pointCount;
|
||||
int isComplex;
|
||||
int windowCount;
|
||||
} runDesc;
|
||||
};
|
||||
|
||||
int OUTpBeginPlot(CKTcircuit *circuitPtr, JOB *analysisPtr,
|
||||
IFuid analName,
|
||||
|
|
|
|||
|
|
@ -46,4 +46,6 @@ typedef struct JOB JOB;
|
|||
|
||||
typedef struct SPICEanalysis SPICEanalysis;
|
||||
|
||||
typedef struct runDesc runDesc;
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Reference in New Issue