]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/win32/libwin32/winbacula.h
Add all the new files from the Windows branch.
[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 // WinUPS header file
33
34 // Application specific messages
35
36 // Message used for system tray notifications
37 #define WM_TRAYNOTIFY                           WM_USER+1
38
39 // Messages used for the server object to notify windows of things
40 #define WM_SRV_CLIENT_CONNECT           WM_USER+2
41 #define WM_SRV_CLIENT_AUTHENTICATED     WM_USER+3
42 #define WM_SRV_CLIENT_DISCONNECT        WM_USER+4
43
44 // Export the application details
45 extern HINSTANCE        hAppInstance;
46 extern const char       *szAppName;
47 extern DWORD            mainthreadId;
48
49 // Main Bacula server routine
50 extern int BaculaAppMain();
51
52 extern void LogErrorMsg(char *msg);
53
54 // Standard command-line flag definitions
55 const char BaculaRunService[]            = "/service";
56 const char BaculaRunServiceHelper[]      = "/servicehelper";
57 const char BaculaRunAsUserApp[]          = "/run";
58
59 const char BaculaInstallService[]        = "/install";
60 const char BaculaRemoveService[]         = "/remove";
61
62 const char BaculaShowAbout[]             = "/about";
63 const char BaculaShowStatus[]            = "/status";
64 const char BaculaShowEvents[]            = "/events";
65 const char BaculaKillRunningCopy[]       = "/kill";
66
67 const char BaculaShowHelp[]              = "/help";
68
69 // Usage string
70 const char BaculaUsageText[] = "Bacula [/run] [/kill] [/install] [/remove] [/about] [/status] [/events]\n";
71
72 void LogErrorMsg(char *msg, char *fname, int lineno);
73 #define log_error_message(msg) LogErrorMsg((msg), __FILE__, __LINE__)