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/background.h,v 1.5 2004/06/09 16:14:27 davidt Exp $
10  */
11 
12 #include <dxconfig.h>
13 
14 
15 #ifndef	_BACKGROUND_H
16 #define	_BACKGROUND_H
17 
18 #include "parse.h"
19 #include "d.h"
20 
21 /*
22  * Externally visible functions.
23  */
24 #if defined(__cplusplus) || defined(c_plusplus)
25 extern "C" {
26 #endif
27 
28 void	_dxf_ExBackgroundChange	(void);
29 void	_dxf_ExBackgroundRedo	(void);
30 void	_dxf_ExBackgroundCommand	(_bg comm, struct node * n);
31 int	_dxf_ExCheckBackground	(EXDictionary dict, int multiProc);
32 void	_dxf_ExCleanupBackground	(void);
33 Error	_dxf_ExInitBackground	(void);
34 int	ExBackgroundIdle	(void);
35 
36 #if defined(__cplusplus) || defined(c_plusplus)
37 }
38 #endif
39 
40 #endif	/* _BACKGROUND_H */
41