mirror of
https://github.com/VincentWei/MiniGUI.git
synced 2026-09-26 20:45:36 +08:00
move _MG_CONFIG_FAST_MOUSEMOVE to constants.h from cursor.h
This commit is contained in:
@@ -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 */
|
||||
|
||||
|
||||
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user