mirror of
https://github.com/n5ac/mmsstv.git
synced 2026-01-20 15:20:17 +01:00
30 lines
854 B
C++
30 lines
854 B
C++
//----------------------------------------------------------------------------
|
|
#ifndef OCRH
|
|
#define OCRH
|
|
//----------------------------------------------------------------------------
|
|
#include <ExtCtrls.hpp>
|
|
#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 TAboutDlg : public TForm
|
|
{
|
|
__published:
|
|
TButton *OKBtn;
|
|
TLabel *LVer;
|
|
TImage *Image;
|
|
private:
|
|
public:
|
|
virtual __fastcall TAboutDlg(HWND hWnd);
|
|
};
|
|
//----------------------------------------------------------------------------
|
|
//extern PACKAGE TAboutDlg *AboutDlg;
|
|
//----------------------------------------------------------------------------
|
|
#endif
|