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