git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.DevExpressVCL@63 05c56307-c608-d34a-929d-697000501d7a
28 lines
888 B
C++
28 lines
888 B
C++
//---------------------------------------------------------------------------
|
|
|
|
#include <vcl.h>
|
|
#pragma hdrstop
|
|
USERES("cxExportC11.res");
|
|
USEPACKAGE("vcl.bpi");
|
|
USEPACKAGE("rtl.bpi");
|
|
USEPACKAGE("dxCoreC11.bpi");
|
|
USEPACKAGE("dbrtl.bpi");
|
|
USEPACKAGE("cxLibraryC11.bpi");
|
|
USEUNIT("cxXLSExport.pas");
|
|
USEUNIT("cxHtmlXmlTxtExport.pas");
|
|
USEUNIT("cxExport.pas");
|
|
USEUNIT("cxExportStrs.pas");
|
|
//---------------------------------------------------------------------------
|
|
#pragma package(smart_init)
|
|
//---------------------------------------------------------------------------
|
|
|
|
// Package source.
|
|
//---------------------------------------------------------------------------
|
|
|
|
#pragma argsused
|
|
int WINAPI DllEntryPoint(HINSTANCE hinst, unsigned long reason, void*)
|
|
{
|
|
return 1;
|
|
}
|
|
//---------------------------------------------------------------------------
|