summaryrefslogtreecommitdiff
path: root/src/lib/ipc_client.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/ipc_client.h')
-rwxr-xr-xsrc/lib/ipc_client.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/lib/ipc_client.h b/src/lib/ipc_client.h
new file mode 100755
index 0000000..f1b6e71
--- /dev/null
+++ b/src/lib/ipc_client.h
@@ -0,0 +1,33 @@
+/**
+ * @file ipc_client.h
+ * @brief client part using ipc methods
+
+ * Copyright (c) 2017 Samsung Electronics Co., Ltd.
+ * This software is the confidential and proprietary information
+ * of Samsung Electronics, Inc. ("Confidential Information"). You
+ * shall not disclose such Confidential Information and shall use
+ * it only in accordance with the terms of the license agreement
+ * you entered into with Samsung.
+ */
+
+#ifndef __IPC_CLIENT_H__
+#define __IPC_CLIENT_H__
+
+/**
+ * @fn int IPC_CallFunction(char *data, int size, char **retbuf)
+ * @brief this function to send data through IPC
+ * @param *data [in] send data
+ * @param size [in] size of data
+ * @param **retbuf [in] return buffer string
+ * @return int result of function
+ */
+int IPC_CallFunction(char *data, int size, char **retbuf);
+
+/**
+ * @fn int IPC_RegisterCallback(void)
+ * @brief this function to register callback
+ * @return int result of function
+ */
+int IPC_RegisterCallback(void);
+
+#endif /* __IPC_CLIENT_H__ */