mirror of
https://github.com/rkd77/elinks.git
synced 2025-10-21 19:54:04 -04:00
Likely some new bugs were introduced by this change. The long term goal is clean compilation by g++.
24 lines
408 B
C
24 lines
408 B
C
|
|
#ifndef EL__PROTOCOL_NNTP_NNTP_H
|
|
#define EL__PROTOCOL_NNTP_NNTP_H
|
|
|
|
#include "main/module.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* Returns the server that should be used when expanding news: URIs */
|
|
char *get_nntp_server(void);
|
|
|
|
/* Returns the entries the user wants to have shown */
|
|
char *get_nntp_header_entries(void);
|
|
|
|
extern struct module nntp_protocol_module;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|