1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-28 03:06:20 -04:00
elinks/src/protocol/smb/smb.h

26 lines
355 B
C
Raw Normal View History

#ifndef EL__PROTOCOL_SMB_SMB_H
#define EL__PROTOCOL_SMB_SMB_H
#include "main/module.h"
#include "protocol/protocol.h"
#ifdef __cplusplus
extern "C" {
#endif
extern struct module smb_protocol_module;
#ifdef CONFIG_SMB
extern protocol_handler_T smb_protocol_handler;
#else
#define smb_protocol_handler NULL
#endif
#ifdef __cplusplus
}
#endif
#endif