diff options
author | inmarket <andrewh@inmarket.com.au> | 2014-11-26 13:21:05 +1000 |
---|---|---|
committer | inmarket <andrewh@inmarket.com.au> | 2014-11-26 13:21:36 +1000 |
commit | e6bf4277752ebb282020c4bf67840262879430f1 (patch) | |
tree | 51dbca6d7ff5f11d13c97051e494b8c5c315e854 /src | |
parent | bd3a58ccfc0a484e18cd562539edc71c2f8ebefc (diff) | |
download | uGFX-e6bf4277752ebb282020c4bf67840262879430f1.tar.gz uGFX-e6bf4277752ebb282020c4bf67840262879430f1.tar.bz2 uGFX-e6bf4277752ebb282020c4bf67840262879430f1.zip |
Doc updates for multiple mouse support
Diffstat (limited to 'src')
-rw-r--r-- | src/ginput/sys_options.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/ginput/sys_options.h b/src/ginput/sys_options.h index 6de8ea83..b47302a4 100644 --- a/src/ginput/sys_options.h +++ b/src/ginput/sys_options.h @@ -157,6 +157,20 @@ #ifndef GINPUT_TOUCH_USER_CALIBRATION_SAVE #define GINPUT_TOUCH_USER_CALIBRATION_SAVE FALSE #endif + /** + * @brief Define multiple static mice + * @details When not defined the system automatically detects a single linked mouse driver + * @note The references to GMOUSEVMT_Win32 in the definition would be replaced + * by the names of the VMT for each of the static mice you want to + * include. + * @note Dynamic mice associated automatically with a display eg Win32, X or GFXnet + * do not need to be specified in this list as the associated display driver will register + * them automatically as the display is created. + */ + #if defined(__DOXYGEN__) + #define GMOUSE_DRIVER_LIST GMOUSEVMT_Win32, GMOUSEVMT_Win32 + #endif + /** @} */ #endif /* _GINPUT_OPTIONS_H */ |