DNS_MX_DATA (Windows CE 5.0)

Send Feedback

This structure represents a DNS mail exchanger (MX) record.

typedef struct {  LPTSTR pNameExchange;  WORD wPreference;  WORD Pad;} DNS_MX_DATA, *PDNS_MX_DATA;

Members

  • pNameExchange
    [in] Pointer to a string representing the fully qualified domain name (FQDN) of the host willing to act as a mail exchange.
  • wPreference
    [in] Preference given to this resource record among others at the same owner. Lower values are preferred.
  • Pad
    [in] Reserved. Used to keep pointers DWORD aligned.

Remarks

This structure is used in conjunction with the DNS_RECORD structure to programmatically manage DNS entries.

Requirements

OS Versions: Windows CE 5.0 and later.
Header: Windns.h.

See Also

DNS Structures

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.