1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 02:07:35 +00:00

Kernel: Move the VMWare helpers out of the IO namespace

This commit is contained in:
Liav A 2020-02-05 19:38:45 +02:00 committed by Andreas Kling
parent 8e8f5c212b
commit f6ce24eb48
3 changed files with 41 additions and 36 deletions

View file

@ -28,10 +28,6 @@
#include <AK/Types.h>
#define VMWARE_MAGIC 0x564D5868
#define VMWARE_PORT 0x5658
#define VMWARE_PORT_HIGHBANDWIDTH 0x5659
#define VMMOUSE_GETVERSION 10
#define VMMOUSE_DATA 39
#define VMMOUSE_STATUS 40
@ -69,8 +65,8 @@ public:
void send(VMWareCommand& command);
private:
void send_highbandwidth(VMWareCommand& command);
void get_highbandwidth(VMWareCommand& command);
void send_high_bandwidth(VMWareCommand& command);
void get_high_bandwidth(VMWareCommand& command);
VMWareBackdoor();
bool detect_presence();
bool detect_vmmouse();