diff options
author | Javier <dev.git@javispedro.com> | 2022-04-02 03:57:55 +0200 |
---|---|---|
committer | Javier <dev.git@javispedro.com> | 2022-04-02 03:57:55 +0200 |
commit | aade1f47d34594216500f26ed0d21b23a1d1f4f1 (patch) | |
tree | b8cf37b6fa99dd77104662da206060a1fd622a5b /dosmain.c | |
parent | 3e39df4a4185f947d1af564aca265c0f6b51c9ec (diff) | |
download | vbados-aade1f47d34594216500f26ed0d21b23a1d1f4f1.tar.gz vbados-aade1f47d34594216500f26ed0d21b23a1d1f4f1.zip |
complete support for the win386 hooks in dos mouse side, and further simplify w16 driver
Diffstat (limited to 'dosmain.c')
-rw-r--r-- | dosmain.c | 7 |
1 files changed, 1 insertions, 6 deletions
@@ -28,11 +28,6 @@ #include "vbox.h" #include "dostsr.h" -static unsigned get_resident_size(void) -{ - return FP_OFF(&resident_end); -} - #if USE_VIRTUALBOX static int set_integration(LPTSRDATA data, bool enable) { @@ -268,7 +263,7 @@ int main(int argc, const char *argv[]) LPTSRDATA data = get_tsr_data(true); int err, argi = 1; - printf("\nVBMouse 0.x (MSMOUSE %x.%x)\n", REPORTED_VERSION_MAJOR, REPORTED_VERSION_MINOR); + printf("\nVBMouse %x.%x (like MSMOUSE %x.%x)\n", VERSION_MAJOR, VERSION_MINOR, REPORTED_VERSION_MAJOR, REPORTED_VERSION_MINOR); if (argi >= argc || stricmp(argv[argi], "install") == 0) { if (data) { |