-
Notifications
You must be signed in to change notification settings - Fork 1
/
help.h
64 lines (40 loc) · 1.59 KB
/
help.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/* =====[ help.h ]=========================================================
Description:
Notes: To use it there are two metods: as definition (EXPORT)
as prototyping. (IMPORT)
If EXPORT is defined, we define and initialize variables,
otherwise we supply prototypes.
If we want to initialize, it is done like:
int this variable
#ifdef EXPORT
= FALSE
#endif
; !!!! note the semicolon !!!!
EXPORT is undefined by this process, for the next include file
it should be stated again.
REV DATE BY DESCRIPTION
---- -------- ---------- --------------------------------------
0.00 mm/dd/95 Peter Glen Initial version.
======================================================================= */
#ifndef help_defined
#define help_defined
#ifdef EXPORT
#define EXTERN
#else
#define EXTERN extern
#endif
/* -------- Defines: ----------------------------------------------------- */
/* -------- Macros: ------------------------------------------------------ */
/* -------- Protos ------------------------------------------------------- */
void basehelp(void);
void funchelp(void);
void ophelp(void);
void conshelp(void);
void cbhelp(void);
void help_help(void);
/* -------- Declarations: ------------------------------------------------ */
/* -------- Definitions: ------------------------------------------------- */
#undef EXTERN
#undef EXPORT
#endif
/* EOF */