NEURON
hocmodl.h
Go to the documentation of this file.
1 extern void hoc_model(), hoc_initmodel(), hoc_terminal(), hoc_prconst();
2 extern int *hoc_pindepindex;
3 
4 static VoidFunc functions[] = {
5 "model", hoc_model,
6 "initmodel", hoc_initmodel,
7 "terminal", hoc_terminal,
8 0,0
9 };
10 
11 static struct { /* Integer Scalars */
12  char *name;
13  int *pint;
14 } scint[] = {
15 0, 0
16 };
17 
18 static struct { /* Vector integers */
19  char *name;
20  int *pint;
21  int index1;
22 } vint[] = {
23 0,0,0
24 };
25 
26 static DoubScal scdoub[] = {
27  0,0
28 };
29 
30 static DoubVec vdoub[] = {
31  0,0,0
32 };
33 
34 static struct { /* Arrays */
35  char *name;
36  double *pdoub;
37  int index1;
38  int index2;
39 } ardoub[] = {
40 0, 0, 0, 0
41 };
42 
43 static struct { /* triple dimensioned arrays */
44  char *name;
45  double *pdoub;
46  int index1;
47  int index2;
48  int index3;
49 } thredim[] = {
50 0, 0, 0, 0, 0
51 };
static DoubVec vdoub[]
Definition: hocmodl.h:30
static struct @58 ardoub[]
int index1
Definition: hocmodl.h:21
char * name
Definition: hocmodl.h:12
static DoubScal scdoub[]
Definition: hocmodl.h:26
void hoc_initmodel()
double * pdoub
Definition: hocmodl.h:36
static VoidFunc functions[]
Definition: hocmodl.h:4
static struct @57 vint[]
void hoc_prconst()
static struct @56 scint[]
static struct @59 thredim[]
void hoc_model()
int index3
Definition: hocmodl.h:48
int * hoc_pindepindex
int * pint
Definition: hocmodl.h:13
void hoc_terminal()
int index2
Definition: hocmodl.h:38