⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fteinput.h

📁 spice中支持多层次元件模型仿真的可单独运行的插件源码
💻 H
字号:
/**********Copyright 1990 Regents of the University of California.  All rights reserved.Author: 1988 Jeffrey M. Hsu**********//*    $Header: FTEinput.h,v 1.2 88/11/17 02:35:47 quarles Exp $    Defs to use the Input routine.    char_option is used by the lexer and the command interpreter      response.reply contains a pointer to a character    button_option is used by the menu system and the help package      response.reply contains the button number    click_option is used in the X10 version for the hardcopy command      response.reply is the associated graph structure    checkup_option is for handling and pending asynchonous events*/#ifndef _INPUT_H_#define _INPUT_H_#include <stdio.h>#include "ftegraph.h"typedef enum {    error_option,       /* a reply option only */    button_option,    char_option,    click_option,    checkup_option} OPTION;typedef struct request {    OPTION option;    FILE *fp;} REQUEST;typedef struct response {    OPTION option;    union {      int ch;      GRAPH *graph;      int button;    } reply;} RESPONSE;#endif  /* notdef _INPUT_H_ */

⌨️ 快捷键说明

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