]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/win32/libwin32/winbacula.h
Fix Windows' daemons so that messages print to stdout if not running as a service.
[bacula/bacula] / bacula / src / win32 / libwin32 / winbacula.h
1 //  Copyright (C) 1999 AT&T Laboratories Cambridge. All Rights Reserved.
2 //
3 //  This file was part of the VNC system.
4 //
5 //  The VNC system is free software; you can redistribute it and/or modify
6 //  it under the terms of the GNU General Public License as published by
7 //  the Free Software Foundation; either version 2 of the License, or
8 //  (at your option) any later version.
9 //
10 //  This program is distributed in the hope that it will be useful,
11 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
12 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 //  GNU General Public License for more details.
14 //
15 //  You should have received a copy of the GNU General Public License
16 //  along with this program; if not, write to the Free Software
17 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,
18 //  USA.
19 //
20 // If the source code for the VNC system is not available from the place
21 // whence you received this file, check http://www.uk.research.att.com/vnc or contact
22 // the authors on vnc@uk.research.att.com for information on obtaining it.
23 //
24 // This file has been adapted to the Win32 version of Bacula
25 // by Kern E. Sibbald.  Many thanks to ATT and James Weatherall,
26 // the original author, for providing an excellent template.
27 //
28 // Copyright (2000) Kern E. Sibbald
29 //
30
31
32 // Application specific messages
33
34 // Message used for system tray notifications
35 #define WM_TRAYNOTIFY                           WM_USER+1
36
37 // Messages used for the server object to notify windows of things
38 #define WM_SRV_CLIENT_CONNECT           WM_USER+2
39 #define WM_SRV_CLIENT_AUTHENTICATED     WM_USER+3
40 #define WM_SRV_CLIENT_DISCONNECT        WM_USER+4
41
42 // Export the application details
43 extern HINSTANCE        hAppInstance;
44 extern const char       *szAppName;
45 extern DWORD            mainthreadId;
46
47 extern int BaculaAppMain();
48
49 extern void LogErrorMsg(char *msg);
50
51 // Standard command-line flag definitions
52 const char BaculaSilent[]                = "/silent";
53
54 const char BaculaRunService[]            = "/service";
55 const char BaculaRunAsUserApp[]          = "/run";
56 const char BaculaKillRunningCopy[]       = "/kill";
57
58 const char BaculaInstallService[]        = "/install";
59 const char BaculaRemoveService[]         = "/remove";
60
61 const char BaculaShowAbout[]             = "/about";
62 const char BaculaShowStatus[]            = "/status";
63
64 const char BaculaShowHelp[]              = "/help";
65
66 // Usage string
67 const char BaculaUsageText[] = "Bacula [/silent] [/service] [/run] [/kill] [/install] [/remove] [/about] [/status] [/help]\n";
68
69 void LogErrorMsg(char *msg, char *fname, int lineno);
70 #define log_error_message(msg) LogErrorMsg((msg), __FILE__, __LINE__)