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.


added xml output back
[palacios.git] / palacios / src / palacios / vmm_console.c
index f461606..bf5d5ae 100644 (file)
@@ -64,6 +64,12 @@ int v3_console_scroll(v3_console_t cons, int lines) {
     return console_hooks->scroll(cons, lines);
 }
 
+int v3_console_set_text_resolution(v3_console_t cons, int cols, int rows) {
+    V3_ASSERT(console_hooks != NULL);
+    V3_ASSERT(console_hooks->set_text_resolution != NULL);
+    
+    return console_hooks->set_text_resolution(cons, cols, rows);
+}
 
 int v3_console_update(v3_console_t cons) {
     V3_ASSERT(console_hooks != NULL);