Setup.h 876 B

1234567891011121314151617
  1. //---------------------------------------------------------------------------
  2. #ifndef SetupH
  3. #define SetupH
  4. //---------------------------------------------------------------------------
  5. void __fastcall AddSearchPath(const AnsiString Path);
  6. void __fastcall RemoveSearchPath(const AnsiString Path);
  7. void __fastcall GetUpdatesMessage(AnsiString & Message, bool & New, TQueryType & Type, bool Force);
  8. void __fastcall CheckForUpdates(bool CachedResults);
  9. void __fastcall RegisterAsUrlHandler();
  10. void __fastcall TemporaryDirectoryCleanup();
  11. int __fastcall CalculateCompoundVersion(int MajorVer,
  12. int MinorVer, int Release, int Build);
  13. int __fastcall CurrentCompoundVersion();
  14. void __fastcall StartUpdateThread(TThreadMethod OnUpdatesChecked);
  15. void __fastcall StopUpdateThread();
  16. //---------------------------------------------------------------------------
  17. #endif