2
0
mirror of https://github.com/xcat2/xNBA.git synced 2024-12-15 15:51:44 +00:00
xNBA/src/include/resolv.h

17 lines
307 B
C
Raw Normal View History

2005-04-29 13:26:31 +00:00
#ifndef RESOLV_H
#define RESOLV_H
#include "in.h"
#include "tables.h"
struct resolver {
2005-04-30 14:41:37 +00:00
const char *name;
2005-04-29 13:26:31 +00:00
int ( * resolv ) ( struct in_addr *address, const char *name );
};
#define __resolver __table(resolver,01)
extern int resolv ( struct in_addr *address, const char *name );
#endif /* RESOLV_H */