1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-27 02:56:18 -04:00
elinks/src/protocol/data.h

21 lines
282 B
C
Raw Permalink Normal View History

#ifndef EL__PROTOCOL_DATA_H
#define EL__PROTOCOL_DATA_H
#include "protocol/protocol.h"
#ifdef __cplusplus
extern "C" {
#endif
#ifdef CONFIG_DATA
extern protocol_handler_T data_protocol_handler;
#else
#define data_protocol_handler NULL
#endif
#ifdef __cplusplus
}
#endif
#endif