mx.h
上传用户:xxcykj
上传日期:2007-01-04
资源大小:727k
文件大小:0k
源码类别:

Email客户端

开发平台:

Unix_Linux

  1. /* mx.h -- name-to-preference association for MX records */
  2. struct mxentry
  3. {
  4.     char *name;
  5.     int pref;
  6. };
  7. extern struct mxentry * getmxrecords(const char *);
  8. /* some versions of FreeBSD should declare this but don't */
  9. /* But only declare it if it isn't already */
  10. #ifndef h_errno
  11. extern int h_errno;
  12. #endif /* ndef h_errno */
  13. /* mx.h ends here */