The Build Engine
buildperl.h
1 /*
2  * Experimental Perl code in Build, include file.
3  *
4  * Written by Ryan C. Gordon. (icculus@clutteredmind.org)
5  *
6  * Please do NOT harrass Ken Silverman about any code modifications
7  * (including this file) to BUILD.
8  */
9 
10 // "Build Engine & Tools" Copyright (c) 1993-1997 Ken Silverman
11 // Ken Silverman's official web site: "http://www.advsys.net/ken"
12 // See the included license file "BUILDLIC.TXT" for license info.
13 // This file IS NOT A PART OF Ken Silverman's original release
14 
15 #ifndef _INCLUDE_BUILDPERL_H_
16 #define _INCLUDE_BUILDPERL_H_
17 
18 #ifdef __cplusplus
19 extern "C" {
20 #endif
21 
22 #if (!defined USE_PERL)
23 #error Please define USE_PERL before including this file.
24 #endif
25 
26 int buildperl_init(void);
27 void buildperl_frame(void);
28 void buildperl_deinit(void);
29 
30 #ifdef __cplusplus
31 }
32 #endif
33 
34 #endif // include-once-blocker.
35 
36 // end of buildperl.h ...