server: Use attributes instead of inherit flag in console requests.
diff --git a/server/protocol.def b/server/protocol.def
index 98bcb90..2dfd020 100644
--- a/server/protocol.def
+++ b/server/protocol.def
@@ -738,7 +738,7 @@
 /* Allocate a console (only used by a console renderer) */
 @REQ(alloc_console)
     unsigned int access;        /* wanted access rights */
-    int          inherit;       /* inherit flag */
+    unsigned int attributes;    /* object attributes */
     process_id_t pid;           /* pid of process which shall be attached to the console */
 @REPLY
     obj_handle_t handle_in;     /* handle to console input */
@@ -808,7 +808,7 @@
     int          from;          /* 0 (resp 1) input (resp output) of current process console */
                                 /* otherwise console_in handle to get active screen buffer? */
     unsigned int access;        /* wanted access rights */
-    int          inherit;       /* inherit flag */
+    unsigned int attributes;    /* object attributes */
     int          share;         /* share mask (only for output handles) */
 @REPLY
     obj_handle_t handle;        /* handle to the console */
@@ -885,9 +885,9 @@
 /* creates a new screen buffer on process' console */
 @REQ(create_console_output)
     obj_handle_t handle_in;     /* handle to console input, or 0 for process' console */
-    int          access;        /* wanted access rights */
-    int          share;         /* sharing credentials */
-    int          inherit;       /* inherit flag */
+    unsigned int access;        /* wanted access rights */
+    unsigned int attributes;    /* object attributes */
+    unsigned int share;         /* sharing credentials */
 @REPLY
     obj_handle_t handle_out;    /* handle to the screen buffer */
 @END