From 5d22dfac0e43ab84b02fe0997655bc89f1d6a8d7 Mon Sep 17 00:00:00 2001 From: zeromus Date: Sun, 23 Jul 2017 10:16:55 -0500 Subject: [PATCH] fix custom listview win32 structs for 64bits (not 100% sure I did this correctly) --- BizHawk.Client.EmuHawk/CustomControls/VirtualListView.cs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/BizHawk.Client.EmuHawk/CustomControls/VirtualListView.cs b/BizHawk.Client.EmuHawk/CustomControls/VirtualListView.cs index 0ae416b548..f0a2d07909 100644 --- a/BizHawk.Client.EmuHawk/CustomControls/VirtualListView.cs +++ b/BizHawk.Client.EmuHawk/CustomControls/VirtualListView.cs @@ -54,9 +54,10 @@ namespace BizHawk.Client.EmuHawk public uint dwDrawStage; public IntPtr Hdc; public RECT Rect; - public int dwItemSpec; + public IntPtr dwItemSpec; public uint ItemState; - public int lItemlParam; + private int _pad64bits; + public IntPtr lItemlParam; } [StructLayout(LayoutKind.Sequential)] @@ -596,7 +597,7 @@ namespace BizHawk.Client.EmuHawk if (QueryItemBkColor != null) { var color = Color.FromArgb(cd.ClearTextBackground & 0xFF, (cd.ClearTextBackground >> 8) & 0xFF, (cd.ClearTextBackground >> 16) & 0xFF); - QueryItemBkColor(cd.Nmcd.dwItemSpec, cd.SubItem, ref color); + QueryItemBkColor(cd.Nmcd.dwItemSpec.ToInt32(), cd.SubItem, ref color); cd.ClearTextBackground = (color.B << 16) | (color.G << 8) | color.R; Marshal.StructureToPtr(cd, m.LParam, false); }