1 |
|
1 |
//---------------------------------------------------------------------------
|
2 |
|
|
#ifndef fenetreH
|
3 |
|
|
#define fenetreH
|
4 |
|
|
//---------------------------------------------------------------------------
|
5 |
|
|
#include <vcl\Classes.hpp>
|
6 |
|
|
#include <vcl\Controls.hpp>
|
7 |
|
|
#include <vcl\StdCtrls.hpp>
|
8 |
|
|
#include <vcl\Forms.hpp>
|
9 |
|
|
#include <vcl\ComCtrls.hpp>
|
10 |
|
|
//---------------------------------------------------------------------------
|
11 |
|
|
class TFenp : public TForm
|
12 |
|
|
{
|
13 |
|
|
__published: // IDE-managed Components
|
14 |
|
|
TButton *Button1;
|
15 |
|
|
TMemo *Memo1;
|
16 |
|
|
void __fastcall FormActivate(TObject *Sender);
|
17 |
|
|
|
18 |
|
|
void __fastcall FormCreate(TObject *Sender);
|
19 |
|
|
void __fastcall Button1Click(TObject *Sender);
|
20 |
|
|
void __fastcall FormResize(TObject *Sender);
|
21 |
|
|
|
22 |
|
|
|
23 |
|
|
private:// User declarations
|
24 |
|
|
public: // User declarations
|
25 |
|
|
__fastcall TFenp(TComponent* Owner);
|
26 |
|
|
|
27 |
|
|
char argv[100][100];
|
28 |
|
|
int argc;
|
29 |
|
|
void __fastcall Iniarg(char *mess);
|
30 |
|
|
};
|
31 |
|
|
//---------------------------------------------------------------------------
|
32 |
|
|
extern PACKAGE TFenp *Fenp;
|
33 |
|
|
//---------------------------------------------------------------------------
|
34 |
|
|
#endif
|