tfdefs.h

来自「spice中支持多层次元件模型仿真的可单独运行的插件源码」· C头文件 代码 · 共 38 行

H
38
字号
/**********Copyright 1990 Regents of the University of California.  All rights reserved.Author: 1985 Thomas L. Quarles**********/#ifndef TF#define TF#include "jobdefs.h"#include "tskdefs.h"#include "cktdefs.h"    /* TFdefs.h - defs for transfer function analyses */typedef struct {    int JOBtype;    JOB *JOBnextJob;    IFuid JOBname;    CKTnode *TFoutPos;    CKTnode *TFoutNeg;    IFuid TFoutSrc;    IFuid TFinSrc;    char *TFoutName;    /* a printable name for an output v(x,y) */    unsigned int TFoutIsV :1;    unsigned int TFoutIsI :1;    unsigned int TFinIsV :1;    unsigned int TFinIsI :1;} TFan;#define TF_OUTPOS 1#define TF_OUTNEG 2#define TF_OUTSRC 3#define TF_INSRC 4#define TF_OUTNAME 5extern int TFsetParm();extern int TFaskQuest();#endif	/*TF*/

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?