Works a bit more
[erwise] / Cl / WWWLibrary / HTFTP.h
1 /*                      FTP access functions            HTFTP.h
2 **                      ====================
3 */
4
5 /*      Retrieve File from Server
6 **      -------------------------
7 **
8 ** On exit,
9 **      returns         Socket number for file if good.
10 **                      <0 if bad.
11 */
12 extern int HTFTP_open_file_read
13 PARAMS
14 ((
15   CONST char * name,
16   HTParentAnchor * anchor
17 ));
18
19 /*      Close socket opened for reading a file, and get final message
20 **      -------------------------------------------------------------
21 **
22 */
23 extern int HTFTP_close_file
24 PARAMS ((int soc));
25
26
27 /*      Return Host Name
28 **      ----------------
29 */
30 extern CONST char * HTHostName
31 NOPARAMS;