First commit 18/09/2000

This commit is contained in:
2021-09-12 22:23:04 +02:00
commit d7520eb74b
35 changed files with 1021 additions and 0 deletions

28
BipBip.cpp Normal file
View File

@ -0,0 +1,28 @@
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
USERES("BipBip.res");
USEFORM("AllBox.cpp", Boxes);
USEFORM("MiniChat_userlist.cpp", MiniChatList);
//---------------------------------------------------------------------------
HINSTANCE g_hinst;
//---------------------------------------------------------------------------
WINAPI WinMain(HINSTANCE, HINSTANCE hInstance, LPSTR, int)
{
try
{
Application->Initialize();
g_hinst = hInstance;
Application->Title = "BipBip!!!";
Application->CreateForm(__classid(TMiniChatList), &MiniChatList);
Application->CreateForm(__classid(TBoxes), &Boxes);
Application->ShowMainForm = false;
Application->Run();
}
catch (Exception &exception)
{
Application->ShowException(&exception);
}
return 0;
}
//---------------------------------------------------------------------------