37 lines
1.2 KiB
C++
37 lines
1.2 KiB
C++
|
|
//---------------------------------------------------------------------------
|
||
|
|
|
||
|
|
#include <vcl.h>
|
||
|
|
#pragma hdrstop
|
||
|
|
USERES("cxLibraryC10.res");
|
||
|
|
USEPACKAGE("dxThemeC10.bpi");
|
||
|
|
USEPACKAGE("vcl.bpi");
|
||
|
|
USEPACKAGE("rtl.bpi");
|
||
|
|
USEFORMNS("cxStyleSheetEditor.pas", Cxstylesheeteditor, frmcxStyleSheetEditor);
|
||
|
|
USEUNIT("cxContainer.pas");
|
||
|
|
USEUNIT("cxControls.pas");
|
||
|
|
USEUNIT("cxGraphics.pas");
|
||
|
|
USEUNIT("cxLookAndFeelPainters.pas");
|
||
|
|
USEUNIT("cxLookAndFeels.pas");
|
||
|
|
USEUNIT("cxScrollBar.pas");
|
||
|
|
USEUNIT("cxStorage.pas");
|
||
|
|
USEUNIT("cxStyles.pas");
|
||
|
|
USEUNIT("cxClasses.pas");
|
||
|
|
USEUNIT("cxLibraryStrs.pas");
|
||
|
|
USEUNIT("cxPropertiesStore.pas");
|
||
|
|
USEUNIT("cxConverterUtils.pas");
|
||
|
|
USEUNIT("cxCustomConverter.pas");
|
||
|
|
USEUNIT("cxGeometry.pas");
|
||
|
|
//---------------------------------------------------------------------------
|
||
|
|
#pragma package(smart_init)
|
||
|
|
//---------------------------------------------------------------------------
|
||
|
|
|
||
|
|
// Package source.
|
||
|
|
//---------------------------------------------------------------------------
|
||
|
|
|
||
|
|
#pragma argsused
|
||
|
|
int WINAPI DllEntryPoint(HINSTANCE hinst, unsigned long reason, void*)
|
||
|
|
{
|
||
|
|
return 1;
|
||
|
|
}
|
||
|
|
//---------------------------------------------------------------------------
|