You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

16 lines
290 B

#ifndef ngspice_COMPATMODE_H
#define ngspice_COMPATMODE_H
#include "ngspice/config.h"
typedef enum {
COMPATMODE_NATIVE = 0,
COMPATMODE_HS = 1,
COMPATMODE_SPICE3 = 2,
COMPATMODE_ALL = 3,
COMPATMODE_PS = 4
} COMPATMODE_T ;
extern COMPATMODE_T ngspice_compat_mode(void) ;
#endif