]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/filed/win32/winevents.h
Fix distclean to wipe CVS
[bacula/bacula] / bacula / src / filed / win32 / winevents.h
1 /* Object implementing the Events dialog for Bacula */
2 /*
3    Copyright (C) 2000, 2001, 2002 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
7    as published by the Free Software Foundation; either version 2
8    of 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
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
21
22 class bacEvents;
23
24 #ifndef _win_bacEVENTS
25 #define _win_bacEVENTS 1
26
27 /* Define the bacEvents class */
28 class bacEvents
29 {
30 public:
31    bacEvents();
32    ~bacEvents();
33
34    /* The dialog box window proc */
35    static BOOL CALLBACK DialogProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
36
37    void Show(BOOL show);
38
39    /* Object local storage */
40    BOOL visible;
41 };
42
43 #endif