Add missing header 07/217607/1
authorJunghoon Park <jh9216.park@samsung.com>
Wed, 13 Nov 2019 04:16:27 +0000 (13:16 +0900)
committerJunghoon Park <jh9216.park@samsung.com>
Wed, 13 Nov 2019 04:16:27 +0000 (13:16 +0900)
Change-Id: Ib4a492cf8400f5ba0085f656f4e4822a13ca4029
Signed-off-by: Junghoon Park <jh9216.park@samsung.com>
include/rpc-port-parcel-internal.h [new file with mode: 0644]

diff --git a/include/rpc-port-parcel-internal.h b/include/rpc-port-parcel-internal.h
new file mode 100644 (file)
index 0000000..a4f8323
--- /dev/null
@@ -0,0 +1,41 @@
+/*
+ * Copyright (c) 2017 Samsung Electronics Co., Ltd All Rights Reserved
+ *
+ * Licensed under the Apache License, Version 2.0 (the License);
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an AS IS BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#ifndef __TIZEN_APPFW_RPC_PORT_PARCEL_INTERNAL_INCLUDE_H__
+#define __TIZEN_APPFW_RPC_PORT_PARCEL_INTERNAL_INCLUDE_H__
+
+#include <rpc-port-parcel.h>
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+int rpc_port_parcel_reset_reader(rpc_port_parcel_h h);
+
+int rpc_port_parcel_to_array(rpc_port_parcel_h h, void **array,
+    unsigned int *size);
+
+int rpc_port_parcel_from_array(rpc_port_parcel_h h, const void *array,
+    unsigned int size);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* __TIZEN_APPFW_RPC_PORT_PARCEL_INTERNAL_INCLUDE_H__ */
+
+
+