//
//  xdns.h
//  psdemux
//
//  Created by Luo Han on 15/12/11.
//  Copyright © 2015年 PowerInfo. All rights reserved.
//

#ifndef xdns_h
#define xdns_h

typedef void (*XDNS_LOG_FUNC)(int32_t level, const char *str, ...);

void xdns_setlogfunc(XDNS_LOG_FUNC logfunc);

int xdns_init();

/**
 * @return 0 for success, -1 for failed, -2 for timeout
 *
 */
int xdns_gethostbyname(const char *name, DWORD *ip, void *p, int timeout_ms);

int xdns_release();

#endif /* xdns_h */
