Fix cell increment error in RESIZE
[debian/pforth] / csrc / pf_cglue.h
1 /* @(#) pf_cglue.h 96/12/18 1.7 */\r
2 #ifndef _pf_c_glue_h\r
3 #define _pf_c_glue_h\r
4 \r
5 /***************************************************************\r
6 ** Include file for PForth 'C' Glue support\r
7 **\r
8 ** Author: Phil Burk\r
9 ** Copyright 1994 3DO, Phil Burk, Larry Polansky, David Rosenboom\r
10 **\r
11 ** The pForth software code is dedicated to the public domain,\r
12 ** and any third party may reproduce, distribute and modify\r
13 ** the pForth software code or any derivative works thereof\r
14 ** without any compensation or license.  The pForth software\r
15 ** code is provided on an "as is" basis without any warranty\r
16 ** of any kind, including, without limitation, the implied\r
17 ** warranties of merchantability and fitness for a particular\r
18 ** purpose and their equivalents under the laws of any jurisdiction.\r
19 **\r
20 ***************************************************************/\r
21 \r
22 typedef cell (*CFunc0)( void );\r
23 typedef cell (*CFunc1)( cell P1 );\r
24 typedef cell (*CFunc2)( cell P1, cell P2 );\r
25 typedef cell (*CFunc3)( cell P1, cell P2, cell P3 );\r
26 typedef cell (*CFunc4)( cell P1, cell P2, cell P3, cell P4 );\r
27 typedef cell (*CFunc5)( cell P1, cell P2, cell P3, cell P4, cell P5 );\r
28 \r
29 #ifdef __cplusplus\r
30 extern "C" {\r
31 #endif\r
32 \r
33 Err   CreateGlueToC( const char *CName, uint32 Index, int32 ReturnMode, int32 NumParams );\r
34 Err   CompileCustomFunctions( void );\r
35 Err   LoadCustomFunctionTable( void );\r
36 int32 CallUserFunction( int32 Index, int32 ReturnMode, int32 NumParams );\r
37 \r
38 #ifdef __cplusplus\r
39 }   \r
40 #endif\r
41 \r
42 #define C_RETURNS_VOID (0)\r
43 #define C_RETURNS_VALUE (1)\r
44 \r
45 #endif /* _pf_c_glue_h */\r