33 lines
1.1 KiB
C++
33 lines
1.1 KiB
C++
|
|
//---------------------------------------------------------------------------
|
||
|
|
|
||
|
|
#include <vcl.h>
|
||
|
|
#pragma hdrstop
|
||
|
|
USERES("cxPivotGridC5.res");
|
||
|
|
USEPACKAGE("vcl50.bpi");
|
||
|
|
USEPACKAGE("vcldb50.bpi");
|
||
|
|
USEPACKAGE("cxDataC5.bpi");
|
||
|
|
USEPACKAGE("cxLibraryVCLC5.bpi");
|
||
|
|
USEPACKAGE("cxEditorsC5.bpi");
|
||
|
|
USEPACKAGE("cxExtEditorsC5.bpi");
|
||
|
|
USEPACKAGE("cxExportC5.bpi");
|
||
|
|
USEPACKAGE("dxThemeC5.bpi");
|
||
|
|
USEUNIT("cxCustomPivotGrid.pas");
|
||
|
|
USEUNIT("cxPivotGrid.pas");
|
||
|
|
USEUNIT("cxDBPivotGrid.pas");
|
||
|
|
USEUNIT("cxPivotGridStrs.pas");
|
||
|
|
USEUNIT("cxPivotGridCustomization.pas");
|
||
|
|
USEUNIT("cxExportPivotGridLink.pas");
|
||
|
|
//---------------------------------------------------------------------------
|
||
|
|
#pragma package(smart_init)
|
||
|
|
//---------------------------------------------------------------------------
|
||
|
|
|
||
|
|
// Package source.
|
||
|
|
//---------------------------------------------------------------------------
|
||
|
|
|
||
|
|
#pragma argsused
|
||
|
|
int WINAPI DllEntryPoint(HINSTANCE hinst, unsigned long reason, void*)
|
||
|
|
{
|
||
|
|
return 1;
|
||
|
|
}
|
||
|
|
//---------------------------------------------------------------------------
|