We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a50c851 commit 9f73115Copy full SHA for 9f73115
src/shellextension/TypeLibHelper.cpp
@@ -61,7 +61,7 @@ HRESULT IsTypeLibRegisteredOnSystem(_In_ LPTLIBATTR pTLibAttr)
61
HRESULT hr;
62
63
// guid to string
64
- wchar_t szGUID[64] = { 0 };
+ wchar_t szGUID[64] = { 0 };
65
StringFromGUID2(pTLibAttr->guid, szGUID, 64);
66
67
// version to string
@@ -74,7 +74,9 @@ HRESULT IsTypeLibRegisteredOnSystem(_In_ LPTLIBATTR pTLibAttr)
74
const wchar_t * szSysKind = NULL;
75
switch ( pTLibAttr->syskind )
76
{
77
- //case SYS_WIN32: // not supported
+ case SYS_WIN32:
78
+ szSysKind = L"win32";
79
+ break;
80
case SYS_WIN64:
81
szSysKind = L"win64";
82
break;
0 commit comments