This commit is contained in:
Francesco 2021-01-02 10:21:30 -05:00 committed by GitHub
commit 3dca221f33
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 2 deletions

View File

@ -105,8 +105,12 @@ const char *uiInit(uiInitOptions *o)
ZeroMemory(&icc, sizeof (INITCOMMONCONTROLSEX));
icc.dwSize = sizeof (INITCOMMONCONTROLSEX);
icc.dwICC = wantedICCClasses;
if (InitCommonControlsEx(&icc) == 0)
return ieLastErr("initializing Common Controls");
if (InitCommonControlsEx(&icc) == 0) {
DWORD last_err = GetLastError();
if (last_err != 0) {
return initerr("=" "initializing Common Controls", L"GetLastError() ==", last_err);
}
}
hr = CoInitialize(NULL);
if (hr != S_OK && hr != S_FALSE)