| 1 |
/* |
| 2 |
* Copyright (C) 1994-1998 T. Teranishi |
| 3 |
* (C) 2007- TeraTerm Project |
| 4 |
* All rights reserved. |
| 5 |
* |
| 6 |
* Redistribution and use in source and binary forms, with or without |
| 7 |
* modification, are permitted provided that the following conditions |
| 8 |
* are met: |
| 9 |
* |
| 10 |
* 1. Redistributions of source code must retain the above copyright |
| 11 |
* notice, this list of conditions and the following disclaimer. |
| 12 |
* 2. Redistributions in binary form must reproduce the above copyright |
| 13 |
* notice, this list of conditions and the following disclaimer in the |
| 14 |
* documentation and/or other materials provided with the distribution. |
| 15 |
* 3. The name of the author may not be used to endorse or promote products |
| 16 |
* derived from this software without specific prior written permission. |
| 17 |
* |
| 18 |
* THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR |
| 19 |
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 20 |
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
| 21 |
* IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 22 |
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 23 |
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 24 |
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 25 |
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 26 |
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 27 |
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 28 |
*/ |
| 29 |
|
| 30 |
#pragma once |
| 31 |
|
| 32 |
/* TERATERM.EXE, file transfer routines */ |
| 33 |
#ifdef __cplusplus |
| 34 |
extern "C" { |
| 35 |
#endif |
| 36 |
|
| 37 |
// filesys.cpp |
| 38 |
BOOL IsSendVarNULL(void); |
| 39 |
BOOL FileSnedIsSending(void); |
| 40 |
BOOL FileSendStart(const wchar_t *filename, int binary); |
| 41 |
void FileSend(void); |
| 42 |
void FileSendEnd(void); |
| 43 |
void FileSendPause(BOOL Pause); |
| 44 |
|
| 45 |
// filesys_proto.cpp |
| 46 |
BOOL ProtoGetProtoFlag(void); |
| 47 |
BOOL IsFileVarNULL(void); |
| 48 |
void ProtoEnd(void); |
| 49 |
int ProtoDlgParse(void); |
| 50 |
void ProtoDlgTimeOut(void); |
| 51 |
void ProtoDlgCancel(void); |
| 52 |
BOOL KermitStartSend(const wchar_t *filename); |
| 53 |
BOOL KermitGet(const wchar_t *filename); |
| 54 |
BOOL KermitStartRecive(BOOL macro); |
| 55 |
BOOL KermitFinish(BOOL macro); |
| 56 |
BOOL XMODEMStartReceive(const wchar_t *fiename, WORD ParamBinaryFlag, WORD ParamXmodemOpt); |
| 57 |
BOOL XMODEMStartSend(const wchar_t *fiename, WORD ParamXmodemOpt); |
| 58 |
BOOL YMODEMStartReceive(BOOL macro); |
| 59 |
BOOL YMODEMStartSend(const wchar_t *fiename); |
| 60 |
BOOL ZMODEMStartReceive(BOOL macro, BOOL autostart); |
| 61 |
BOOL ZMODEMStartSend(const wchar_t *fiename, WORD ParamBinaryFlag, BOOL autostart); |
| 62 |
BOOL BPStartSend(const wchar_t *filename); |
| 63 |
BOOL BPStartReceive(BOOL macro, BOOL autostart); |
| 64 |
BOOL QVStartReceive(BOOL macro); |
| 65 |
BOOL QVStartSend(const wchar_t *filename); |
| 66 |
|
| 67 |
#ifdef __cplusplus |
| 68 |
} |
| 69 |
#endif |
| 70 |
|
| 71 |
#include "filesys_log.h" |