Dennis Syrovatsky | e296b47 | 2005-11-17 04:23:28 +0000 | [diff] [blame] | 1 | /* Copyright (C) 2005 TightVNC Team. All Rights Reserved. |
| 2 | * |
| 3 | * This is free software; you can redistribute it and/or modify |
| 4 | * it under the terms of the GNU General Public License as published by |
| 5 | * the Free Software Foundation; either version 2 of the License, or |
| 6 | * (at your option) any later version. |
| 7 | * |
| 8 | * This software is distributed in the hope that it will be useful, |
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 11 | * GNU General Public License for more details. |
| 12 | * |
| 13 | * You should have received a copy of the GNU General Public License |
| 14 | * along with this software; if not, write to the Free Software |
| 15 | * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
| 16 | * USA. |
| 17 | * |
| 18 | * TightVNC distribution homepage on the Web: http://www.tightvnc.com/ |
| 19 | * |
| 20 | */ |
| 21 | |
| 22 | // -=- SFTMsgWriter.cxx |
| 23 | |
| 24 | #include <winvnc/SFTMsgWriter.h> |
| 25 | |
| 26 | using namespace winvnc; |
| 27 | |
| 28 | SFTMsgWriter::SFTMsgWriter() |
| 29 | { |
| 30 | } |
| 31 | |
| 32 | SFTMsgWriter::~SFTMsgWriter() |
| 33 | { |
| 34 | } |
Dennis Syrovatsky | 6c3013f | 2005-11-17 04:38:54 +0000 | [diff] [blame] | 35 | |
| 36 | bool |
Dennis Syrovatsky | 5d25b19 | 2005-11-17 05:10:23 +0000 | [diff] [blame] | 37 | SFTMsgWriter::writeBytes(unsigned int dataSize, void *pData) |
| 38 | { |
| 39 | return false; |
| 40 | } |
| 41 | |
| 42 | bool |
Dennis Syrovatsky | 6c3013f | 2005-11-17 04:38:54 +0000 | [diff] [blame] | 43 | SFTMsgWriter::writeFileListData(unsigned char flags, rfb::FileInfo *pFileInfo) |
| 44 | { |
| 45 | return false; |
| 46 | } |
| 47 | |
| 48 | bool |
| 49 | SFTMsgWriter::writeFileDownloadData(unsigned short dataSize, void *pData) |
| 50 | { |
| 51 | return false; |
| 52 | } |
| 53 | |
| 54 | bool |
| 55 | SFTMsgWriter::writeFileDownloadData(unsigned int modTime) |
| 56 | { |
| 57 | return false; |
| 58 | } |
| 59 | |
| 60 | bool |
| 61 | SFTMsgWriter::writeFileUploadCancel(unsigned short reasonLen, char *pReason) |
| 62 | { |
| 63 | return false; |
| 64 | } |
| 65 | |
| 66 | bool |
| 67 | SFTMsgWriter::writeFileDownloadFailed(unsigned short reasonLen, char *pReason) |
| 68 | { |
| 69 | return false; |
| 70 | } |
| 71 | |
| 72 | bool |
| 73 | SFTMsgWriter::writeFileDirSizeData(DWORD64 dw64DirSize) |
| 74 | { |
| 75 | return false; |
| 76 | } |
| 77 | |
| 78 | bool |
| 79 | SFTMsgWriter::writeFileLastRqstFailed(unsigned char lastRequest, |
| 80 | unsigned short reasonLen, |
| 81 | char *pReason) |
| 82 | { |
| 83 | return false; |
| 84 | } |