mirror of
https://github.com/NishiOwO/tkwww.git
synced 2025-04-21 16:54:40 +00:00
28 lines
604 B
C
28 lines
604 B
C
/* 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
|
|
|
|
#include "HTAccess.h"
|
|
#include "HTAnchor.h"
|
|
|
|
GLOBALREF HTProtocol HTNews;
|
|
|
|
extern void HTSetNewsHost PARAMS((CONST char *value));
|
|
extern CONST char * HTGetNewsHost NOPARAMS;
|
|
extern char * HTNewsHost;
|
|
|
|
#endif /* HTNEWS_H */
|
|
|
|
|
|
/*
|
|
|
|
tbl */
|