aboutsummaryrefslogtreecommitdiff
path: root/vbox.h
diff options
context:
space:
mode:
authorJavier <dev.git@javispedro.com>2022-04-05 22:24:47 +0200
committerJavier <dev.git@javispedro.com>2022-04-05 22:24:47 +0200
commit51cdb6b523be973e802cc940c6ac54cc8a50b802 (patch)
tree85ad0eb5dc50ab3c4d635c6e70a930ce4589f8bc /vbox.h
parentc028004510a24480f93e57ccc6c7b64b79143aa4 (diff)
downloadvbados-51cdb6b523be973e802cc940c6ac54cc8a50b802.tar.gz
vbados-51cdb6b523be973e802cc940c6ac54cc8a50b802.zip
add vmware support, debug logging to serial port, and fix ps2 routine clobbering registers
Diffstat (limited to 'vbox.h')
-rw-r--r--vbox.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/vbox.h b/vbox.h
index 6bb8797..42b3c39 100644
--- a/vbox.h
+++ b/vbox.h
@@ -20,6 +20,8 @@
#ifndef VBOX_H
#define VBOX_H
+#pragma off (unreferenced)
+
#include <stdbool.h>
#include <stdint.h>
#include <string.h>
@@ -155,4 +157,6 @@ static inline unsigned vbox_req_mouse_pointer_size(unsigned width, unsigned heig
return MAX(sizeof(VMMDevReqMousePointer), 24 + 20 + data_size);
}
+#pragma pop (unreferenced)
+
#endif