diff options
Diffstat (limited to 'mousetsr.h')
-rw-r--r-- | mousetsr.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -204,6 +204,11 @@ typedef struct tsrdata { bool w386cursor : 1; #endif +#if USE_VMWARE + /** VMware is available. */ + bool vmwavail : 1; +#endif + #if USE_VIRTUALBOX /** VirtualBox is available. */ bool vbavail : 1; @@ -214,11 +219,6 @@ typedef struct tsrdata { struct vboxcomm vb; char vbbuf[VBOX_BUFFER_SIZE]; #endif - -#if USE_VMWARE - /** VMware is available. */ - bool vmwavail; -#endif } TSRDATA; typedef TSRDATA * PTSRDATA; |