mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
673 B
35 lines
673 B
/*
|
|
This file was derived from the libwww code, version 2.15, from CERN.
|
|
A number of modifications have been made by Spyglass.
|
|
|
|
[email protected]
|
|
*/
|
|
|
|
/* Network News Transfer protocol module for the WWW library
|
|
HTNEWS
|
|
|
|
*/
|
|
/* History:
|
|
** 26 Sep 90 Written TBL in Objective-C
|
|
** 29 Nov 91 Downgraded to C, for portable implementation.
|
|
*/
|
|
|
|
#ifndef HTNEWS_H
|
|
#define HTNEWS_H
|
|
|
|
#ifndef _GIBRALTAR
|
|
|
|
GLOBALREF HTProtocol HTNews;
|
|
|
|
extern void HTSetNewsHost(CONST char *value);
|
|
extern CONST char *HTGetNewsHost(void);
|
|
extern char *HTNewsHost;
|
|
|
|
#endif /* !_GIBRALTAR */
|
|
|
|
#endif /* HTNEWS_H */
|
|
|
|
|
|
/*
|
|
|
|
tbl */
|