1 |
francois |
283 |
//--------------------------------------------------------------------------- |
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 |
|
|
void __fastcall Button1Click(TObject *Sender); |
18 |
|
|
void __fastcall FormResize(TObject *Sender); |
19 |
|
|
void __fastcall FormCreate(TObject *Sender); |
20 |
|
|
private:// User declarations |
21 |
|
|
public: // User declarations |
22 |
|
|
__fastcall TFenp(TComponent* Owner); |
23 |
|
|
char arg[255]; |
24 |
|
|
char argv[100][100]; |
25 |
|
|
int argc; |
26 |
|
|
void __fastcall Iniarg(char *mess); |
27 |
|
|
}; |
28 |
|
|
//--------------------------------------------------------------------------- |
29 |
|
|
extern PACKAGE TFenp *Fenp; |
30 |
|
|
//--------------------------------------------------------------------------- |
31 |
|
|
#endif |