diff options
| author | hathach <[email protected]> | 2014-03-24 16:07:17 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2014-03-24 16:07:17 +0700 |
| commit | 6c9d03905ee64d206af60fc61331e4c9f0f6b907 (patch) | |
| tree | 2fee3273a72f751d385967d90ec900b75a2207ad /demos/host/src/mouse_host_app.h | |
| parent | bfd6c8bc1ee1597dbc1453893504901319e8ce40 (diff) | |
fix build for lpcxpreso host
Diffstat (limited to 'demos/host/src/mouse_host_app.h')
| -rw-r--r-- | demos/host/src/mouse_host_app.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/demos/host/src/mouse_host_app.h b/demos/host/src/mouse_host_app.h index d8f63d0e5..fdd697353 100644 --- a/demos/host/src/mouse_host_app.h +++ b/demos/host/src/mouse_host_app.h @@ -1,6 +1,6 @@ /**************************************************************************/
/*!
- @file mouse_app.h
+ @file mouse_host_app.h
@author hathach (tinyusb.org)
@section LICENSE
@@ -49,8 +49,8 @@ * @{
*/
-#ifndef _TUSB_MOUSE_APP_H_
-#define _TUSB_MOUSE_APP_H_
+#ifndef _TUSB_MOUSE_HOST_APP_H_
+#define _TUSB_MOUSE_HOST_APP_H_
#include <stdint.h>
#include <stdbool.h>
@@ -64,13 +64,13 @@ #if TUSB_CFG_HOST_HID_MOUSE
-void mouse_app_init(void);
-OSAL_TASK_FUNCTION( mouse_app_task, p_task_para);
+void mouse_host_app_init(void);
+OSAL_TASK_FUNCTION( mouse_host_app_task, p_task_para);
#else
-#define mouse_app_init()
-#define mouse_app_task(x)
+#define mouse_host_app_init()
+#define mouse_host_app_task(x)
#endif
@@ -78,6 +78,6 @@ OSAL_TASK_FUNCTION( mouse_app_task, p_task_para); }
#endif
-#endif /* _TUSB_MOUSE_APP_H_ */
+#endif /* _TUSB_MOUSE_HOST_APP_H_ */
/** @} */
|
