home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1997 May
/
Pcwk0597.iso
/
borland
/
cb
/
setup
/
cbuilder
/
data.z
/
CLASSBRW.CPP
< prev
next >
Wrap
C/C++ Source or Header
|
1997-02-28
|
2KB
|
43 lines
//---------------------------------------------------------------------------
// Borland C++Builder
// Copyright (c) 1987, 1997 Borland International Inc. All Rights Reserved.
//---------------------------------------------------------------------------
// Classbrw.cpp
//
// VCL Class Browser
//---------------------------------------------------------------------------
//---------------------------------------------------------------------------
#include <vcl\vcl.h>
#pragma hdrstop
#include "splash.h"
//---------------------------------------------------------------------------
USERES("Classbrw.res");
USEUNIT("Btsclass.pas");
USEUNIT("Btsconst.pas");
USEFORMNS("Clssdlph.pas", Clssdlph, MainDlg);
USEFORMNS("Codepage.pas", Codepage, CodePageForm);
USEUNIT("Intexpt.pas");
USEUNIT("Mifiles.pas");
USEFORMNS("Parshead.pas", Parshead, ParseHeaders);
USEFORMNS("Rebuild.pas", Rebuild, TabRebuildStats);
USEFORMNS("About.pas", About, AboutBox);
USEFORM("splash.cpp", SplashScreen);
//---------------------------------------------------------------------------
WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
{
Application->Initialize();
SplashScreen=new TSplashScreen(Application);
SplashScreen->Position=poScreenCenter;
SplashScreen->Show();
Application->ProcessMessages();
Application->CreateForm(__classid(TMainDlg), &MainDlg);
SplashScreen->Hide();
delete SplashScreen;
Application->CreateForm(__classid(TCodePageForm), &CodePageForm);
Application->CreateForm(__classid(TSplashScreen), &SplashScreen);
Application->Run();
return 0;
}
//---------------------------------------------------------------------------