| 12345678910111213141516 | 
							- //---------------------------------------------------------------------------
 
- #ifndef FileZillaToolsH
 
- #define FileZillaToolsH
 
- //---------------------------------------------------------------------------
 
- #include <ctime>
 
- //---------------------------------------------------------------------------
 
- class CFileZillaTools
 
- {
 
- public:
 
-   virtual void PreserveDownloadFileTime(HANDLE Handle, void * UserData) = 0;
 
-   virtual bool GetFileModificationTimeInUtc(const wchar_t * FileName, struct tm & Time) = 0;
 
-   virtual wchar_t * LastSysErrorMessage() = 0;
 
-   virtual std::wstring GetClientString() = 0;
 
- };
 
- //---------------------------------------------------------------------------
 
- #endif // FileZillaToolsH
 
 
  |