25 lines
483 B
C
25 lines
483 B
C
/**********
|
|
Copyright 1990 Regents of the University of California. All rights reserved.
|
|
Author: 1985 Thomas L. Quarles
|
|
**********/
|
|
|
|
#ifndef JOBdef
|
|
#define JOBdef
|
|
|
|
|
|
#include "ifsim.h"
|
|
|
|
typedef struct sJOB{
|
|
int JOBtype; /* type of job */
|
|
struct sJOB *JOBnextJob; /* next job in list */
|
|
IFuid JOBname; /* name of this job */
|
|
|
|
} JOB;
|
|
|
|
#define NODOMAIN 0
|
|
#define TIMEDOMAIN 1
|
|
#define FREQUENCYDOMAIN 2
|
|
#define SWEEPDOMAIN 3
|
|
|
|
#endif /*JOBdef*/
|