Changed flags for reading from "r" to "rb", for writing from "w" to "wb"
in the FileReader and FileWriter.
Added FileTransfer::procFLRUpload(...) method.
Now It's possible the upload files and folders.
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@423 3789f03b-4d11-0410-bbf8-ca57d06f2519
diff --git a/rfb/FileManager.h b/rfb/FileManager.h
index 609f281..a673f4d 100644
--- a/rfb/FileManager.h
+++ b/rfb/FileManager.h
@@ -35,6 +35,8 @@
bool create(char *pFilename);
bool close();
+ bool isCreated();
+
protected:
FILE *m_pFile;
char m_szMode[4];