~ubuntu-branches/ubuntu/karmic/scilab/karmic

« back to all changes in this revision

Viewing changes to examples/interface-tour/examples_gateway.c.ref

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2002-03-21 16:57:43 UTC
  • Revision ID: james.westby@ubuntu.com-20020321165743-e9mv12c1tb1plztg
Tags: upstream-2.6
ImportĀ upstreamĀ versionĀ 2.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include "mex.h" 
 
2
 
 
3
extern Gatefunc intex1c;
 
4
extern Gatefunc intex2c;
 
5
extern Gatefunc intex3c;
 
6
extern Gatefunc intex4c;
 
7
extern Gatefunc intex5c;
 
8
extern Gatefunc intex6c;
 
9
extern Gatefunc intex7c;
 
10
extern Gatefunc intex8c;
 
11
extern Gatefunc intex9c;
 
12
extern Gatefunc intex10c;
 
13
extern Gatefunc intex11c;
 
14
extern Gatefunc intex12c;
 
15
extern Gatefunc intex13c;
 
16
extern Gatefunc intex14c;
 
17
extern Gatefunc intex15c;
 
18
extern Gatefunc intex16c;
 
19
extern Gatefunc intex17c;
 
20
extern Gatefunc intex17f;
 
21
extern Gatefunc C2F(intex1f);
 
22
extern Gatefunc C2F(intex2f);
 
23
extern Gatefunc C2F(intex3f);
 
24
extern Gatefunc C2F(intex4f);
 
25
extern Gatefunc C2F(intex5f);
 
26
extern Gatefunc C2F(intex6f);
 
27
extern Gatefunc C2F(intex7f);
 
28
extern Gatefunc C2F(intex8f);
 
29
extern Gatefunc C2F(intex9f);
 
30
extern Gatefunc C2F(intex10f);
 
31
extern Gatefunc C2F(intex11f);
 
32
extern Gatefunc C2F(intex12f);
 
33
extern Gatefunc C2F(intex13f);
 
34
extern Gatefunc C2F(intex14f);
 
35
extern Gatefunc C2F(intex15f);
 
36
extern Gatefunc C2F(intex16f);
 
37
 
 
38
static GenericTable Tab[]={
 
39
{(Myinterfun)sci_gateway, intex1c,"error msg"},
 
40
{(Myinterfun)sci_gateway, intex2c,"error msg"},
 
41
{(Myinterfun)sci_gateway, intex3c,"error msg"},
 
42
{(Myinterfun)sci_gateway, intex4c,"error msg"},
 
43
{(Myinterfun)sci_gateway, intex5c,"error msg"},
 
44
{(Myinterfun)sci_gateway, intex6c,"error msg"},
 
45
{(Myinterfun)sci_gateway, intex7c,"error msg"},
 
46
{(Myinterfun)sci_gateway, intex8c,"error msg"},
 
47
{(Myinterfun)sci_gateway, intex9c,"error msg"},
 
48
{(Myinterfun)sci_gateway, intex10c,"error msg"},
 
49
{(Myinterfun)sci_gateway, intex11c,"error msg"},
 
50
{(Myinterfun)sci_gateway, intex12c,"error msg"},
 
51
{(Myinterfun)sci_gateway, intex13c,"error msg"},
 
52
{(Myinterfun)sci_gateway, intex14c,"error msg"},
 
53
{(Myinterfun)sci_gateway, intex15c,"error msg"},
 
54
{(Myinterfun)sci_gateway, intex16c,"error msg"},
 
55
{(Myinterfun)sci_gateway, intex17c,"error msg"},
 
56
{(Myinterfun)sci_gateway, intex17f,"error msg"},
 
57
{(Myinterfun)sci_gateway, C2F(intex1f),"error msg"},
 
58
{(Myinterfun)sci_gateway, C2F(intex2f),"error msg"},
 
59
{(Myinterfun)sci_gateway, C2F(intex3f),"error msg"},
 
60
{(Myinterfun)sci_gateway, C2F(intex4f),"error msg"},
 
61
{(Myinterfun)sci_gateway, C2F(intex5f),"error msg"},
 
62
{(Myinterfun)sci_gateway, C2F(intex6f),"error msg"},
 
63
{(Myinterfun)sci_gateway, C2F(intex7f),"error msg"},
 
64
{(Myinterfun)sci_gateway, C2F(intex8f),"error msg"},
 
65
{(Myinterfun)sci_gateway, C2F(intex9f),"error msg"},
 
66
{(Myinterfun)sci_gateway, C2F(intex10f),"error msg"},
 
67
{(Myinterfun)sci_gateway, C2F(intex11f),"error msg"},
 
68
{(Myinterfun)sci_gateway, C2F(intex12f),"error msg"},
 
69
{(Myinterfun)sci_gateway, C2F(intex13f),"error msg"},
 
70
{(Myinterfun)sci_gateway, C2F(intex14f),"error msg"},
 
71
{(Myinterfun)sci_gateway, C2F(intex15f),"error msg"},
 
72
{(Myinterfun)sci_gateway, C2F(intex16f),"error msg"},
 
73
         };
 
74
 
 
75
int C2F(examples_gateway)()
 
76
{  Rhs = Max(0, Rhs);
 
77
(*(Tab[Fin-1].f))(Tab[Fin-1].name,Tab[Fin-1].F);
 
78
  return 0;
 
79
}
 
80