From 537b7ae16610ea5d3fc915a5936a6353fde3fcac Mon Sep 17 00:00:00 2001 From: Kangho Hur Date: Fri, 25 Sep 2020 10:46:39 +0900 Subject: [PATCH] [ElmSharp] Fix elm_more_option_open_get to return bool correctly (#2054) --- src/ElmSharp.Wearable/Interop/Interop.Eext.MoreOption.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ElmSharp.Wearable/Interop/Interop.Eext.MoreOption.cs b/src/ElmSharp.Wearable/Interop/Interop.Eext.MoreOption.cs index 8fa3bf4..93b093c 100644 --- a/src/ElmSharp.Wearable/Interop/Interop.Eext.MoreOption.cs +++ b/src/ElmSharp.Wearable/Interop/Interop.Eext.MoreOption.cs @@ -73,6 +73,7 @@ internal static partial class Interop internal static extern IntPtr eext_more_option_items_get(IntPtr obj); [DllImport(Libraries.Eext)] + [return: MarshalAs(UnmanagedType.U1)] internal static extern bool eext_more_option_opened_get(IntPtr obj); [DllImport(Libraries.Eext)] -- 2.7.4