2005-09-15 09:58:31 -04:00
|
|
|
#ifndef EL__PROTOCOL_USER_H
|
|
|
|
#define EL__PROTOCOL_USER_H
|
|
|
|
|
|
|
|
#include "main/module.h"
|
|
|
|
#include "protocol/protocol.h"
|
|
|
|
#include "terminal/terminal.h"
|
|
|
|
|
2020-10-05 14:14:55 -04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2005-09-15 09:58:31 -04:00
|
|
|
extern struct module user_protocol_module;
|
|
|
|
extern protocol_external_handler_T user_protocol_handler;
|
|
|
|
|
2022-02-21 11:13:14 -05:00
|
|
|
char *get_user_program(struct terminal *, const char *, int);
|
2005-09-15 09:58:31 -04:00
|
|
|
|
2020-10-05 14:14:55 -04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2005-09-15 09:58:31 -04:00
|
|
|
#endif
|