ms_union
캡슐화되지 않은 공용 구조체의 네트워크 데이터 표현 맞춤을 제어합니다.
구문
[ms_union]
설명
ms_union C++ 특성에는 ms_union MIDL 특성과 동일한 기능이 있습니다.
예시
다음 코드는 ms_union 배치를 보여줍니다.
// cpp_attr_ref_ms_union.cpp
// compile with: /LD
#include <unknwn.h>
[object, ms_union, uuid("00000000-0000-0000-0000-000000000001")]
__interface IFireTabCtrl {
HRESULT DisplayString([in, string] char * p1);
};
[export, switch_type(short)] union _WILLIE_UNION_TYPE {
[case(24)]
float fMays;
[case(25)]
double dMcCovey;
[default]
int x;
};
[public] typedef _WILLIE_UNION_TYPE WILLIE_UNION_TYPE;
[module(name="ATLFIRELib")];
요구 사항
특성 컨텍스트 | 값 |
---|---|
적용 대상: | 캡슐화되지 않은 공용 구조체 |
반복 가능 | 아니요 |
필수 특성 | None |
잘못된 특성 | dispinterface |
자세한 내용은 특성 컨텍스트를 참조하세요.