struct runDesc forward declaration

This commit is contained in:
rlar 2012-02-07 17:28:27 +00:00
parent c3741ae6a1
commit 5df8e981e5
3 changed files with 13 additions and 2 deletions

View File

@ -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

View File

@ -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,

View File

@ -46,4 +46,6 @@ typedef struct JOB JOB;
typedef struct SPICEanalysis SPICEanalysis;
typedef struct runDesc runDesc;
#endif