#pragma once #include // short alias template using ComPtr = Microsoft::WRL::ComPtr; struct ComScope { ComScope() { HRESULT hr = CoInitializeEx(nullptr, COINIT_APARTMENTTHREADED | COINIT_DISABLE_OLE1DDE); (void)hr; } ~ComScope() { CoUninitialize(); } };