37 lines
1.4 KiB
C++
37 lines
1.4 KiB
C++
//---------------------------------------------------------------------------
|
|
|
|
#ifndef testH
|
|
#define testH
|
|
//---------------------------------------------------------------------------
|
|
#include <Classes.hpp>
|
|
#include <Controls.hpp>
|
|
#include <StdCtrls.hpp>
|
|
#include <Forms.hpp>
|
|
#include "LM2000.h"
|
|
//---------------------------------------------------------------------------
|
|
class TForm1 : public TForm
|
|
{
|
|
__published: // IDE-managed Components
|
|
TButton *Button1;
|
|
TButton *Button2;
|
|
TButton *Button3;
|
|
TButton *Button4;
|
|
TLm2000 *Lm2000;
|
|
TCheckBox *CheckBox1;
|
|
bool __fastcall Lm2000BuscaTarjeta(int ID, int FGA, int TPA,
|
|
int CDA, int *TPR, int *PNR, char *message);
|
|
void __fastcall FormDestroy(TObject *Sender);
|
|
void __fastcall Button1Click(TObject *Sender);
|
|
void __fastcall Button2Click(TObject *Sender);
|
|
void __fastcall Button3Click(TObject *Sender);
|
|
void __fastcall Button4Click(TObject *Sender);
|
|
bool __fastcall Lm2000VerboseMessage(AnsiString msg);
|
|
private: // User declarations
|
|
public: // User declarations
|
|
__fastcall TForm1(TComponent* Owner);
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
extern PACKAGE TForm1 *Form1;
|
|
//---------------------------------------------------------------------------
|
|
#endif
|