| 12345678910111213141516171819202122232425262728293031323334 | 
							- //---------------------------------------------------------------------------
 
- #ifndef SetupH
 
- #define SetupH
 
- //---------------------------------------------------------------------------
 
- #include <Interface.h>
 
- #include <WinConfiguration.h>
 
- //---------------------------------------------------------------------------
 
- void __fastcall SetupInitialize();
 
- void __fastcall AddSearchPath(const UnicodeString Path);
 
- void __fastcall RemoveSearchPath(const UnicodeString Path);
 
- void __fastcall GetUpdatesMessage(UnicodeString & Message, bool & New, TQueryType & Type, bool Force);
 
- bool __fastcall CheckForUpdates(bool CachedResults);
 
- bool __fastcall QueryUpdates(TUpdatesConfiguration & Updates);
 
- UnicodeString __fastcall FormatUpdatesMessage(UnicodeString Message);
 
- UnicodeString __fastcall GetUsageData();
 
- UnicodeString __fastcall GetEnableAutomaticUpdatesUrl();
 
- void __fastcall EnableAutomaticUpdates();
 
- void __fastcall RegisterForDefaultProtocols();
 
- void __fastcall UnregisterForProtocols();
 
- void __fastcall LaunchAdvancedAssociationUI();
 
- void __fastcall TemporaryDirectoryCleanup();
 
- void __fastcall StartUpdateThread(TThreadMethod OnUpdatesChecked);
 
- void __fastcall StopUpdateThread();
 
- UnicodeString __fastcall CampaignUrl(UnicodeString URL);
 
- void __fastcall UpdateJumpList(TStrings * SessionNames, TStrings * WorkspaceNames);
 
- bool __fastcall AnyOtherInstanceOfSelf();
 
- bool __fastcall IsInstalled();
 
- UnicodeString __fastcall ProgramUrl(UnicodeString URL);
 
- void __fastcall AutoShowNewTip();
 
- void __fastcall ShowTips();
 
- UnicodeString __fastcall FirstUnshownTip();
 
- void __fastcall TipsUpdateStaticUsage();
 
- //---------------------------------------------------------------------------
 
- #endif
 
 
  |