Skip to content

Latest commit

 

History

History
47 lines (39 loc) · 1.09 KB

File metadata and controls

47 lines (39 loc) · 1.09 KB
description title ms.date ms.topic dev_langs helpviewer_keywords author ms.author manager ms.subservice
Describes the variety of user-defined type (UDT).
UdtKind
11/04/2016
reference
C++
UdtKind enumeration
mikejo5000
mikejo
mijacobs
debug-diagnostics

UdtKind

Describes the variety of user-defined type (UDT).

Syntax

enum UdtKind {
    UdtStruct,
    UdtClass,
    UdtUnion,
    UdtInterface
};

Elements

Element Description
UdtStruct UDT is a structure.
UdtClass UDT is a class.
UdtUnion UDT is a union.
UdtInterface UDT is an interface.

Remarks

The values in this enumeration are returned by the IDiaSymbol::get_udtKind method.

Requirements

Header: cvconst.h

See also