diff --git a/generation/WinSDK/emitter.settings.rsp b/generation/WinSDK/emitter.settings.rsp index 814c6867..c55121ec 100644 --- a/generation/WinSDK/emitter.settings.rsp +++ b/generation/WinSDK/emitter.settings.rsp @@ -27,6 +27,8 @@ IPPROTO::IPPROTO_IP=0 IPPROTO::IPPROTO_RM=113 MENUPARTS::MENU_POPUPSUBMENU_HCHOT=21 --enumMakeFlags +_EXPCMDSTATE +_EXPCMDFLAGS ADVISE_TYPE AMMSF_MMS_INIT_FLAGS AMMSF_MS_FLAGS @@ -2006,3 +2008,5 @@ CreateFontW::iCharSet=[AssociatedEnum("FONT_CHARSET")] CreateFontW::iOutPrecision=[AssociatedEnum("FONT_OUTPUT_PRECISION")] CreateFontW::iClipPrecision=[AssociatedEnum("FONT_CLIP_PRECISION")] CreateFontW::iQuality=[AssociatedEnum("FONT_QUALITY")] +IExplorerCommand::GetState::pCmdState=[AssociatedEnum("_EXPCMDSTATE")] +IExplorerCommand::GetFlags::pFlags=[AssociatedEnum("_EXPCMDFLAGS")] diff --git a/scripts/ChangesSinceLastRelease.txt b/scripts/ChangesSinceLastRelease.txt index 43d2d038..03553cdf 100644 --- a/scripts/ChangesSinceLastRelease.txt +++ b/scripts/ChangesSinceLastRelease.txt @@ -2750,3 +2750,8 @@ Windows.Win32.Graphics.Gdi.Apis.CreateFontW : iCharSet : [In] => [AssociatedEnum Windows.Win32.Graphics.Gdi.Apis.CreateFontW : iClipPrecision : [In] => [AssociatedEnum(FONT_CLIP_PRECISION),In] Windows.Win32.Graphics.Gdi.Apis.CreateFontW : iOutPrecision : [In] => [AssociatedEnum(FONT_OUTPUT_PRECISION),In] Windows.Win32.Graphics.Gdi.Apis.CreateFontW : iQuality : [In] => [AssociatedEnum(FONT_QUALITY),In] +# IExplorerCommand: Methods could return flag type instead of u32 and flag types should be marked as flags #2007. +Windows.Win32.UI.Shell._EXPCMDFLAGS : => [Flags] +Windows.Win32.UI.Shell._EXPCMDSTATE : [Documentation(https://learn.microsoft.com/windows/win32/api/shobjidl_core/ne-shobjidl_core-_expcmdstate)] => [Documentation(https://learn.microsoft.com/windows/win32/api/shobjidl_core/ne-shobjidl_core-_expcmdstate),Flags] +Windows.Win32.UI.Shell.IExplorerCommand.GetFlags : pFlags : [Out] => [AssociatedEnum(_EXPCMDFLAGS),Out] +Windows.Win32.UI.Shell.IExplorerCommand.GetState : pCmdState : [Out] => [AssociatedEnum(_EXPCMDSTATE),Out]