]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/filed/win32/winevents.h
Make win32 build - Add missing change to Makefile.in
[bacula/bacula] / bacula / src / filed / win32 / winevents.h
1 /* Object implementing the Events dialog for Bacula */
2 /*
3    Copyright (C) 2000-2003 Kern Sibbald and John Walker
4
5    This program is free software; you can redistribute it and/or
6    modify it under the terms of the GNU General Public License as
7    published by the Free Software Foundation; either version 2 of
8    the License, or (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 GNU
13    General Public License for more details.
14
15    You should have received a copy of the GNU General Public
16    License along with this program; if not, write to the Free
17    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
18    MA 02111-1307, USA.
19
20  */
21
22
23 class bacEvents;
24
25 #ifndef _win_bacEVENTS
26 #define _win_bacEVENTS 1
27
28 /* Define the bacEvents class */
29 class bacEvents
30 {
31 public:
32    bacEvents();
33    ~bacEvents();
34
35    /* The dialog box window proc */
36    static BOOL CALLBACK DialogProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
37
38    void Show(BOOL show);
39
40    /* Object local storage */
41    BOOL visible;
42 };
43
44 #endif