]> source.dussan.org Git - tigervnc.git/commitdiff
The SFileTransfer, SFTMsgReader, SFTMsgWriter classes was removed
authorDennis Syrovatsky <dennis@tightvnc.com>
Sun, 18 Dec 2005 13:14:50 +0000 (13:14 +0000)
committerDennis Syrovatsky <dennis@tightvnc.com>
Sun, 18 Dec 2005 13:14:50 +0000 (13:14 +0000)
from winvnc project.

git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@461 3789f03b-4d11-0410-bbf8-ca57d06f2519

winvnc/SFTMsgReader.cxx [deleted file]
winvnc/SFTMsgReader.h [deleted file]
winvnc/SFTMsgWriter.cxx [deleted file]
winvnc/SFTMsgWriter.h [deleted file]
winvnc/SFileTransfer.cxx [deleted file]
winvnc/SFileTransfer.h [deleted file]
winvnc/winvnc.dsp

diff --git a/winvnc/SFTMsgReader.cxx b/winvnc/SFTMsgReader.cxx
deleted file mode 100644 (file)
index 95aca3d..0000000
+++ /dev/null
@@ -1,108 +0,0 @@
-/* Copyright (C) 2005 TightVNC Team.  All Rights Reserved.
- *    
- * This is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- * 
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- * 
- * You should have received a copy of the GNU General Public License
- * along with this software; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,
- * USA.
- *
- * TightVNC distribution homepage on the Web: http://www.tightvnc.com/
- *
- */
-
-// -=- SFTMsgReader.cxx
-
-#include <winvnc/SFTMsgReader.h>
-
-using namespace winvnc;
-
-SFTMsgReader::SFTMsgReader()
-{
-}
-
-SFTMsgReader::~SFTMsgReader()
-{
-}
-
-bool 
-SFTMsgReader::readBytes(unsigned int dataSize, void *pData)
-{
-  return false;
-}
-
-int 
-SFTMsgReader::readFileListRqst(unsigned char *pFlags, char *pDirName, bool bDirOnly)
-{
-  return 0;
-}
-
-int 
-SFTMsgReader::readFileDownloadCancel(char *pReason)
-{
-  return 0;
-}
-
-int 
-SFTMsgReader::readFileDownloadRqst(char *pFilename, unsigned int *pPosition)
-{
-  return 0;
-}
-
-int 
-SFTMsgReader::readFileUploadData(char *pData)
-{
-  return 0;
-}
-
-int 
-SFTMsgReader::readFileUploadData(unsigned int *pModTime)
-{
-  return 0;
-}
-
-int 
-SFTMsgReader::readFileUploadFailed(char *pReason)
-{
-  return 0;
-}
-
-int 
-SFTMsgReader::readFileUploadRqst(char *pFilename, unsigned int *pPosition)
-{
-  return 0;
-}
-
-int 
-SFTMsgReader::readFileCreateDirRqst(char *pDirName)
-{
-  return 0;
-}
-
-int 
-SFTMsgReader::readFileDirSizeRqst(char *pDirName)
-{
-  return 0;
-}
-
-int 
-SFTMsgReader::readFileRenameRqst(unsigned short *pOldNameLen, 
-                                 unsigned short *pNewNameLen,
-                                 char *pOldName, char *pNewName)
-{
-  return 0;
-}
-
-int 
-SFTMsgReader::readFileDeleteRqst(char *pName)
-{
-  return 0;
-}
diff --git a/winvnc/SFTMsgReader.h b/winvnc/SFTMsgReader.h
deleted file mode 100644 (file)
index 07fb49f..0000000
+++ /dev/null
@@ -1,58 +0,0 @@
-/* Copyright (C) 2005 TightVNC Team.  All Rights Reserved.
- *    
- * This is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- * 
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- * 
- * You should have received a copy of the GNU General Public License
- * along with this software; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,
- * USA.
- *
- * TightVNC distribution homepage on the Web: http://www.tightvnc.com/
- *
- */
-
-// -=- SFTMsgReader.h
-
-#ifndef __RFB_WIN32_SFTMSGREADER_H__
-#define __RFB_WIN32_SFTMSGREADER_H__
-
-namespace winvnc {
-  class SFTMsgReader
-  {
-  public:
-    SFTMsgReader();
-    ~SFTMsgReader();
-    
-    int readFileListRqst(unsigned char *pFlags, char *pDirName, bool bDirOnly);
-    
-    int readFileDownloadCancel(char *pReason);
-    int readFileDownloadRqst(char *pFilename, unsigned int *pPosition);
-    
-    int readFileUploadData(char *pData);
-    int readFileUploadData(unsigned int *pModTime);
-
-    int readFileUploadFailed(char *pReason);
-    int readFileUploadRqst(char *pFilename, unsigned int *pPosition);
-    
-    int readFileCreateDirRqst(char *pDirName);
-    int readFileDirSizeRqst(char *pDirName);
-    
-    int readFileRenameRqst(unsigned short *pOldNameLen, unsigned short *pNewNameLen,
-                           char *pOldName, char *pNewName);
-
-    int readFileDeleteRqst(char *pName);
-
-  private:
-    bool readBytes(unsigned int dataSize, void *pData);
-  };
-}
-
-#endif // __RFB_WIN32_SFTMSGREADER_H__
diff --git a/winvnc/SFTMsgWriter.cxx b/winvnc/SFTMsgWriter.cxx
deleted file mode 100644 (file)
index 0ade9ea..0000000
+++ /dev/null
@@ -1,84 +0,0 @@
-/* Copyright (C) 2005 TightVNC Team.  All Rights Reserved.
- *    
- * This is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- * 
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- * 
- * You should have received a copy of the GNU General Public License
- * along with this software; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,
- * USA.
- *
- * TightVNC distribution homepage on the Web: http://www.tightvnc.com/
- *
- */
-
-// -=- SFTMsgWriter.cxx
-
-#include <winvnc/SFTMsgWriter.h>
-
-using namespace winvnc;
-
-SFTMsgWriter::SFTMsgWriter()
-{
-}
-
-SFTMsgWriter::~SFTMsgWriter()
-{
-}
-
-bool 
-SFTMsgWriter::writeBytes(unsigned int dataSize, void *pData)
-{
-  return false;
-}
-
-bool 
-SFTMsgWriter::writeFileListData(unsigned char flags, rfb::FileInfo *pFileInfo)
-{
-  return false;
-}
-
-bool 
-SFTMsgWriter::writeFileDownloadData(unsigned short dataSize, void *pData)
-{
-  return false;
-}
-
-bool 
-SFTMsgWriter::writeFileDownloadData(unsigned int modTime)
-{
-  return false;
-}
-
-bool 
-SFTMsgWriter::writeFileUploadCancel(unsigned short reasonLen, char *pReason)
-{
-  return false;
-}
-
-bool 
-SFTMsgWriter::writeFileDownloadFailed(unsigned short reasonLen, char *pReason)
-{
-  return false;
-}
-
-bool 
-SFTMsgWriter::writeFileDirSizeData(DWORD64 dw64DirSize)
-{
-  return false;
-}
-
-bool 
-SFTMsgWriter::writeFileLastRqstFailed(unsigned char lastRequest, 
-                                      unsigned short reasonLen, 
-                                      char *pReason)
-{
-  return false;
-}
diff --git a/winvnc/SFTMsgWriter.h b/winvnc/SFTMsgWriter.h
deleted file mode 100644 (file)
index c19a867..0000000
+++ /dev/null
@@ -1,51 +0,0 @@
-/* Copyright (C) 2005 TightVNC Team.  All Rights Reserved.
- *    
- * This is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- * 
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- * 
- * You should have received a copy of the GNU General Public License
- * along with this software; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,
- * USA.
- *
- * TightVNC distribution homepage on the Web: http://www.tightvnc.com/
- *
- */
-
-// -=- SFTMsgWriter.h
-
-#ifndef __RFB_WIN32_SFTMSGWRITER_H__
-#define __RFB_WIN32_SFTMSGWRITER_H__
-
-#include <windows.h>
-#include <rfb/FileInfo.h>
-
-namespace winvnc {
-  class SFTMsgWriter
-  {
-  public:
-    SFTMsgWriter();
-    ~SFTMsgWriter();
-    
-    bool writeFileListData(unsigned char flags, rfb::FileInfo *pFileInfo);
-    bool writeFileDownloadData(unsigned short dataSize, void *pData);
-    bool writeFileDownloadData(unsigned int modTime);
-    bool writeFileUploadCancel(unsigned short reasonLen, char *pReason);
-    bool writeFileDownloadFailed(unsigned short reasonLen, char *pReason);
-    bool writeFileDirSizeData(DWORD64 dw64DirSize);
-    bool writeFileLastRqstFailed(unsigned char lastRequest, unsigned short reasonLen, 
-                                 char *pReason);
-
-  private:
-    bool writeBytes(unsigned int dataSize, void *pData);
-  };
-}
-
-#endif // __RFB_WIN32_SFTMSGWRITER_H__
diff --git a/winvnc/SFileTransfer.cxx b/winvnc/SFileTransfer.cxx
deleted file mode 100644 (file)
index 857c768..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-/* Copyright (C) 2005 TightVNC Team.  All Rights Reserved.
- *    
- * This is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- * 
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- * 
- * You should have received a copy of the GNU General Public License
- * along with this software; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,
- * USA.
- *
- * TightVNC distribution homepage on the Web: http://www.tightvnc.com/
- *
- */
-
-// -=- SFileTransfer.cxx
-
-#include <winvnc/SFileTransfer.h>
-
-using namespace winvnc;
-
-SFileTransfer::SFileTransfer()
-{
-}
-
-SFileTransfer::~SFileTransfer()
-{
-}
diff --git a/winvnc/SFileTransfer.h b/winvnc/SFileTransfer.h
deleted file mode 100644 (file)
index 4641226..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-/* Copyright (C) 2005 TightVNC Team.  All Rights Reserved.
- *    
- * This is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- * 
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- * 
- * You should have received a copy of the GNU General Public License
- * along with this software; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,
- * USA.
- *
- * TightVNC distribution homepage on the Web: http://www.tightvnc.com/
- *
- */
-
-// -=- SFileTransfer.h
-
-#ifndef __RFB_WIN32_SFILETRANSFER_H__
-#define __RFB_WIN32_SFILETRANSFER_H__
-
-namespace winvnc {
-  class SFileTransfer
-  {
-  public:
-    SFileTransfer();
-    ~SFileTransfer();
-  };
-}
-
-#endif // __RFB_WIN32_SFILETRANSFER_H__
index c554a33e8f7519ad5a27a074a1bf8cf1343eb065..911185143831a37aea7ff02a0bee6a55e0ecf884 100644 (file)
@@ -149,18 +149,6 @@ SOURCE=.\QueryConnectDialog.cxx
 # End Source File\r
 # Begin Source File\r
 \r
-SOURCE=.\SFileTransfer.cxx\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=.\SFTMsgReader.cxx\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=.\SFTMsgWriter.cxx\r
-# End Source File\r
-# Begin Source File\r
-\r
 SOURCE=.\STrayIcon.cxx\r
 # End Source File\r
 # Begin Source File\r
@@ -201,18 +189,6 @@ SOURCE=.\QueryConnectDialog.h
 # End Source File\r
 # Begin Source File\r
 \r
-SOURCE=.\SFileTransfer.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=.\SFTMsgReader.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=.\SFTMsgWriter.h\r
-# End Source File\r
-# Begin Source File\r
-\r
 SOURCE=.\STrayIcon.h\r
 # End Source File\r
 # Begin Source File\r