diff options
author | Javier <dev.git@javispedro.com> | 2022-04-15 10:59:31 +0200 |
---|---|---|
committer | Javier <dev.git@javispedro.com> | 2022-04-15 10:59:31 +0200 |
commit | 0f0a806e22895c5b7a6244e951c4f475a25184f8 (patch) | |
tree | 10aa1e1e8b838d06eacdcfd78a341d1a3634eda3 /mousetsr.h | |
parent | 30c3e414c423bcbfe10b1e40bb8a0e01d3eec7c9 (diff) | |
download | vbados-0f0a806e22895c5b7a6244e951c4f475a25184f8.tar.gz vbados-0f0a806e22895c5b7a6244e951c4f475a25184f8.zip |
add rescan option to redo automounts, in case user changes them
Diffstat (limited to 'mousetsr.h')
-rw-r--r-- | mousetsr.h | 12 |
1 files changed, 7 insertions, 5 deletions
@@ -39,6 +39,13 @@ /** Trace events verbosily */ #define TRACE_EVENTS 0 +#define VERSION_MAJOR 0 +#define VERSION_MINOR 5 + +/** The report MS MOUSE compatible version to programs who ask for it. */ +#define REPORTED_VERSION_MAJOR 6 +#define REPORTED_VERSION_MINOR 0x30 + // End of user customizable defines #define USE_INTEGRATION (USE_VIRTUALBOX || USE_VMWARE) @@ -51,11 +58,6 @@ #define GRAPHIC_CURSOR_MASK_LEN (GRAPHIC_CURSOR_HEIGHT * GRAPHIC_CURSOR_SCANLINE_LEN) #define GRAPHIC_CURSOR_DATA_LEN (2 * GRAPHIC_CURSOR_MASK_LEN) -#define VERSION_MAJOR 0 -#define VERSION_MINOR 4 -#define REPORTED_VERSION_MAJOR 6 -#define REPORTED_VERSION_MINOR 0x30 - #if USE_VIRTUALBOX #include "vbox.h" |