24 lines
728 B
C++
24 lines
728 B
C++
|
//---------------------------------------------------------------------------
|
||
|
|
||
|
#include <vcl.h>
|
||
|
#pragma hdrstop
|
||
|
USERES("FS5.res");
|
||
|
USEPACKAGE("vcl50.bpi");
|
||
|
USEPACKAGE("vclx50.bpi");
|
||
|
USEUNIT("fs_ireg.pas");
|
||
|
USEUNIT("fs_iconst.pas");
|
||
|
USERES("fs_iReg.dcr");
|
||
|
//---------------------------------------------------------------------------
|
||
|
#pragma package(smart_init)
|
||
|
//---------------------------------------------------------------------------
|
||
|
|
||
|
// Package source.
|
||
|
//---------------------------------------------------------------------------
|
||
|
|
||
|
#pragma argsused
|
||
|
int WINAPI DllEntryPoint(HINSTANCE hinst, unsigned long reason, void*)
|
||
|
{
|
||
|
return 1;
|
||
|
}
|
||
|
//---------------------------------------------------------------------------
|