File: INCLUDE\PROTOCOL\TProtocolPasswortDlg.h
1 //******************************************************************************
2 //Datei : TProtocolPasswortDlg.h
3 //Projekt : XCTL
4 //Subsystem : Protokollbuch
5 //Autor : Jens Klier <klier@informatik.hu-berlin.de>
6 // Institut fuer Informatik,
7 // Humboldt-Universitaet Berlin
8 //Inhalt : Interface der Klasse TProtocolPasswortDlg
9 //******************************************************************************
10 //!neu klier Protokollbuch
11
12 #include "utils\u_utils.h" // für TModalDlg
13
14 //--||--\\--||--//--||--\\--||--//--||--\\--||--//--||--\\--||--//--||--\\--||--
15
16 class TProtocolPasswortDlg : public TModalDlg
17 {
18 public:
19 TProtocolPasswortDlg( LPSTR, TProtocolDlg* );
20
21 private:
22 BOOL Dlg_OnInit( HWND, HWND, LPARAM );
23 void Dlg_OnCommand( HWND, int, HWND, UINT );
24
25 TProtocolDlg *ProtocolDlg;
26 };
27
28
29 // LastLine
30
31