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/command.h,v 1.3 2004/06/09 16:14:27 davidt Exp $
10  */
11 
12 #ifndef _COMMAND_H
13 #define _COMMAND_H
14 
15 #include "distp.h"
16 
17 #if defined(__cplusplus) || defined(c_plusplus)
18 extern "C" {
19 #endif
20 
21 void _dxf_ExDeleteHost(char *host, int err, int closepeer);
22 void _dxf_ExDeletePeer(SlavePeers *sp, int closepeer);
23 void _dxf_ExAddPeer(SlavePeers *sp);
24 void _dxf_ExDeletePeerByName(char *host, int closepeer);
25 void _dxf_ExFlushGlobal(void);
26 void _dxf_ExFlushMacro (void);
27 Error _dxf_ExExecCommandStr (char *cmd);
28 int   _dxf_NewDPTableEntry();
29 void  _dxf_InitDPtableflag();
30 
31 #if defined(__cplusplus) || defined(c_plusplus)
32 }
33 #endif
34 
35 #endif /* _COMMAND_H */
36