1 /**********
2 Copyright 1990 Regents of the University of California.  All rights reserved.
3 Author: 1986 Wayne A. Christopher, U. C. Berkeley CAD Group
4 Modified 1999 Emmanuel Rouat
5 **********/
6 
7 #include "ngspice/ngspice.h"
8 #include "ngspice/cpstd.h"
9 #include "ngspice/hlpdefs.h"
10 #include "ngspice/suffix.h"
11 
12 
13 char *hlp_boldfontname = BOLD_FONT;
14 char *hlp_regfontname = REG_FONT;
15 char *hlp_italicfontname = ITALIC_FONT;
16 char *hlp_titlefontname = TITLE_FONT;
17 char *hlp_buttonfontname = BUTTON_FONT;
18 char *hlp_displayname = NULL;
19 int hlp_initxpos = START_XPOS;
20 int hlp_initypos = START_YPOS;
21 int hlp_buttonstyle = BS_LEFT;
22 
23 
24 #ifdef X_DISPLAY_MISSING
25 
26 bool
hlp_xdisplay(topic * top)27 hlp_xdisplay(topic *top)
28 {
29     NG_IGNORE(top);
30     return (FALSE);
31 }
32 
33 
34 void
hlp_xkillwin(topic * top)35 hlp_xkillwin(topic *top)
36 {
37     NG_IGNORE(top);
38 }
39 
40 #endif
41 
42 
43 void
hlp_xwait(topic * top,bool on)44 hlp_xwait(topic *top, bool on)
45 {
46     NG_IGNORE(on);
47     NG_IGNORE(top);
48 }
49 
50 
51 void
hlp_xclosedisplay(void)52 hlp_xclosedisplay(void)
53 {
54 }
55 
56 
57 toplink *
hlp_xhandle(topic ** pp)58 hlp_xhandle(topic **pp)
59 {
60     *pp = NULL;
61     return (NULL);
62 }
63