mirror of
https://git.code.sf.net/p/ngspice/ngspice
synced 2026-09-02 10:47:20 +02:00
src/frontend/com_cdump.c src/frontend/com_cdump.h src/frontend/com_ghelp.c src/frontend/com_ghelp.h src/frontend/com_help.c src/frontend/com_help.h src/frontend/com_history.c src/frontend/com_history.h src/frontend/com_set.c src/frontend/com_shift.c src/frontend/com_strcmp.c src/frontend/com_strcmp.h src/frontend/com_unset.c src/frontend/control.c src/frontend/control.h src/frontend/ftehelp.h src/frontend/hcomp.c src/frontend/hcomp.h src/frontend/init.c src/frontend/init.h src/frontend/terminal.c src/frontend/terminal.h src/frontend/variable.c src/frontend/variable.h: New additions from the refactoring of the parser directory.
23 lines
418 B
C
23 lines
418 B
C
/**********
|
|
Copyright 1990 Regents of the University of California. All rights reserved.
|
|
Author: 1987 Jeffrey M. Hsu
|
|
**********/
|
|
|
|
/*
|
|
|
|
Defines for help.
|
|
*/
|
|
|
|
#define E_HASPLOTS 1
|
|
#define E_NOPLOTS 2
|
|
#define E_HASGRAPHS 4
|
|
#define E_MENUMODE 8
|
|
|
|
#define E_BEGINNING 4096
|
|
#define E_INTERMED 8192
|
|
#define E_ADVANCED 16384
|
|
#define E_ALWAYS 32768
|
|
|
|
/* default is intermediate level */
|
|
#define E_DEFHMASK 8192
|