| 12345678910111213141516171819202122232425 | 
							- //---------------------------------------------------------------------------
 
- #ifndef PuttyIntfH
 
- #define PuttyIntfH
 
- //---------------------------------------------------------------------------
 
- void __fastcall PuttyInitialize();
 
- void __fastcall PuttyFinalize();
 
- //---------------------------------------------------------------------------
 
- void __fastcall DontSaveRandomSeed();
 
- //---------------------------------------------------------------------------
 
- #include "PuttyTools.h"
 
- //---------------------------------------------------------------------------
 
- #define MPEXT
 
- extern "C"
 
- {
 
- #include <putty.h>
 
- #include <puttyexp.h>
 
- #include <ssh.h>
 
- #include <proxy.h>
 
- #include <storage.h>
 
- // Defined in misc.h - Conflicts with std::min/max
 
- #undef min
 
- #undef max
 
- }
 
- //---------------------------------------------------------------------------
 
- #endif
 
 
  |