diff --git a/src/include/ngspice/mifdefs.h b/src/include/ngspice/mifdefs.h index ae472d91b..87e62d2f1 100644 --- a/src/include/ngspice/mifdefs.h +++ b/src/include/ngspice/mifdefs.h @@ -54,6 +54,7 @@ struct MIFinstance { struct MIFmodel *MIFmodPtr; /* backpointer to model */ struct MIFinstance *MIFnextInstance; /* pointer to next instance of current model */ IFuid MIFname; /* pointer to character string naming this instance */ + int MIFstates; /* state info, unused */ int num_conn; /* number of connections on the code model */ Mif_Conn_Data_t **conn; /* array of data structures for each connection */ diff --git a/src/spicelib/devices/ind/inddefs.h b/src/spicelib/devices/ind/inddefs.h index c21c75466..8dafa77d5 100644 --- a/src/spicelib/devices/ind/inddefs.h +++ b/src/spicelib/devices/ind/inddefs.h @@ -127,6 +127,7 @@ struct sMUTinstance { MUTinstance *MUTnextInstance; /* pointer to next instance of * current model */ IFuid MUTname; /* pointer to character string naming this instance */ + int MUTstates; /* state info, unused */ double MUTcoupling; /* mutual inductance input by user */ double MUTfactor; /* mutual inductance scaled for internal use */ IFuid MUTindName1; /* name of coupled inductor 1 */ diff --git a/src/spicelib/devices/txl/txldefs.h b/src/spicelib/devices/txl/txldefs.h index aa054b4a2..68baa92a5 100644 --- a/src/spicelib/devices/txl/txldefs.h +++ b/src/spicelib/devices/txl/txldefs.h @@ -16,8 +16,8 @@ typedef struct sTXLinstance { * current model*/ IFuid TXLname; /* pointer to character string naming this instance */ - - int dimensions; /* may we not need this but ... */ + int TXLstates; /* state info, unused */ + int TXLposNode; int TXLnegNode; double TXLlength;