22 lines
562 B
C
22 lines
562 B
C
#ifndef APP_ACTION_H
|
|
#define APP_ACTION_H
|
|
|
|
#include "app_config.h"
|
|
#include "system/app_core.h"
|
|
// #include "common/user_msg.h"
|
|
|
|
#define ACTION_MOUSE_MAIN 0x0001
|
|
#define ACTION_HID_MAIN 0x0002
|
|
#define ACTION_IDLE_MAIN 0x0003
|
|
#define ACTION_KEYFOB 0x0004
|
|
#define ACTION_KEYPAGE 0x0005
|
|
#define ACTION_GAMEBOX 0x0006
|
|
#define ACTION_STANDARD_KEYBOARD 0x0007
|
|
#define ACTION_MOUSE_DUAL_MAIN 0x0008
|
|
#define ACTION_REMOTE_CONTROL 0x0009
|
|
#define ACTION_ELECTROCAR 0x000a
|
|
|
|
#endif
|
|
|
|
|