![]() cstubs.c |
![]() Virtual Machine |
![]() |
1 static char Version[] = "@(#) cstubs.c 1.1 10/11/94 05:31:01";
2 /****************************************************************
3 * *
4 * Module : stubs.c - User Written External Subroutines *
5 * *
6 * Description -This is a stub module for the support of up to *
7 * 10 external function calls via the LINK command *
8 * *
9 * Users should provide their own function calls either all *
10 * within this module or in separate modules. *
11 * The functions should have the same names i.e. sub0(), sub1() *
12 * etc.. *
13 * *
14 * If user functions have different names then the names of the *
15 * routines called from extsub.c must also be changed. *
16 * Users are at liberty to change any or all the function names *
17 * called from extsub.c, but should be careful when making *
18 * changes to that module. See extsub.c for more info. *
19 * *
20 * *
21 * Functions : sub0() *
22 * sub1() *
23 * sub2() *
24 * sub3() *
25 * sub4() *
26 * sub5() *
27 * sub6() *
28 * sub7() *
29 * sub8() *
30 * sub9() *
31 * History : *
32 * *
33 * Author : R Williamson 30 April 1992 *
34 ****************************************************************/
35
36 int sub0()
37 {
38 return 0;
39 }
40 int sub1()
41 {
42 return 0;
43 }
44 int sub2()
45 {
46 return 0;
47 }
48 int sub3()
49 {
50 return 0;
51 }
52 int sub4()
53 {
54 return 0;
55 }
56 int sub5()
57 {
58 return 0;
59 }
60 int sub6()
61 {
62 return 0;
63 }
64 int sub7()
65 {
66 return 0;
67 }
68 int sub8()
69 {
70 return 0;
71 }
72 int sub9()
73 {
74 return 0;
75 }
Topic ID: 750011