29 lines
952 B
C++
29 lines
952 B
C++
//---------------------------------------------------------------------------
|
|
|
|
#ifndef checksumH
|
|
#define checksumH
|
|
//---------------------------------------------------------------------------
|
|
#include <Classes.hpp>
|
|
#include <Controls.hpp>
|
|
#include <StdCtrls.hpp>
|
|
#include <Forms.hpp>
|
|
#include <ExtCtrls.hpp>
|
|
#include <jpeg.hpp>
|
|
//---------------------------------------------------------------------------
|
|
class TForm3 : public TForm
|
|
{
|
|
__published: // IDE-managed Components
|
|
TLabel *Label1;
|
|
TImage *Image1;
|
|
TEdit *Edit1;
|
|
TEdit *Edit2;
|
|
void __fastcall Edit1Change(TObject *Sender);
|
|
private: // User declarations
|
|
public: // User declarations
|
|
__fastcall TForm3(TComponent* Owner);
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
extern PACKAGE TForm3 *Form3;
|
|
//---------------------------------------------------------------------------
|
|
#endif
|