[SDK][INCLUDE] Fix and improve comctl32_undoc.h

This commit is contained in:
Katayama Hirofumi MZ 2020-02-13 09:16:59 +09:00
parent 8da7fbc704
commit 9fc87dacdb
2 changed files with 101 additions and 41 deletions

View file

@ -427,12 +427,12 @@ BOOL COpenWithList::LoadProgIdList(HKEY hKey, LPCWSTR pwszExt)
HANDLE COpenWithList::OpenMRUList(HKEY hKey)
{
CREATEMRULISTW Info;
MRUINFOW Info;
/* Initialize mru list info */
Info.cbSize = sizeof(Info);
Info.nMaxItems = 32;
Info.dwFlags = MRU_STRING;
Info.uMax = 32;
Info.fFlags = MRU_STRING;
Info.hKey = hKey;
Info.lpszSubKey = L"OpenWithList";
Info.lpfnCompare = NULL;