From 89ed072d777e0c47c7dd5726014ebc35c7482407 Mon Sep 17 00:00:00 2001 From: Christopher Lees Date: Wed, 5 Jul 2017 22:58:40 +0100 Subject: [PATCH] Fix file drop string marshalling --- src/OpenTK/Platform/Windows/API.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/OpenTK/Platform/Windows/API.cs b/src/OpenTK/Platform/Windows/API.cs index 23d4ba28..d218106c 100644 --- a/src/OpenTK/Platform/Windows/API.cs +++ b/src/OpenTK/Platform/Windows/API.cs @@ -128,13 +128,13 @@ namespace OpenTK.Platform.Windows internal static class Functions { - [DllImport("shell32.dll")] + [DllImport("shell32.dll", CharSet = CharSet.Auto)] internal static extern bool DragAcceptFiles( IntPtr handle, [MarshalAs(UnmanagedType.Bool)] bool fAccept ); - [DllImport("shell32.dll")] + [DllImport("shell32.dll", CharSet = CharSet.Auto)] internal static extern uint DragQueryFile( HDROP hDrop, uint iFile,