30 lines
902 B
C++
30 lines
902 B
C++
//----------------------------------------------------------------------------
|
|
#ifndef CtrlD_PasswordDlgH
|
|
#define CtrlD_PasswordDlgH
|
|
//----------------------------------------------------------------------------
|
|
#include <Buttons.hpp>
|
|
#include <StdCtrls.hpp>
|
|
#include <Controls.hpp>
|
|
#include <Forms.hpp>
|
|
#include <Graphics.hpp>
|
|
#include <Classes.hpp>
|
|
#include <SysUtils.hpp>
|
|
#include <Windows.hpp>
|
|
#include <System.hpp>
|
|
//----------------------------------------------------------------------------
|
|
class TPasswordDlg : public TForm
|
|
{
|
|
__published:
|
|
TLabel *Label1;
|
|
TEdit *Password;
|
|
TButton *OKBtn;
|
|
TButton *CancelBtn;
|
|
private:
|
|
public:
|
|
virtual __fastcall TPasswordDlg(TComponent* AOwner);
|
|
};
|
|
//----------------------------------------------------------------------------
|
|
extern PACKAGE TPasswordDlg *PasswordDlg;
|
|
//----------------------------------------------------------------------------
|
|
#endif
|