@@ -721,6 +721,33 @@ bool dnyAS_PluginLoad(dnyVersionInfo version, IShellPluginAPI* pInterfaceData, p
721721 g_pShellPluginAPI->Scr_ExecuteCode (L" const AUT_GWL_STYLE int <= " + std::to_wstring (GWL_STYLE) + L" ;" );
722722 g_pShellPluginAPI->Scr_ExecuteCode (L" const AUT_GWL_USERDATA int <= " + std::to_wstring (GWLP_USERDATA) + L" ;" );
723723 g_pShellPluginAPI->Scr_ExecuteCode (L" const AUT_GWL_WNDPROC int <= " + std::to_wstring (GWLP_WNDPROC) + L" ;" );
724+ g_pShellPluginAPI->Scr_ExecuteCode (L" const AUT_WS_EX_DLGMODALFRAME int <= " + std::to_wstring (WS_EX_DLGMODALFRAME) + L" ;" );
725+ g_pShellPluginAPI->Scr_ExecuteCode (L" const AUT_WS_EX_NOPARENTNOTIFY int <= " + std::to_wstring (WS_EX_NOPARENTNOTIFY) + L" ;" );
726+ g_pShellPluginAPI->Scr_ExecuteCode (L" const AUT_WS_EX_TOPMOST int <= " + std::to_wstring (WS_EX_TOPMOST) + L" ;" );
727+ g_pShellPluginAPI->Scr_ExecuteCode (L" const AUT_WS_EX_ACCEPTFILES int <= " + std::to_wstring (WS_EX_ACCEPTFILES) + L" ;" );
728+ g_pShellPluginAPI->Scr_ExecuteCode (L" const AUT_WS_EX_TRANSPARENT int <= " + std::to_wstring (WS_EX_TRANSPARENT) + L" ;" );
729+ g_pShellPluginAPI->Scr_ExecuteCode (L" const AUT_WS_EX_MDICHILD int <= " + std::to_wstring (WS_EX_MDICHILD) + L" ;" );
730+ g_pShellPluginAPI->Scr_ExecuteCode (L" const AUT_WS_EX_TOOLWINDOW int <= " + std::to_wstring (WS_EX_TOOLWINDOW) + L" ;" );
731+ g_pShellPluginAPI->Scr_ExecuteCode (L" const AUT_WS_EX_WINDOWEDGE int <= " + std::to_wstring (WS_EX_WINDOWEDGE) + L" ;" );
732+ g_pShellPluginAPI->Scr_ExecuteCode (L" const AUT_WS_EX_CLIENTEDGE int <= " + std::to_wstring (WS_EX_CLIENTEDGE) + L" ;" );
733+ g_pShellPluginAPI->Scr_ExecuteCode (L" const AUT_WS_EX_CONTEXTHELP int <= " + std::to_wstring (WS_EX_CONTEXTHELP) + L" ;" );
734+ g_pShellPluginAPI->Scr_ExecuteCode (L" const AUT_WS_EX_RIGHT int <= " + std::to_wstring (WS_EX_RIGHT) + L" ;" );
735+ g_pShellPluginAPI->Scr_ExecuteCode (L" const AUT_WS_EX_LEFT int <= " + std::to_wstring (WS_EX_LEFT) + L" ;" );
736+ g_pShellPluginAPI->Scr_ExecuteCode (L" const AUT_WS_EX_RTLREADING int <= " + std::to_wstring (WS_EX_RTLREADING) + L" ;" );
737+ g_pShellPluginAPI->Scr_ExecuteCode (L" const AUT_WS_EX_LTRREADING int <= " + std::to_wstring (WS_EX_LTRREADING) + L" ;" );
738+ g_pShellPluginAPI->Scr_ExecuteCode (L" const AUT_WS_EX_LEFTSCROLLBAR int <= " + std::to_wstring (WS_EX_LEFTSCROLLBAR) + L" ;" );
739+ g_pShellPluginAPI->Scr_ExecuteCode (L" const AUT_WS_EX_RIGHTSCROLLBAR int <= " + std::to_wstring (WS_EX_RIGHTSCROLLBAR) + L" ;" );
740+ g_pShellPluginAPI->Scr_ExecuteCode (L" const AUT_WS_EX_CONTROLPARENT int <= " + std::to_wstring (WS_EX_CONTROLPARENT) + L" ;" );
741+ g_pShellPluginAPI->Scr_ExecuteCode (L" const AUT_WS_EX_STATICEDGE int <= " + std::to_wstring (WS_EX_STATICEDGE) + L" ;" );
742+ g_pShellPluginAPI->Scr_ExecuteCode (L" const AUT_WS_EX_APPWINDOW int <= " + std::to_wstring (WS_EX_APPWINDOW) + L" ;" );
743+ g_pShellPluginAPI->Scr_ExecuteCode (L" const AUT_WS_EX_OVERLAPPEDWINDOW int <= " + std::to_wstring (WS_EX_OVERLAPPEDWINDOW) + L" ;" );
744+ g_pShellPluginAPI->Scr_ExecuteCode (L" const AUT_WS_EX_PALETTEWINDOW int <= " + std::to_wstring (WS_EX_PALETTEWINDOW) + L" ;" );
745+ g_pShellPluginAPI->Scr_ExecuteCode (L" const AUT_WS_EX_LAYERED int <= " + std::to_wstring (WS_EX_LAYERED) + L" ;" );
746+ g_pShellPluginAPI->Scr_ExecuteCode (L" const AUT_WS_EX_NOINHERITLAYOUT int <= " + std::to_wstring (WS_EX_NOINHERITLAYOUT) + L" ;" );
747+ g_pShellPluginAPI->Scr_ExecuteCode (L" const AUT_WS_EX_NOREDIRECTIONBITMAP int <= " + std::to_wstring (WS_EX_NOREDIRECTIONBITMAP) + L" ;" );
748+ g_pShellPluginAPI->Scr_ExecuteCode (L" const AUT_WS_EX_LAYOUTRTL int <= " + std::to_wstring (WS_EX_LAYOUTRTL) + L" ;" );
749+ g_pShellPluginAPI->Scr_ExecuteCode (L" const AUT_WS_EX_COMPOSITED int <= " + std::to_wstring (WS_EX_COMPOSITED) + L" ;" );
750+ g_pShellPluginAPI->Scr_ExecuteCode (L" const AUT_WS_EX_NOACTIVATE int <= " + std::to_wstring (WS_EX_NOACTIVATE) + L" ;" );
724751
725752 // Register commands
726753 g_pShellPluginAPI->Cmd_RegisterCommand (L" aut_findwindow" , &g_oFindWindowCommandInterface, CT_INT);
0 commit comments