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.
 
 
 
 
 
 

37 lines
796 B

/**********
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 5
extern int TFsetParm();
extern int TFaskQuest();
#endif /*TF*/