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