Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


SVM reset capability + integration with multiboot+hvm reset capability
[palacios.git] / linux_module / iface-graphics-console.h
index aef5330..040aa36 100644 (file)
@@ -23,8 +23,10 @@ struct v3_fb_query_response {
 // This is what userland sends down for input events
 struct v3_fb_input {
     enum { V3_FB_KEY, V3_FB_MOUSE, V3_FB_BOTH}             data_type;
-    uint8_t                              scan_code;
-    uint8_t                              mouse_data[3];
+    uint8_t                              scan_code;     // kbd scan code
+    uint8_t                              sx, dx;        // mouse horizontal sign and dx
+    uint8_t                              sy, dy;        // mouse vertical sign and dy
+    uint8_t                              buttons;       // mouse buttons
 };