DNS_RECORD_FLAGS structure (windns.h)

The DNS_RECORD_FLAGS structure is used to set flags for use in the DNS_RECORD structure.

Syntax

typedef struct _DnsRecordFlags {
  DWORD Section : 2;
  DWORD Delete : 1;
  DWORD CharSet : 2;
  DWORD Unused : 3;
  DWORD Reserved : 24;
} DNS_RECORD_FLAGS;

Members

Section

A DNS_SECTION value that specifies the section of interest returned from the DnsQuery function call.

Delete

Reserved. Do not use.

CharSet

A DNS_CHARSET value that specifies the character set used in the associated function call.

Unused

Reserved. Do not use.

Reserved

Reserved. Do not use.

Requirements

Requirement Value
Minimum supported client Windows 2000 Professional [desktop apps only]
Minimum supported server Windows 2000 Server [desktop apps only]
Header windns.h

See also

DNS_RECORD