1 #ifndef ngspice_EVTSHARED_H
2 #define ngspice_EVTSHARED_H
3 
4 /* ===========================================================================
5 FILE    EVTshared.h
6 
7 MEMBER OF process XSPICE
8 
9 Copyright 2018
10 Holger Vogt
11 All Rights Reserved
12 
13 PROJECT A-8503
14 
15 AUTHORS
16 
17     7/21/2018  Holger Vogt
18 
19 MODIFICATIONS
20 
21     <date> <person name> <nature of modifications>
22 
23 SUMMARY
24 
25     This file contains ANSI C function prototypes for functions
26     in the event-driven simulation algorithm package.
27 
28 INTERFACES
29 
30     None.
31 
32 REFERENCED FILES
33 
34     None.
35 
36 NON-STANDARD FEATURES
37 
38     None.
39 
40 =========================================================================== */
41 
42 #include "ngspice/cktdefs.h"
43 #include "ngspice/cpstd.h"
44 #include "ngspice/evt.h"
45 #include "ngspice/mifdefs.h"
46 #include "ngspice/ipc.h"
47 
48 
49 /* ******************* */
50 /* Function Prototypes */
51 /* ******************* */
52 
53 struct evt_shared_data *EVTshareddata(char *node_name);
54 char** EVTallnodes(void);
55 
56 #endif
57