]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/filed/win32/winstat.h
BSDI changes, auto Win API detection
[bacula/bacula] / bacula / src / filed / win32 / winstat.h
1 /*
2  * Bacula Status Dialog header file
3  *
4  */
5 /*
6    Copyright (C) 2000, 2001, 2002 Kern Sibbald and John Walker
7
8    This program is free software; you can redistribute it and/or
9    modify it under the terms of the GNU General Public License
10    as published by the Free Software Foundation; either version 2
11    of the License, or (at your option) any later version.
12
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
21    USA.
22  */
23
24
25 class bacStatus;
26
27 #ifndef _WINSTAT_H_ 
28 #define _WINSTAT_H_
29
30 class bacStatus
31 {
32 public:
33    bacStatus();
34    ~bacStatus();
35
36    /* The Windows callback routine */
37    static BOOL CALLBACK DialogProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
38
39    void Show(BOOL show);
40
41    BOOL visible;
42 };
43
44 #endif