move _MG_CONFIG_FAST_MOUSEMOVE to constants.h from cursor.h

This commit is contained in:
Vincent Wei
2020-02-20 12:37:41 +08:00
parent 1b598de5cc
commit 52ddec51de
2 changed files with 3 additions and 3 deletions
+3
View File
@@ -189,5 +189,8 @@ enum {
/* round n to multiple of m */
#define ROUND_TO_MULTIPLE(n, m) (((n) + (((m) - 1))) & ~((m) - 1))
/* Use shared memory to emulate MSG_MOUSEMOVE message */
#define _MG_CONFIG_FAST_MOUSEMOVE 1
#endif /* GUI_CONSTANTS_H */
-3
View File
@@ -105,9 +105,6 @@ void mg_TerminateCursor(void);
#ifndef _MGRM_THREADS
/* Use shared memory to emulate MSG_MOUSEMOVE message */
#define _MG_CONFIG_FAST_MOUSEMOVE 1
/* show cursor hidden by client GDI function */
void kernel_ReShowCursor (void);