PuttyIntf.h 979 B

12345678910111213141516171819202122232425
  1. //---------------------------------------------------------------------------
  2. #ifndef PuttyIntfH
  3. #define PuttyIntfH
  4. //---------------------------------------------------------------------------
  5. void __fastcall PuttyInitialize();
  6. void __fastcall PuttyFinalize();
  7. //---------------------------------------------------------------------------
  8. void __fastcall DontSaveRandomSeed();
  9. //---------------------------------------------------------------------------
  10. int __fastcall ProtocolByName(const AnsiString & Name);
  11. AnsiString __fastcall ProtocolName(int Protocol);
  12. //---------------------------------------------------------------------------
  13. #include "PuttyTools.h"
  14. //---------------------------------------------------------------------------
  15. #define MPEXT
  16. extern "C"
  17. {
  18. #include <putty.h>
  19. #include <puttyexp.h>
  20. #include <ssh.h>
  21. #include <proxy.h>
  22. #include <storage.h>
  23. }
  24. //---------------------------------------------------------------------------
  25. #endif