From f6aedc5a5563cde7ff53e990f880a3247b834c54 Mon Sep 17 00:00:00 2001 From: zeromus Date: Fri, 3 May 2013 18:12:36 +0000 Subject: [PATCH] toss some hacky changes into discohawk which are alleged to improve drag and drop support on UAC-enabled systems with additional locked down security software --- DiscoHawk/DiscoHawk.cs | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/DiscoHawk/DiscoHawk.cs b/DiscoHawk/DiscoHawk.cs index b4d1eb1765..60cb297adb 100644 --- a/DiscoHawk/DiscoHawk.cs +++ b/DiscoHawk/DiscoHawk.cs @@ -53,9 +53,39 @@ namespace BizHawk AppDomain.CurrentDomain.AssemblyResolve += new ResolveEventHandler(CurrentDomain_AssemblyResolve); #endif + ChangeWindowMessageFilter(WM_DROPFILES, ChangeWindowMessageFilterFlags.Add); + ChangeWindowMessageFilter(WM_COPYDATA, ChangeWindowMessageFilterFlags.Add); + ChangeWindowMessageFilter(0x0049, ChangeWindowMessageFilterFlags.Add); + SubMain(args); } + private const UInt32 WM_DROPFILES = 0x0233; + private const UInt32 WM_COPYDATA = 0x004A; + [DllImport("user32")] + public static extern bool ChangeWindowMessageFilter(uint msg, ChangeWindowMessageFilterFlags flags); + public enum ChangeWindowMessageFilterFlags : uint + { + Add = 1, Remove = 2 + }; + public enum MessageFilterInfo : uint + { + None=0, AlreadyAllowed=1, AlreadyDisAllowed=2, AllowedHigher=3 + }; + public enum ChangeWindowMessageFilterExAction : uint + { + Reset = 0, Allow = 1, DisAllow = 2 + }; + + [StructLayout(LayoutKind.Sequential)] + public struct CHANGEFILTERSTRUCT + { + public uint size; + public MessageFilterInfo info; + } + + [DllImport("user32.dll", SetLastError = true)] + public static extern bool ChangeWindowMessageFilterEx(IntPtr hWnd, uint msg, ChangeWindowMessageFilterExAction action, ref CHANGEFILTERSTRUCT changeInfo); static void SubMain(string[] args) { var ffmpegPath = Path.Combine(GetExeDirectoryAbsolute(), "ffmpeg.exe");