winrt::handle 구조체(C++/WinRT)
Windows 핸들 개체를 나타냅니다. winrt::handle은 winrt::handle_type winrt::handle_traits<> 대한 형식 별칭이므로 winrt::handle_type 구조체 템플릿 항목을 참조하여 winrt::handle에 사용할 수 있는 함수 및 연산자를 알아보세요.
구문
struct handle_traits {};
using handle = handle_type<handle_traits>;
예제
winrt::handle h{ ::CreateEvent(nullptr, false, false, nullptr) };
winrt::check_bool(bool{ h });
winrt::check_bool(::SetEvent(h.get()));
요구 사항
지원되는 최소 SDK: Windows SDK 버전 10.0.17134.0(Windows 10, 버전 1803)
네임스페이스: winrt
헤더: %WindowsSdkDir%IncludeWindowsTargetPlatformVersion<>\cppwinrt\winrt\base.h(기본적으로 포함)