First commit 10/01/2001

This commit is contained in:
2021-09-12 22:25:13 +02:00
commit ef9e12b1db
53 changed files with 2444 additions and 0 deletions

30
ListInit.h Normal file
View File

@ -0,0 +1,30 @@
//---------------------------------------------------------------------------
#ifndef ListInitH
#define ListInitH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <ExtCtrls.hpp>
#include <Graphics.hpp>
#include <jpeg.hpp>
//---------------------------------------------------------------------------
class TAcercaDe : public TForm
{
__published: // IDE-managed Components
TImage *Image1;
TImage *Image2;
TLabel *Label1;
TLabel *Label2;
TTimer *Timer1;
void __fastcall Timer1Timer(TObject *Sender);
private: // User declarations
public: // User declarations
__fastcall TAcercaDe(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TAcercaDe *AcercaDe;
//---------------------------------------------------------------------------
#endif