Setup.h 1.7 KB

12345678910111213141516171819202122232425262728293031323334
  1. //---------------------------------------------------------------------------
  2. #ifndef SetupH
  3. #define SetupH
  4. //---------------------------------------------------------------------------
  5. #include <Interface.h>
  6. #include <WinConfiguration.h>
  7. //---------------------------------------------------------------------------
  8. void __fastcall SetupInitialize();
  9. void __fastcall AddSearchPath(const UnicodeString Path);
  10. void __fastcall RemoveSearchPath(const UnicodeString Path);
  11. void __fastcall GetUpdatesMessage(UnicodeString & Message, bool & New, TQueryType & Type, bool Force);
  12. bool __fastcall CheckForUpdates(bool CachedResults);
  13. bool __fastcall QueryUpdates(TUpdatesConfiguration & Updates);
  14. UnicodeString __fastcall FormatUpdatesMessage(UnicodeString Message);
  15. UnicodeString __fastcall GetUsageData();
  16. UnicodeString __fastcall GetEnableAutomaticUpdatesUrl();
  17. void __fastcall EnableAutomaticUpdates();
  18. void __fastcall RegisterForDefaultProtocols();
  19. void __fastcall UnregisterForProtocols();
  20. void __fastcall LaunchAdvancedAssociationUI();
  21. void __fastcall TemporaryDirectoryCleanup();
  22. void __fastcall StartUpdateThread(TThreadMethod OnUpdatesChecked);
  23. void __fastcall StopUpdateThread();
  24. UnicodeString __fastcall CampaignUrl(UnicodeString URL);
  25. void __fastcall UpdateJumpList(TStrings * SessionNames, TStrings * WorkspaceNames);
  26. bool __fastcall AnyOtherInstanceOfSelf();
  27. bool __fastcall IsInstalled();
  28. UnicodeString __fastcall ProgramUrl(UnicodeString URL);
  29. void __fastcall AutoShowNewTip();
  30. void __fastcall ShowTips();
  31. UnicodeString __fastcall FirstUnshownTip();
  32. void __fastcall TipsUpdateStaticUsage();
  33. //---------------------------------------------------------------------------
  34. #endif