mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05:00
0fea79cc8f
Likely some new bugs were introduced by this change. The long term goal is clean compilation by g++.
22 lines
380 B
C
22 lines
380 B
C
#ifndef EL__PROTOCOL_USER_H
|
|
#define EL__PROTOCOL_USER_H
|
|
|
|
#include "main/module.h"
|
|
#include "protocol/protocol.h"
|
|
#include "terminal/terminal.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern struct module user_protocol_module;
|
|
extern protocol_external_handler_T user_protocol_handler;
|
|
|
|
char *get_user_program(struct terminal *, char *, int);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|