AppCentre.dpr 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. library AppCentre;
  2. { Important note about DLL memory management: ShareMem must be the
  3. first unit in your library's USES clause AND your project's (select
  4. Project-View Source) USES clause if your DLL exports any procedures or
  5. functions that pass strings as parameters or function results. This
  6. applies to all strings passed to and from your DLL--even those that
  7. are nested in records and classes. ShareMem is the interface unit to
  8. the BORLNDMM.DLL shared memory manager, which must be deployed along
  9. with your DLL. To avoid using BORLNDMM.DLL, pass string information
  10. using PChar or ShortString parameters. }
  11. uses
  12. FastMM4,
  13. SysUtils,
  14. Classes,
  15. mybean.core.beanFactory,
  16. AppCentreForm in 'AppCentreForm.pas' {AppCentreFrm},
  17. InterfaceAppCentre in 'InterfaceAppCentre.pas',
  18. UAppCentre in 'UAppCentre.pas',
  19. AppCentreImport in 'AppCentreImport.pas',
  20. XXTEA in 'XXTEA.pas',
  21. AppsLayout in 'AppsLayout.pas',
  22. IdHttpEx in 'IdHttpEx.pas',
  23. FlatForm in 'FlatForm.pas',
  24. UAppCentreConfig in 'UAppCentreConfig.pas',
  25. UIHandler in '..\Interfaces\UIHandler.pas',
  26. IconRequest in 'IconRequest.pas',
  27. MessageCentre in 'MessageCentre.pas' {MessageCentreForm},
  28. ChromeDebug in 'ChromeDebug.pas' {ChromeDebugForm},
  29. UApp in 'UApp.pas';
  30. {$R *.res}
  31. begin
  32. BeanFactory.RegisterBean(APPCENTRE_BEANNAME, TAppCentre);
  33. BeanFactory.RegisterBean(APPCENTRE_CONFIG, TAppCentreConfig);
  34. BeanFactory.RegisterBean(APPCENTRE_UIHANDLER, TUIHandler);
  35. end.