1 /***********************************************************************/
2 /* Open Visualization Data Explorer                                    */
3 /* (C) Copyright IBM Corp. 1989,1999                                   */
4 /* ALL RIGHTS RESERVED                                                 */
5 /* This code licensed under the                                        */
6 /*    "IBM PUBLIC LICENSE - Open Visualization Data Explorer"          */
7 /***********************************************************************/
8 /*
9  * $Header: /src/master/dx/src/exec/dpexec/function.h,v 1.3 2004/06/09 16:14:28 davidt Exp $
10  */
11 
12 #ifndef _FUNCTION_H
13 #define _FUNCTION_H
14 
15 #include "utils.h"
16 
17 #if defined(__cplusplus) || defined(c_plusplus)
18 extern "C" {
19 #endif
20 
21 Error _dxf_ExFunctionDone ();
22 Error DXAddModuleV (char *name, PFI func, int flags, int nin, char *inlist[],
23                     int nout, char *outlist[], char *exec, char *host);
24 Error DXAddModule (char *name, ...);
25 
26 #if defined(__cplusplus) || defined(c_plusplus)
27 }
28 #endif
29 
30 #endif /* _FUNCTION_H */
31