aboutsummaryrefslogtreecommitdiff
path: root/src/app/google_rcu/app_task.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/google_rcu/app_task.h')
-rw-r--r--src/app/google_rcu/app_task.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/app/google_rcu/app_task.h b/src/app/google_rcu/app_task.h
new file mode 100644
index 0000000..fdf9c97
--- /dev/null
+++ b/src/app/google_rcu/app_task.h
@@ -0,0 +1,24 @@
+
+/*
+ * Routines to access hardware
+ *
+ * Copyright (c) 2018 Realtek Semiconductor Corp.
+ *
+ * This module is a confidential and proprietary property of RealTek and
+ * possession or use of this module requires written permission of RealTek.
+ */
+#ifndef _APP_TASK_H_
+#define _APP_TASK_H_
+
+#include "app_msg.h"
+#include "stdbool.h"
+
+extern void *app_task_handle;
+extern void *evt_queue_handle;
+extern void *io_queue_handle;
+
+void app_task_init(void);
+bool app_send_msg_to_apptask(T_IO_MSG *p_msg);
+
+#endif
+