- added code for ftp client to handle failures and menu exit more gracefully

This commit is contained in:
Mark Vejvoda
2010-12-31 21:02:06 +00:00
parent 1f29685803
commit 7e55a545c4
3 changed files with 25 additions and 110 deletions

View File

@@ -28,7 +28,8 @@ namespace Shared { namespace PlatformCommon {
enum FTP_Client_ResultType {
ftp_crt_SUCCESS = 0,
ftp_crt_FAIL = 1
ftp_crt_FAIL = 1,
ftp_crt_ABORTED = 2
};
class FTPClientCallbackInterface {