server: Enhanced the console input object so that it doesn't require a wineconsole to be running.
diff --git a/server/request.h b/server/request.h
index 1e6b0a2..1f90278 100644
--- a/server/request.h
+++ b/server/request.h
@@ -954,7 +954,8 @@
 C_ASSERT( FIELD_OFFSET(struct alloc_console_request, access) == 12 );
 C_ASSERT( FIELD_OFFSET(struct alloc_console_request, attributes) == 16 );
 C_ASSERT( FIELD_OFFSET(struct alloc_console_request, pid) == 20 );
-C_ASSERT( sizeof(struct alloc_console_request) == 24 );
+C_ASSERT( FIELD_OFFSET(struct alloc_console_request, input_fd) == 24 );
+C_ASSERT( sizeof(struct alloc_console_request) == 32 );
 C_ASSERT( FIELD_OFFSET(struct alloc_console_reply, handle_in) == 8 );
 C_ASSERT( FIELD_OFFSET(struct alloc_console_reply, event) == 12 );
 C_ASSERT( sizeof(struct alloc_console_reply) == 16 );