Setup.h 1.0 KB

1234567891011121314151617181920
  1. //---------------------------------------------------------------------------
  2. #ifndef SetupH
  3. #define SetupH
  4. //---------------------------------------------------------------------------
  5. #include <Interface.h>
  6. //---------------------------------------------------------------------------
  7. void __fastcall SetupInitialize();
  8. void __fastcall AddSearchPath(const UnicodeString Path);
  9. void __fastcall RemoveSearchPath(const UnicodeString Path);
  10. void __fastcall GetUpdatesMessage(UnicodeString & Message, bool & New, TQueryType & Type, bool Force);
  11. void __fastcall CheckForUpdates(bool CachedResults);
  12. UnicodeString __fastcall GetUsageData();
  13. void __fastcall RegisterAsUrlHandler();
  14. void __fastcall TemporaryDirectoryCleanup();
  15. void __fastcall StartUpdateThread(TThreadMethod OnUpdatesChecked);
  16. void __fastcall StopUpdateThread();
  17. UnicodeString __fastcall CampaignUrl(UnicodeString URL);
  18. void __fastcall UpdateJumpList(TStrings * SessionNames);
  19. //---------------------------------------------------------------------------
  20. #endif