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/remote.h,v 1.3 2004/06/09 16:14:28 davidt Exp $
10  */
11 
12 #ifndef _REMOTE_H
13 #define _REMOTE_H
14 
15 #include <dx/dx.h>
16 
17 #if defined(__cplusplus) || defined(c_plusplus)
18 extern "C" {
19 #endif
20 
21 int _dxfExRemoteExec(int dconnect, char *host, char *ruser, int r_argc,
22                      char **r_argv, int outboard);
23 Error DXOutboard (Object *in, Object *out);
24 Error _dxf_ExDeleteReallyRemote (char *procgroup, char *name, int instance);
25 Error _dxf_ExDeleteRemote (char *name, int instance);
26 int   _dxf_ExInitRemote (void);
27 
28 #if defined(__cplusplus) || defined(c_plusplus)
29 }
30 #endif
31 
32 #endif /* _REMOTE_H */
33