Setup.h 840 B

12345678910111213141516
  1. //---------------------------------------------------------------------------
  2. #ifndef SetupH
  3. #define SetupH
  4. //---------------------------------------------------------------------------
  5. #include <Interface.h>
  6. //---------------------------------------------------------------------------
  7. void __fastcall AddSearchPath(const AnsiString Path);
  8. void __fastcall RemoveSearchPath(const AnsiString Path);
  9. void __fastcall GetUpdatesMessage(AnsiString & Message, bool & New, TQueryType & Type, bool Force);
  10. void __fastcall CheckForUpdates(bool CachedResults);
  11. void __fastcall RegisterAsUrlHandler();
  12. void __fastcall TemporaryDirectoryCleanup();
  13. void __fastcall StartUpdateThread(TThreadMethod OnUpdatesChecked);
  14. void __fastcall StopUpdateThread();
  15. //---------------------------------------------------------------------------
  16. #endif