blob: 70c269a1d961bdadd1979e68a24b6252b0bb4026 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// CSupport.h - protos for external C functions called from pascal
#ifndef CSupport_included
#define CSupport_included
#ifdef __cplusplus
extern "C" {
#endif
SInt32 CFunction(void);
SInt32 CPlusFunction(void);
#ifdef __cplusplus
}
#endif
#endif // CSupport_included
|