Develop and Download Open Source Software

Browse Subversion Repository

Annotation of /branches/ttcomtester/teraterm/teraterm/ttfileio.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 6801 - (hide annotations) (download) (as text)
Tue Jun 13 10:30:12 2017 UTC (6 years, 9 months ago) by doda
Original Path: trunk/teraterm/teraterm/ttfileio.h
File MIME type: text/x-chdr
File size: 885 byte(s)
eliminate FAR keyword.
1 maya 3227 /* Tera Term
2     Copyright(C) 1994-1998 T. Teranishi
3     All rights reserved. */
4    
5     /* TERATERM.EXE, Serial/File interface */
6     #ifdef __cplusplus
7     extern "C" {
8     #endif
9    
10 doda 6801 typedef BOOL (PASCAL *TReadFile)
11 maya 3227 (HANDLE FHandle, LPVOID Buff, DWORD ReadSize, LPDWORD ReadBytes,
12     LPOVERLAPPED ReadOverLap);
13 doda 6801 typedef BOOL (PASCAL *TWriteFile)
14 maya 3227 (HANDLE FHandle, LPCVOID Buff, DWORD WriteSize, LPDWORD WriteBytes,
15     LPOVERLAPPED WriteOverLap);
16 doda 6801 typedef HANDLE (PASCAL *TCreateFile)
17 maya 3227 (LPCTSTR FName, DWORD AcMode, DWORD ShMode, LPSECURITY_ATTRIBUTES SecAttr,
18     DWORD CreateDisposition, DWORD FileAttr, HANDLE Template);
19 doda 6801 typedef BOOL (PASCAL *TCloseFile)
20 maya 3227 (HANDLE FHandle);
21    
22     extern TReadFile PReadFile;
23     extern TWriteFile PWriteFile;
24     extern TCreateFile PCreateFile;
25     extern TCloseFile PCloseFile;
26    
27     /* proto types */
28     void InitFileIO(int ConnType);
29    
30     #ifdef __cplusplus
31     }
32     #endif

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26