- more ftp tileset bugfixes

This commit is contained in:
Mark Vejvoda
2011-01-01 03:12:28 +00:00
parent 7088f60425
commit 8eeb0b550c
6 changed files with 92 additions and 42 deletions

View File

@@ -32,9 +32,14 @@ enum FTP_Client_ResultType {
ftp_crt_ABORTED = 2
};
enum FTP_Client_CallbackType {
ftp_cct_Map = 0,
ftp_cct_Tileset = 1
};
class FTPClientCallbackInterface {
public:
virtual void FTPClient_CallbackEvent(string mapFilename, FTP_Client_ResultType result) = 0;
virtual void FTPClient_CallbackEvent(string itemName, FTP_Client_CallbackType type, FTP_Client_ResultType result) = 0;
};
class FTPClientThread : public BaseThread