From 200326b144c0ee0f1e37e69d36565150f6b67ea0 Mon Sep 17 00:00:00 2001 From: Hugh McMaster Date: Wed, 24 Apr 2013 16:09:37 +1000 Subject: server-protocol.def --- server/protocol.def | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/server/protocol.def b/server/protocol.def index 234c41e..ccf6549 100644 --- a/server/protocol.def +++ b/server/protocol.def @@ -1193,6 +1193,29 @@ enum server_fd_type obj_handle_t deferred; /* handle to the socket for which accept() is deferred */ @END + +/* console font size */ +@REQ(console_font_size) + int mem; /* action */ + int font_w; /* width of font cell */ + int font_h; /* height of font cell */ +@REPLY + int font_x; /* width of font cell */ + int font_y; /* height of font cell */ +@END + + +/* largest possible console window size */ +@REQ(max_console_size) + int mem; /* action */ + int max_w; /* maximum console width */ + int max_h; /* maximum console height */ +@REPLY + int max_x; /* maximum console width */ + int max_y; /* maximum console height */ +@END + + /* Allocate a console (only used by a console renderer) */ @REQ(alloc_console) unsigned int access; /* wanted access rights */ -- 1.7.10.4