git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.DevExpressVCL@31 05c56307-c608-d34a-929d-697000501d7a
33 lines
1.3 KiB
C++
33 lines
1.3 KiB
C++
//---------------------------------------------------------------------------
|
|
#include <vcl.h>
|
|
#pragma hdrstop
|
|
USERES("dxBarC6.res");
|
|
USEPACKAGE("rtl.bpi");
|
|
USEPACKAGE("vcl.bpi");
|
|
USEPACKAGE("dxcomnC6.bpi");
|
|
USEPACKAGE("dxThemeC6.bpi");
|
|
USEPACKAGE("dxGDIPlusC6.bpi");
|
|
USEPACKAGE("cxLibraryVCLC6.bpi");
|
|
USEFORMNS("dxBarCustForm.pas", Dxbarcustform, dxBarCustomizingForm);
|
|
USEFORMNS("dxBarItemEd.pas", Dxbaritemed, dxBarItemAddEditor);
|
|
USEFORMNS("dxBarNameEd.pas", Dxbarnameed, dxBarNameEd);
|
|
USEFORMNS("dxBarPopupMenuEd.pas", Dxbarpopupmenued, dxBarSubMenuEditor);
|
|
USEFORMNS("dxBarAddGroupItemsEd.pas", DxBarAddGroupItemsEd, frmAddGroupItems);
|
|
USEUNIT("dxBarCommon.pas");
|
|
USEUNIT("dxBar.pas");
|
|
USEUNIT("dxBarStrs.pas");
|
|
USEUNIT("dxStatusBar.pas");
|
|
USEUNIT("dxBarSkinConsts.pas");
|
|
USEUNIT("dxBarAccessibility.pas");
|
|
USEUNIT("dxBarSkin.pas");
|
|
//---------------------------------------------------------------------------
|
|
#pragma package(smart_init)
|
|
//---------------------------------------------------------------------------
|
|
// Package source.
|
|
//---------------------------------------------------------------------------
|
|
int WINAPI DllEntryPoint(HINSTANCE hinst, unsigned long reason, void*)
|
|
{
|
|
return 1;
|
|
}
|
|
//---------------------------------------------------------------------------
|