mirror of
https://github.com/libevent/libevent.git
synced 2025-01-09 00:56:20 +08:00
23 lines
300 B
C
23 lines
300 B
C
|
#ifndef EVDNS_INTERNAL_H_INCLUDED_
|
||
|
#define EVDNS_INTERNAL_H_INCLUDED_
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
#include "event2/event_struct.h"
|
||
|
|
||
|
#ifdef _WIN32
|
||
|
|
||
|
EVENT2_EXPORT_SYMBOL
|
||
|
int load_nameservers_with_getadaptersaddresses(struct evdns_base *base);
|
||
|
|
||
|
#endif
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|
||
|
|