]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/wx-console/csprint.h
Correct a minor build problem with wx-console.
[bacula/bacula] / bacula / src / wx-console / csprint.h
1 /*
2  *
3  *    csprint header file, used by console_thread to send events back to the GUI.
4  *
5  *    Nicolas Boichat, April 2004
6  *
7  *    Version $Id$
8  */
9 /*
10    Copyright (C) 2004 Kern Sibbald and John Walker
11
12    This program is free software; you can redistribute it and/or
13    modify it under the terms of the GNU General Public License as
14    published by the Free Software Foundation; either version 2 of
15    the License, or (at your option) any later version.
16
17    This program is distributed in the hope that it will be useful,
18    but WITHOUT ANY WARRANTY; without even the implied warranty of
19    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20    General Public License for more details.
21
22    You should have received a copy of the GNU General Public
23    License along with this program; if not, write to the Free
24    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
25    MA 02111-1307, USA.
26
27  */
28
29 #ifndef CSPRINT_H
30 #define CSPRINT_H
31
32 #define CS_DATA          1 /* data has been received */
33 #define CS_END           2 /* no data to receive anymore */
34 #define CS_PROMPT        3 /* prompt signal received */
35 #define CS_CONNECTED     4 /* the socket is now connected */
36 #define CS_DISCONNECTED  5 /* the socket is now disconnected */
37 #define CS_DEBUG        10 /* used to print debug messages */
38 #define CS_TERMINATED   99 /* used to signal that the thread is terminated */
39
40 /* function called by console_thread to send events back to the GUI */
41 void csprint(const char* str, int status=CS_DATA);
42
43 #endif