Fix interop method 72/169772/1
authorJunghoon Park <jh9216.park@samsung.com>
Fri, 9 Feb 2018 04:04:22 +0000 (13:04 +0900)
committerJunghoon Park <jh9216.park@samsung.com>
Fri, 9 Feb 2018 04:04:22 +0000 (13:04 +0900)
Change-Id: Ic1690b2a86dda80f1d6c146c39b9720758a6b9b7
Signed-off-by: Junghoon Park <jh9216.park@samsung.com>
idlc/cs_gen/cs_cb_interop.h

index 3e74c11..648cb2c 100644 (file)
@@ -96,6 +96,10 @@ internal static partial class Interop
             [DllImport(Libraries.RpcPort, EntryPoint = "rpc_port_parcel_read_string")]
             internal static extern int ReadString(IntPtr parcelHandle, out string str);
 
+            //int rpc_port_parcel_read_bool(rpc_port_parcel_h h, bool *b);
+            [DllImport(Libraries.RpcPort, EntryPoint = "rpc_port_parcel_read_bool")]
+            internal static extern int ReadBool(IntPtr parcelHandle, out bool b);
+
             //int rpc_port_parcel_read_bundle(rpc_port_parcel_h h, bundle** b);
             [DllImport(Libraries.RpcPort, EntryPoint = "rpc_port_parcel_read_bundle")]
             internal static extern int ReadBundle(IntPtr parcelHandle, out IntPtr b);