]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/win32/libwin32/protos.h
Implement more automatic build of Win64 client. Note, there are still
[bacula/bacula] / bacula / src / win32 / libwin32 / protos.h
1 /*
2    Bacula® - The Network Backup Solution
3
4    Copyright (C) 2007-2009 Free Software Foundation Europe e.V.
5
6    The main author of Bacula is Kern Sibbald, with contributions from
7    many others, a complete list can be found in the file AUTHORS.
8    This program is Free Software; you can redistribute it and/or
9    modify it under the terms of version two of the GNU General Public
10    License as published by the Free Software Foundation, which is 
11    listed in the file LICENSE.
12
13    This program is distributed in the hope that it will be useful, but
14    WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16    General Public License for more details.
17
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21    02110-1301, USA.
22
23    Bacula® is a registered trademark of Kern Sibbald.
24    The licensor of Bacula is the Free Software Foundation Europe
25    (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zürich,
26    Switzerland, email:ftf@fsfeurope.org.
27 */
28 /*
29  * Kern Sibbald, August 2007
30  *
31  *   Version $Id$
32  */
33
34 #define log_error_message(msg) LogErrorMsg((msg), __FILE__, __LINE__)
35
36 extern int BaculaAppMain();
37 extern void LogErrorMsg(const char *msg, const char *fname, int lineno);
38
39 extern int BaculaMain(int argc, char *argv[]);
40 extern BOOL ReportStatus(DWORD state, DWORD exitcode, DWORD waithint);
41 extern void d_msg(const char *, int, int, const char *, ...);
42 extern char *bac_status(char *buf, int buf_len);
43
44
45 /* service.cpp */
46 bool postToBacula(UINT message, WPARAM wParam, LPARAM lParam);
47 bool isAService();
48 int installService(const char *svc);
49 int removeService();
50 int stopRunningBacula();
51 int baculaServiceMain();
52
53
54 /* Globals */
55 extern DWORD service_thread_id;
56 extern DWORD service_error;
57 extern bool opt_debug;
58 extern bool have_service_api;
59 extern HINSTANCE appInstance;
60 extern int bacstat;