| 1234567891011121314151617181920212223242526272829303132333435363738 |
- //---------------------------------------------------------------------------
- #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);
- class THttp;
- THttp * __fastcall CreateHttp();
- 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 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();
- int __fastcall GetNetVersion();
- UnicodeString __fastcall GetNetVersionStr();
- UnicodeString __fastcall GetPowerShellVersionStr();
- //---------------------------------------------------------------------------
- #endif
|