- Fixed some signed/unsigned mismatches.
[wine.git] / server / protocol.def
blobfb820a8a4b587c673657ba005ade93308de1c5e7
1 /* -*- C -*-
3 * Wine server protocol definition
5 * Copyright (C) 2001 Alexandre Julliard
7 * This file is used by tools/make_requests to build the
8 * protocol structures in include/wine/server_protocol.h
10 * This library is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU Lesser General Public
12 * License as published by the Free Software Foundation; either
13 * version 2.1 of the License, or (at your option) any later version.
15 * This library is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * Lesser General Public License for more details.
20 * You should have received a copy of the GNU Lesser General Public
21 * License along with this library; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 @HEADER /* start of C declarations */
27 #include <stdlib.h>
28 #include <time.h>
29 #include "winbase.h"
31 struct request_header
33 int req; /* request code */
34 size_t request_size; /* request variable part size */
35 size_t reply_size; /* reply variable part maximum size */
38 struct reply_header
40 unsigned int error; /* error result */
41 size_t reply_size; /* reply variable part size */
44 /* placeholder structure for the maximum allowed request size */
45 /* this is used to construct the generic_request union */
46 struct request_max_size
48 int pad[16]; /* the max request size is 16 ints */
51 typedef void *obj_handle_t;
52 typedef void *user_handle_t;
53 typedef unsigned short atom_t;
54 typedef unsigned int process_id_t;
55 typedef unsigned int thread_id_t;
57 #define FIRST_USER_HANDLE 0x0020 /* first possible value for low word of user handle */
58 #define LAST_USER_HANDLE 0xffef /* last possible value for low word of user handle */
61 /* definitions of the event data depending on the event code */
62 struct debug_event_exception
64 EXCEPTION_RECORD record; /* exception record */
65 int first; /* first chance exception? */
67 struct debug_event_create_thread
69 obj_handle_t handle; /* handle to the new thread */
70 void *teb; /* thread teb (in debugged process address space) */
71 void *start; /* thread startup routine */
73 struct debug_event_create_process
75 obj_handle_t file; /* handle to the process exe file */
76 obj_handle_t process; /* handle to the new process */
77 obj_handle_t thread; /* handle to the new thread */
78 void *base; /* base of executable image */
79 int dbg_offset; /* offset of debug info in file */
80 int dbg_size; /* size of debug info */
81 void *teb; /* thread teb (in debugged process address space) */
82 void *start; /* thread startup routine */
83 void *name; /* image name (optional) */
84 int unicode; /* is it Unicode? */
86 struct debug_event_exit
88 int exit_code; /* thread or process exit code */
90 struct debug_event_load_dll
92 obj_handle_t handle; /* file handle for the dll */
93 void *base; /* base address of the dll */
94 int dbg_offset; /* offset of debug info in file */
95 int dbg_size; /* size of debug info */
96 void *name; /* image name (optional) */
97 int unicode; /* is it Unicode? */
99 struct debug_event_unload_dll
101 void *base; /* base address of the dll */
103 struct debug_event_output_string
105 void *string; /* string to display (in debugged process address space) */
106 int unicode; /* is it Unicode? */
107 int length; /* string length */
109 struct debug_event_rip_info
111 int error; /* ??? */
112 int type; /* ??? */
114 union debug_event_data
116 struct debug_event_exception exception;
117 struct debug_event_create_thread create_thread;
118 struct debug_event_create_process create_process;
119 struct debug_event_exit exit;
120 struct debug_event_load_dll load_dll;
121 struct debug_event_unload_dll unload_dll;
122 struct debug_event_output_string output_string;
123 struct debug_event_rip_info rip_info;
126 /* debug event data */
127 typedef struct
129 int code; /* event code */
130 union debug_event_data info; /* event information */
131 } debug_event_t;
133 /* structure used in sending an fd from client to server */
134 struct send_fd
136 thread_id_t tid; /* thread id */
137 int fd; /* file descriptor on client-side */
140 /* structure sent by the server on the wait fifo */
141 struct wake_up_reply
143 void *cookie; /* magic cookie that was passed in select_request */
144 int signaled; /* wait result */
147 /* structure for process startup info */
148 typedef struct
150 size_t size; /* size of this structure */
151 size_t filename_len; /* length of filename */
152 size_t cmdline_len; /* length of cmd line */
153 size_t desktop_len; /* length of desktop name */
154 size_t title_len; /* length of title */
155 int x; /* window position */
156 int y;
157 int cx; /* window size */
158 int cy;
159 int x_chars; /* console size */
160 int y_chars;
161 int attribute; /* console attributes */
162 int cmd_show; /* main window show mode */
163 unsigned int flags; /* info flags */
164 /* char filename[...]; */
165 /* char cmdline[...]; */
166 /* char desktop[...]; */
167 /* char title[...]; */
168 } startup_info_t;
170 /* structure for absolute timeouts */
171 typedef struct
173 int sec; /* seconds since Unix epoch */
174 int usec; /* microseconds */
175 } abs_time_t;
177 /* structure returned in the list of window properties */
178 typedef struct
180 atom_t atom; /* property atom */
181 short string; /* was atom a string originally? */
182 obj_handle_t handle; /* handle stored in property */
183 } property_data_t;
185 /* structure to specify window rectangles */
186 typedef struct
188 int left;
189 int top;
190 int right;
191 int bottom;
192 } rectangle_t;
194 /* structure for console char/attribute info */
195 typedef struct
197 WCHAR ch;
198 unsigned short attr;
199 } char_info_t;
201 /****************************************************************/
202 /* Request declarations */
204 /* Create a new process from the context of the parent */
205 @REQ(new_process)
206 int inherit_all; /* inherit all handles from parent */
207 int use_handles; /* use stdio handles */
208 int create_flags; /* creation flags */
209 int unix_pid; /* Unix pid of new process */
210 obj_handle_t exe_file; /* file handle for main exe */
211 obj_handle_t hstdin; /* handle for stdin */
212 obj_handle_t hstdout; /* handle for stdout */
213 obj_handle_t hstderr; /* handle for stderr */
214 VARARG(info,startup_info); /* startup information */
215 @REPLY
216 obj_handle_t info; /* new process info handle */
217 @END
220 /* Retrieve information about a newly started process */
221 @REQ(get_new_process_info)
222 obj_handle_t info; /* info handle returned from new_process_request */
223 int pinherit; /* process handle inherit flag */
224 int tinherit; /* thread handle inherit flag */
225 @REPLY
226 process_id_t pid; /* process id */
227 obj_handle_t phandle; /* process handle (in the current process) */
228 thread_id_t tid; /* thread id */
229 obj_handle_t thandle; /* thread handle (in the current process) */
230 int success; /* did the process start successfully? */
231 @END
234 /* Create a new thread from the context of the parent */
235 @REQ(new_thread)
236 int suspend; /* new thread should be suspended on creation */
237 int inherit; /* inherit flag */
238 int request_fd; /* fd for request pipe */
239 @REPLY
240 thread_id_t tid; /* thread id */
241 obj_handle_t handle; /* thread handle (in the current process) */
242 @END
245 /* Signal that we are finished booting on the client side */
246 @REQ(boot_done)
247 int debug_level; /* new debug level */
248 @END
251 /* Initialize a process; called from the new process context */
252 @REQ(init_process)
253 void* ldt_copy; /* addr of LDT copy */
254 @REPLY
255 int create_flags; /* creation flags */
256 unsigned int server_start; /* server start time (GetTickCount) */
257 size_t info_size; /* total size of startup info */
258 obj_handle_t exe_file; /* file handle for main exe */
259 obj_handle_t hstdin; /* handle for stdin */
260 obj_handle_t hstdout; /* handle for stdout */
261 obj_handle_t hstderr; /* handle for stderr */
262 @END
265 /* Retrieve the new process startup info */
266 @REQ(get_startup_info)
267 @REPLY
268 VARARG(info,startup_info); /* startup information */
269 @END
272 /* Signal the end of the process initialization */
273 @REQ(init_process_done)
274 void* module; /* main module base address */
275 size_t module_size; /* main module size */
276 void* entry; /* process entry point */
277 void* name; /* ptr to ptr to name (in process addr space) */
278 obj_handle_t exe_file; /* file handle for main exe */
279 int gui; /* is it a GUI process? */
280 VARARG(filename,string); /* file name of main exe */
281 @REPLY
282 int debugged; /* being debugged? */
283 @END
286 /* Initialize a thread; called from the child after fork()/clone() */
287 @REQ(init_thread)
288 int unix_pid; /* Unix pid of new thread */
289 int unix_tid; /* Unix tid of new thread */
290 void* teb; /* TEB of new thread (in thread address space) */
291 void* entry; /* thread entry point (in thread address space) */
292 int reply_fd; /* fd for reply pipe */
293 int wait_fd; /* fd for blocking calls pipe */
294 @REPLY
295 process_id_t pid; /* process id of the new thread's process */
296 thread_id_t tid; /* thread id of the new thread */
297 int boot; /* is this the boot thread? */
298 int version; /* protocol version */
299 @END
302 /* Terminate a process */
303 @REQ(terminate_process)
304 obj_handle_t handle; /* process handle to terminate */
305 int exit_code; /* process exit code */
306 @REPLY
307 int self; /* suicide? */
308 @END
311 /* Terminate a thread */
312 @REQ(terminate_thread)
313 obj_handle_t handle; /* thread handle to terminate */
314 int exit_code; /* thread exit code */
315 @REPLY
316 int self; /* suicide? */
317 int last; /* last thread in this process? */
318 @END
321 /* Retrieve information about a process */
322 @REQ(get_process_info)
323 obj_handle_t handle; /* process handle */
324 @REPLY
325 process_id_t pid; /* server process id */
326 int debugged; /* debugged? */
327 int exit_code; /* process exit code */
328 int priority; /* priority class */
329 int process_affinity; /* process affinity mask */
330 int system_affinity; /* system affinity mask */
331 @END
334 /* Set a process informations */
335 @REQ(set_process_info)
336 obj_handle_t handle; /* process handle */
337 int mask; /* setting mask (see below) */
338 int priority; /* priority class */
339 int affinity; /* affinity mask */
340 @END
341 #define SET_PROCESS_INFO_PRIORITY 0x01
342 #define SET_PROCESS_INFO_AFFINITY 0x02
345 /* Retrieve information about a thread */
346 @REQ(get_thread_info)
347 obj_handle_t handle; /* thread handle */
348 thread_id_t tid_in; /* thread id (optional) */
349 @REPLY
350 thread_id_t tid; /* server thread id */
351 void* teb; /* thread teb pointer */
352 int exit_code; /* thread exit code */
353 int priority; /* thread priority level */
354 time_t creation_time; /* thread creation time */
355 time_t exit_time; /* thread exit time */
356 @END
359 /* Set a thread informations */
360 @REQ(set_thread_info)
361 obj_handle_t handle; /* thread handle */
362 int mask; /* setting mask (see below) */
363 int priority; /* priority class */
364 int affinity; /* affinity mask */
365 @END
366 #define SET_THREAD_INFO_PRIORITY 0x01
367 #define SET_THREAD_INFO_AFFINITY 0x02
370 /* Retrieve information about a module */
371 @REQ(get_dll_info)
372 obj_handle_t handle; /* process handle */
373 void* base_address; /* base address of module */
374 @REPLY
375 size_t size; /* module size */
376 void* entry_point;
377 VARARG(filename,string); /* file name of module */
378 @END
381 /* Suspend a thread */
382 @REQ(suspend_thread)
383 obj_handle_t handle; /* thread handle */
384 @REPLY
385 int count; /* new suspend count */
386 @END
389 /* Resume a thread */
390 @REQ(resume_thread)
391 obj_handle_t handle; /* thread handle */
392 @REPLY
393 int count; /* new suspend count */
394 @END
397 /* Notify the server that a dll has been loaded */
398 @REQ(load_dll)
399 obj_handle_t handle; /* file handle */
400 void* base; /* base address */
401 size_t size; /* dll size */
402 int dbg_offset; /* debug info offset */
403 int dbg_size; /* debug info size */
404 void* name; /* ptr to ptr to name (in process addr space) */
405 VARARG(filename,string); /* file name of dll */
406 @END
409 /* Notify the server that a dll is being unloaded */
410 @REQ(unload_dll)
411 void* base; /* base address */
412 @END
415 /* Queue an APC for a thread */
416 @REQ(queue_apc)
417 obj_handle_t handle; /* thread handle */
418 int user; /* user or system apc? */
419 void* func; /* function to call */
420 void* arg1; /* params for function to call */
421 void* arg2;
422 void* arg3;
423 @END
426 /* Get next APC to call */
427 @REQ(get_apc)
428 int alertable; /* is thread alertable? */
429 @REPLY
430 void* func; /* function to call */
431 int type; /* function type */
432 void* arg1; /* function arguments */
433 void* arg2;
434 void* arg3;
435 @END
436 enum apc_type { APC_NONE, APC_USER, APC_TIMER, APC_ASYNC, APC_ASYNC_IO };
439 /* Close a handle for the current process */
440 @REQ(close_handle)
441 obj_handle_t handle; /* handle to close */
442 @REPLY
443 int fd; /* associated fd to close */
444 @END
447 /* Set a handle information */
448 @REQ(set_handle_info)
449 obj_handle_t handle; /* handle we are interested in */
450 int flags; /* new handle flags */
451 int mask; /* mask for flags to set */
452 int fd; /* file descriptor or -1 */
453 @REPLY
454 int old_flags; /* old flag value */
455 int cur_fd; /* current file descriptor */
456 @END
459 /* Duplicate a handle */
460 @REQ(dup_handle)
461 obj_handle_t src_process; /* src process handle */
462 obj_handle_t src_handle; /* src handle to duplicate */
463 obj_handle_t dst_process; /* dst process handle */
464 unsigned int access; /* wanted access rights */
465 int inherit; /* inherit flag */
466 int options; /* duplicate options (see below) */
467 @REPLY
468 obj_handle_t handle; /* duplicated handle in dst process */
469 int fd; /* associated fd to close */
470 @END
471 #define DUP_HANDLE_CLOSE_SOURCE DUPLICATE_CLOSE_SOURCE
472 #define DUP_HANDLE_SAME_ACCESS DUPLICATE_SAME_ACCESS
473 #define DUP_HANDLE_MAKE_GLOBAL 0x80000000 /* Not a Windows flag */
476 /* Open a handle to a process */
477 @REQ(open_process)
478 process_id_t pid; /* process id to open */
479 unsigned int access; /* wanted access rights */
480 int inherit; /* inherit flag */
481 @REPLY
482 obj_handle_t handle; /* handle to the process */
483 @END
486 /* Open a handle to a thread */
487 @REQ(open_thread)
488 thread_id_t tid; /* thread id to open */
489 unsigned int access; /* wanted access rights */
490 int inherit; /* inherit flag */
491 @REPLY
492 obj_handle_t handle; /* handle to the thread */
493 @END
496 /* Wait for handles */
497 @REQ(select)
498 int flags; /* wait flags (see below) */
499 void* cookie; /* magic cookie to return to client */
500 abs_time_t timeout; /* absolute timeout */
501 VARARG(handles,handles); /* handles to select on */
502 @END
503 #define SELECT_ALL 1
504 #define SELECT_ALERTABLE 2
505 #define SELECT_INTERRUPTIBLE 4
506 #define SELECT_TIMEOUT 8
509 /* Create an event */
510 @REQ(create_event)
511 int manual_reset; /* manual reset event */
512 int initial_state; /* initial state of the event */
513 int inherit; /* inherit flag */
514 VARARG(name,unicode_str); /* object name */
515 @REPLY
516 obj_handle_t handle; /* handle to the event */
517 @END
519 /* Event operation */
520 @REQ(event_op)
521 obj_handle_t handle; /* handle to event */
522 int op; /* event operation (see below) */
523 @END
524 enum event_op { PULSE_EVENT, SET_EVENT, RESET_EVENT };
527 /* Open an event */
528 @REQ(open_event)
529 unsigned int access; /* wanted access rights */
530 int inherit; /* inherit flag */
531 VARARG(name,unicode_str); /* object name */
532 @REPLY
533 obj_handle_t handle; /* handle to the event */
534 @END
537 /* Create a mutex */
538 @REQ(create_mutex)
539 int owned; /* initially owned? */
540 int inherit; /* inherit flag */
541 VARARG(name,unicode_str); /* object name */
542 @REPLY
543 obj_handle_t handle; /* handle to the mutex */
544 @END
547 /* Release a mutex */
548 @REQ(release_mutex)
549 obj_handle_t handle; /* handle to the mutex */
550 @END
553 /* Open a mutex */
554 @REQ(open_mutex)
555 unsigned int access; /* wanted access rights */
556 int inherit; /* inherit flag */
557 VARARG(name,unicode_str); /* object name */
558 @REPLY
559 obj_handle_t handle; /* handle to the mutex */
560 @END
563 /* Create a semaphore */
564 @REQ(create_semaphore)
565 unsigned int initial; /* initial count */
566 unsigned int max; /* maximum count */
567 int inherit; /* inherit flag */
568 VARARG(name,unicode_str); /* object name */
569 @REPLY
570 obj_handle_t handle; /* handle to the semaphore */
571 @END
574 /* Release a semaphore */
575 @REQ(release_semaphore)
576 obj_handle_t handle; /* handle to the semaphore */
577 unsigned int count; /* count to add to semaphore */
578 @REPLY
579 unsigned int prev_count; /* previous semaphore count */
580 @END
583 /* Open a semaphore */
584 @REQ(open_semaphore)
585 unsigned int access; /* wanted access rights */
586 int inherit; /* inherit flag */
587 VARARG(name,unicode_str); /* object name */
588 @REPLY
589 obj_handle_t handle; /* handle to the semaphore */
590 @END
593 /* Create a file */
594 @REQ(create_file)
595 unsigned int access; /* wanted access rights */
596 int inherit; /* inherit flag */
597 unsigned int sharing; /* sharing flags */
598 int create; /* file create action */
599 unsigned int attrs; /* file attributes for creation */
600 int drive_type; /* type of drive the file is on */
601 VARARG(filename,string); /* file name */
602 @REPLY
603 obj_handle_t handle; /* handle to the file */
604 @END
607 /* Allocate a file handle for a Unix fd */
608 @REQ(alloc_file_handle)
609 unsigned int access; /* wanted access rights */
610 int inherit; /* inherit flag */
611 int fd; /* file descriptor on the client side */
612 @REPLY
613 obj_handle_t handle; /* handle to the file */
614 @END
617 /* Get a Unix fd to access a file */
618 @REQ(get_handle_fd)
619 obj_handle_t handle; /* handle to the file */
620 unsigned int access; /* wanted access rights */
621 @REPLY
622 int fd; /* file descriptor */
623 int type; /* the type of file (see below) */
624 int flags; /* file read/write flags (see below) */
625 @END
626 enum fd_type
628 FD_TYPE_INVALID,
629 FD_TYPE_DEFAULT,
630 FD_TYPE_SOCKET,
631 FD_TYPE_SMB
633 #define FD_FLAG_OVERLAPPED 0x01
634 #define FD_FLAG_TIMEOUT 0x02
635 #define FD_FLAG_RECV_SHUTDOWN 0x04
636 #define FD_FLAG_SEND_SHUTDOWN 0x08
638 /* Set a file current position */
639 @REQ(set_file_pointer)
640 obj_handle_t handle; /* handle to the file */
641 int low; /* position low word */
642 int high; /* position high word */
643 int whence; /* whence to seek */
644 @REPLY
645 int new_low; /* new position low word */
646 int new_high; /* new position high word */
647 @END
650 /* Truncate (or extend) a file */
651 @REQ(truncate_file)
652 obj_handle_t handle; /* handle to the file */
653 @END
656 /* Set a file access and modification times */
657 @REQ(set_file_time)
658 obj_handle_t handle; /* handle to the file */
659 time_t access_time; /* last access time */
660 time_t write_time; /* last write time */
661 @END
664 /* Flush a file buffers */
665 @REQ(flush_file)
666 obj_handle_t handle; /* handle to the file */
667 @REPLY
668 obj_handle_t event; /* event set when finished */
669 @END
672 /* Get information about a file */
673 @REQ(get_file_info)
674 obj_handle_t handle; /* handle to the file */
675 @REPLY
676 int type; /* file type */
677 int attr; /* file attributes */
678 time_t access_time; /* last access time */
679 time_t write_time; /* last write time */
680 int size_high; /* file size */
681 int size_low; /* file size */
682 int links; /* number of links */
683 int index_high; /* unique index */
684 int index_low; /* unique index */
685 unsigned int serial; /* volume serial number */
686 @END
689 /* Lock a region of a file */
690 @REQ(lock_file)
691 obj_handle_t handle; /* handle to the file */
692 unsigned int offset_low; /* offset of start of lock */
693 unsigned int offset_high; /* offset of start of lock */
694 unsigned int count_low; /* count of bytes to lock */
695 unsigned int count_high; /* count of bytes to lock */
696 int shared; /* shared or exclusive lock? */
697 int wait; /* do we want to wait? */
698 @REPLY
699 obj_handle_t handle; /* handle to wait on */
700 int overlapped; /* is it an overlapped I/O handle? */
701 @END
704 /* Unlock a region of a file */
705 @REQ(unlock_file)
706 obj_handle_t handle; /* handle to the file */
707 unsigned int offset_low; /* offset of start of unlock */
708 unsigned int offset_high; /* offset of start of unlock */
709 unsigned int count_low; /* count of bytes to unlock */
710 unsigned int count_high; /* count of bytes to unlock */
711 @END
714 /* Create a socket */
715 @REQ(create_socket)
716 unsigned int access; /* wanted access rights */
717 int inherit; /* inherit flag */
718 int family; /* family, see socket manpage */
719 int type; /* type, see socket manpage */
720 int protocol; /* protocol, see socket manpage */
721 unsigned int flags; /* socket flags */
722 @REPLY
723 obj_handle_t handle; /* handle to the new socket */
724 @END
727 /* Accept a socket */
728 @REQ(accept_socket)
729 obj_handle_t lhandle; /* handle to the listening socket */
730 unsigned int access; /* wanted access rights */
731 int inherit; /* inherit flag */
732 @REPLY
733 obj_handle_t handle; /* handle to the new socket */
734 @END
737 /* Set socket event parameters */
738 @REQ(set_socket_event)
739 obj_handle_t handle; /* handle to the socket */
740 unsigned int mask; /* event mask */
741 obj_handle_t event; /* event object */
742 user_handle_t window; /* window to send the message to */
743 unsigned int msg; /* message to send */
744 @END
747 /* Get socket event parameters */
748 @REQ(get_socket_event)
749 obj_handle_t handle; /* handle to the socket */
750 int service; /* clear pending? */
751 obj_handle_t c_event; /* event to clear */
752 @REPLY
753 unsigned int mask; /* event mask */
754 unsigned int pmask; /* pending events */
755 unsigned int state; /* status bits */
756 VARARG(errors,ints); /* event errors */
757 @END
760 /* Reenable pending socket events */
761 @REQ(enable_socket_event)
762 obj_handle_t handle; /* handle to the socket */
763 unsigned int mask; /* events to re-enable */
764 unsigned int sstate; /* status bits to set */
765 unsigned int cstate; /* status bits to clear */
766 @END
768 @REQ(set_socket_deferred)
769 obj_handle_t handle; /* handle to the socket */
770 obj_handle_t deferred; /* handle to the socket for which accept() is deferred */
771 @END
773 /* Allocate a console (only used by a console renderer) */
774 @REQ(alloc_console)
775 unsigned int access; /* wanted access rights */
776 int inherit; /* inherit flag */
777 process_id_t pid; /* pid of process which shall be attached to the console */
778 @REPLY
779 obj_handle_t handle_in; /* handle to console input */
780 obj_handle_t event; /* handle to renderer events change notification */
781 @END
784 /* Free the console of the current process */
785 @REQ(free_console)
786 @END
789 #define CONSOLE_RENDERER_NONE_EVENT 0x00
790 #define CONSOLE_RENDERER_TITLE_EVENT 0x01
791 #define CONSOLE_RENDERER_ACTIVE_SB_EVENT 0x02
792 #define CONSOLE_RENDERER_SB_RESIZE_EVENT 0x03
793 #define CONSOLE_RENDERER_UPDATE_EVENT 0x04
794 #define CONSOLE_RENDERER_CURSOR_POS_EVENT 0x05
795 #define CONSOLE_RENDERER_CURSOR_GEOM_EVENT 0x06
796 #define CONSOLE_RENDERER_DISPLAY_EVENT 0x07
797 #define CONSOLE_RENDERER_EXIT_EVENT 0x08
798 struct console_renderer_event
800 short event;
801 union
803 struct update
805 short top;
806 short bottom;
807 } update;
808 struct resize
810 short width;
811 short height;
812 } resize;
813 struct cursor_pos
815 short x;
816 short y;
817 } cursor_pos;
818 struct cursor_geom
820 short visible;
821 short size;
822 } cursor_geom;
823 struct display
825 short left;
826 short top;
827 short width;
828 short height;
829 } display;
830 } u;
833 /* retrieve console events for the renderer */
834 @REQ(get_console_renderer_events)
835 obj_handle_t handle; /* handle to console input events */
836 @REPLY
837 VARARG(data,bytes); /* the various console_renderer_events */
838 @END
841 /* Open a handle to the process console */
842 @REQ(open_console)
843 int from; /* 0 (resp 1) input (resp output) of current process console */
844 /* otherwise console_in handle to get active screen buffer? */
845 unsigned int access; /* wanted access rights */
846 int inherit; /* inherit flag */
847 int share; /* share mask (only for output handles) */
848 @REPLY
849 obj_handle_t handle; /* handle to the console */
850 @END
853 /* Get the input queue wait event */
854 @REQ(get_console_wait_event)
855 @REPLY
856 obj_handle_t handle;
857 @END
859 /* Get a console mode (input or output) */
860 @REQ(get_console_mode)
861 obj_handle_t handle; /* handle to the console */
862 @REPLY
863 int mode; /* console mode */
864 @END
867 /* Set a console mode (input or output) */
868 @REQ(set_console_mode)
869 obj_handle_t handle; /* handle to the console */
870 int mode; /* console mode */
871 @END
874 /* Set info about a console (input only) */
875 @REQ(set_console_input_info)
876 obj_handle_t handle; /* handle to console input, or 0 for process' console */
877 int mask; /* setting mask (see below) */
878 obj_handle_t active_sb; /* active screen buffer */
879 int history_mode; /* whether we duplicate lines in history */
880 int history_size; /* number of lines in history */
881 int edition_mode; /* index to the edition mode flavors */
882 VARARG(title,unicode_str); /* console title */
883 @END
884 #define SET_CONSOLE_INPUT_INFO_ACTIVE_SB 0x01
885 #define SET_CONSOLE_INPUT_INFO_TITLE 0x02
886 #define SET_CONSOLE_INPUT_INFO_HISTORY_MODE 0x04
887 #define SET_CONSOLE_INPUT_INFO_HISTORY_SIZE 0x08
888 #define SET_CONSOLE_INPUT_INFO_EDITION_MODE 0x10
891 /* Get info about a console (input only) */
892 @REQ(get_console_input_info)
893 obj_handle_t handle; /* handle to console input, or 0 for process' console */
894 @REPLY
895 int history_mode; /* whether we duplicate lines in history */
896 int history_size; /* number of lines in history */
897 int history_index; /* number of used lines in history */
898 int edition_mode; /* index to the edition mode flavors */
899 VARARG(title,unicode_str); /* console title */
900 @END
903 /* appends a string to console's history */
904 @REQ(append_console_input_history)
905 obj_handle_t handle; /* handle to console input, or 0 for process' console */
906 VARARG(line,unicode_str); /* line to add */
907 @END
910 /* appends a string to console's history */
911 @REQ(get_console_input_history)
912 obj_handle_t handle; /* handle to console input, or 0 for process' console */
913 int index; /* index to get line from */
914 @REPLY
915 int total; /* total length of line in Unicode chars */
916 VARARG(line,unicode_str); /* line to add */
917 @END
920 /* creates a new screen buffer on process' console */
921 @REQ(create_console_output)
922 obj_handle_t handle_in; /* handle to console input, or 0 for process' console */
923 int access; /* wanted access rights */
924 int share; /* sharing credentials */
925 int inherit; /* inherit flag */
926 @REPLY
927 obj_handle_t handle_out; /* handle to the screen buffer */
928 @END
931 /* Set info about a console (output only) */
932 @REQ(set_console_output_info)
933 obj_handle_t handle; /* handle to the console */
934 int mask; /* setting mask (see below) */
935 short int cursor_size; /* size of cursor (percentage filled) */
936 short int cursor_visible;/* cursor visibility flag */
937 short int cursor_x; /* position of cursor (x, y) */
938 short int cursor_y;
939 short int width; /* width of the screen buffer */
940 short int height; /* height of the screen buffer */
941 short int attr; /* default attribute */
942 short int win_left; /* window actually displayed by renderer */
943 short int win_top; /* the rect area is expressed withing the */
944 short int win_right; /* boundaries of the screen buffer */
945 short int win_bottom;
946 short int max_width; /* maximum size (width x height) for the window */
947 short int max_height;
948 @END
949 #define SET_CONSOLE_OUTPUT_INFO_CURSOR_GEOM 0x01
950 #define SET_CONSOLE_OUTPUT_INFO_CURSOR_POS 0x02
951 #define SET_CONSOLE_OUTPUT_INFO_SIZE 0x04
952 #define SET_CONSOLE_OUTPUT_INFO_ATTR 0x08
953 #define SET_CONSOLE_OUTPUT_INFO_DISPLAY_WINDOW 0x10
954 #define SET_CONSOLE_OUTPUT_INFO_MAX_SIZE 0x20
957 /* Get info about a console (output only) */
958 @REQ(get_console_output_info)
959 obj_handle_t handle; /* handle to the console */
960 @REPLY
961 short int cursor_size; /* size of cursor (percentage filled) */
962 short int cursor_visible;/* cursor visibility flag */
963 short int cursor_x; /* position of cursor (x, y) */
964 short int cursor_y;
965 short int width; /* width of the screen buffer */
966 short int height; /* height of the screen buffer */
967 short int attr; /* default attribute */
968 short int win_left; /* window actually displayed by renderer */
969 short int win_top; /* the rect area is expressed withing the */
970 short int win_right; /* boundaries of the screen buffer */
971 short int win_bottom;
972 short int max_width; /* maximum size (width x height) for the window */
973 short int max_height;
974 @END
976 /* Add input records to a console input queue */
977 @REQ(write_console_input)
978 obj_handle_t handle; /* handle to the console input */
979 VARARG(rec,input_records); /* input records */
980 @REPLY
981 int written; /* number of records written */
982 @END
985 /* Fetch input records from a console input queue */
986 @REQ(read_console_input)
987 obj_handle_t handle; /* handle to the console input */
988 int flush; /* flush the retrieved records from the queue? */
989 @REPLY
990 int read; /* number of records read */
991 VARARG(rec,input_records); /* input records */
992 @END
995 /* write data (chars and/or attributes) in a screen buffer */
996 @REQ(write_console_output)
997 obj_handle_t handle; /* handle to the console output */
998 int x; /* position where to start writing */
999 int y;
1000 int mode; /* char info (see below) */
1001 int wrap; /* wrap around at end of line? */
1002 VARARG(data,bytes); /* info to write */
1003 @REPLY
1004 int written; /* number of char infos actually written */
1005 int width; /* width of screen buffer */
1006 int height; /* height of screen buffer */
1007 @END
1008 enum char_info_mode
1010 CHAR_INFO_MODE_TEXT, /* characters only */
1011 CHAR_INFO_MODE_ATTR, /* attributes only */
1012 CHAR_INFO_MODE_TEXTATTR, /* both characters and attributes */
1013 CHAR_INFO_MODE_TEXTSTDATTR /* characters but use standard attributes */
1017 /* fill a screen buffer with constant data (chars and/or attributes) */
1018 @REQ(fill_console_output)
1019 obj_handle_t handle; /* handle to the console output */
1020 int x; /* position where to start writing */
1021 int y;
1022 int mode; /* char info mode */
1023 int count; /* number to write */
1024 int wrap; /* wrap around at end of line? */
1025 char_info_t data; /* data to write */
1026 @REPLY
1027 int written; /* number of char infos actually written */
1028 @END
1031 /* read data (chars and/or attributes) from a screen buffer */
1032 @REQ(read_console_output)
1033 obj_handle_t handle; /* handle to the console output */
1034 int x; /* position (x,y) where to start reading */
1035 int y;
1036 int mode; /* char info mode */
1037 int wrap; /* wrap around at end of line? */
1038 @REPLY
1039 int width; /* width of screen buffer */
1040 int height; /* height of screen buffer */
1041 VARARG(data,bytes);
1042 @END
1045 /* move a rect (of data) in screen buffer content */
1046 @REQ(move_console_output)
1047 obj_handle_t handle; /* handle to the console output */
1048 short int x_src; /* position (x, y) of rect to start moving from */
1049 short int y_src;
1050 short int x_dst; /* position (x, y) of rect to move to */
1051 short int y_dst;
1052 short int w; /* size of the rect (width, height) to move */
1053 short int h;
1054 @END
1057 /* Sends a signal to a process group */
1058 @REQ(send_console_signal)
1059 int signal; /* the signal to send */
1060 process_id_t group_id; /* the group to send the signal to */
1061 @END
1064 /* Create a change notification */
1065 @REQ(create_change_notification)
1066 obj_handle_t handle; /* handle to the directory */
1067 int subtree; /* watch all the subtree */
1068 unsigned int filter; /* notification filter */
1069 @REPLY
1070 obj_handle_t handle; /* handle to the change notification */
1071 @END
1074 /* Move to the next change notification */
1075 @REQ(next_change_notification)
1076 obj_handle_t handle; /* handle to the change notification */
1077 @END
1079 /* Create a file mapping */
1080 @REQ(create_mapping)
1081 int size_high; /* mapping size */
1082 int size_low; /* mapping size */
1083 int protect; /* protection flags (see below) */
1084 unsigned int access; /* wanted access rights */
1085 int inherit; /* inherit flag */
1086 obj_handle_t file_handle; /* file handle */
1087 VARARG(name,unicode_str); /* object name */
1088 @REPLY
1089 obj_handle_t handle; /* handle to the mapping */
1090 @END
1091 /* protection flags */
1092 #define VPROT_READ 0x01
1093 #define VPROT_WRITE 0x02
1094 #define VPROT_EXEC 0x04
1095 #define VPROT_WRITECOPY 0x08
1096 #define VPROT_GUARD 0x10
1097 #define VPROT_NOCACHE 0x20
1098 #define VPROT_COMMITTED 0x40
1099 #define VPROT_IMAGE 0x80
1102 /* Open a mapping */
1103 @REQ(open_mapping)
1104 unsigned int access; /* wanted access rights */
1105 int inherit; /* inherit flag */
1106 VARARG(name,unicode_str); /* object name */
1107 @REPLY
1108 obj_handle_t handle; /* handle to the mapping */
1109 @END
1112 /* Get information about a file mapping */
1113 @REQ(get_mapping_info)
1114 obj_handle_t handle; /* handle to the mapping */
1115 @REPLY
1116 int size_high; /* mapping size */
1117 int size_low; /* mapping size */
1118 int protect; /* protection flags */
1119 int header_size; /* header size (for VPROT_IMAGE mapping) */
1120 void* base; /* default base addr (for VPROT_IMAGE mapping) */
1121 obj_handle_t shared_file; /* shared mapping file handle */
1122 int shared_size; /* shared mapping size */
1123 int drive_type; /* type of drive the file is on */
1124 @END
1127 /* Create a device */
1128 @REQ(create_device)
1129 unsigned int access; /* wanted access rights */
1130 int inherit; /* inherit flag */
1131 int id; /* client private id */
1132 @REPLY
1133 obj_handle_t handle; /* handle to the device */
1134 @END
1137 /* Retrieve the client private id for a device */
1138 @REQ(get_device_id)
1139 obj_handle_t handle; /* handle to the device */
1140 @REPLY
1141 int id; /* client private id */
1142 @END
1145 #define SNAP_HEAPLIST 0x00000001
1146 #define SNAP_PROCESS 0x00000002
1147 #define SNAP_THREAD 0x00000004
1148 #define SNAP_MODULE 0x00000008
1149 /* Create a snapshot */
1150 @REQ(create_snapshot)
1151 int inherit; /* inherit flag */
1152 int flags; /* snapshot flags (SNAP_*) */
1153 process_id_t pid; /* process id */
1154 @REPLY
1155 obj_handle_t handle; /* handle to the snapshot */
1156 @END
1159 /* Get the next process from a snapshot */
1160 @REQ(next_process)
1161 obj_handle_t handle; /* handle to the snapshot */
1162 int reset; /* reset snapshot position? */
1163 @REPLY
1164 int count; /* process usage count */
1165 process_id_t pid; /* process id */
1166 process_id_t ppid; /* parent process id */
1167 void* heap; /* heap base */
1168 void* module; /* main module */
1169 int threads; /* number of threads */
1170 int priority; /* process priority */
1171 VARARG(filename,string); /* file name of main exe */
1172 @END
1175 /* Get the next thread from a snapshot */
1176 @REQ(next_thread)
1177 obj_handle_t handle; /* handle to the snapshot */
1178 int reset; /* reset snapshot position? */
1179 @REPLY
1180 int count; /* thread usage count */
1181 process_id_t pid; /* process id */
1182 thread_id_t tid; /* thread id */
1183 int base_pri; /* base priority */
1184 int delta_pri; /* delta priority */
1185 @END
1188 /* Get the next module from a snapshot */
1189 @REQ(next_module)
1190 obj_handle_t handle; /* handle to the snapshot */
1191 int reset; /* reset snapshot position? */
1192 @REPLY
1193 process_id_t pid; /* process id */
1194 void* base; /* module base address */
1195 size_t size; /* module size */
1196 VARARG(filename,string); /* file name of module */
1197 @END
1200 /* Wait for a debug event */
1201 @REQ(wait_debug_event)
1202 int get_handle; /* should we alloc a handle for waiting? */
1203 @REPLY
1204 process_id_t pid; /* process id */
1205 thread_id_t tid; /* thread id */
1206 obj_handle_t wait; /* wait handle if no event ready */
1207 VARARG(event,debug_event); /* debug event data */
1208 @END
1211 /* Queue an exception event */
1212 @REQ(queue_exception_event)
1213 int first; /* first chance exception? */
1214 VARARG(record,exc_event); /* thread context followed by exception record */
1215 @REPLY
1216 obj_handle_t handle; /* handle to the queued event */
1217 @END
1220 /* Retrieve the status of an exception event */
1221 @REQ(get_exception_status)
1222 obj_handle_t handle; /* handle to the queued event */
1223 @REPLY
1224 int status; /* event continuation status */
1225 VARARG(context,context); /* modified thread context */
1226 @END
1229 /* Send an output string to the debugger */
1230 @REQ(output_debug_string)
1231 void* string; /* string to display (in debugged process address space) */
1232 int unicode; /* is it Unicode? */
1233 int length; /* string length */
1234 @END
1237 /* Continue a debug event */
1238 @REQ(continue_debug_event)
1239 process_id_t pid; /* process id to continue */
1240 thread_id_t tid; /* thread id to continue */
1241 int status; /* continuation status */
1242 @END
1245 /* Start/stop debugging an existing process */
1246 @REQ(debug_process)
1247 process_id_t pid; /* id of the process to debug */
1248 int attach; /* 1=attaching / 0=detaching from the process */
1249 @END
1252 /* Simulate a breakpoint in a process */
1253 @REQ(debug_break)
1254 obj_handle_t handle; /* process handle */
1255 @REPLY
1256 int self; /* was it the caller itself? */
1257 @END
1260 /* Set debugger kill on exit flag */
1261 @REQ(set_debugger_kill_on_exit)
1262 int kill_on_exit; /* 0=detach/1=kill debuggee when debugger dies */
1263 @END
1266 /* Read data from a process address space */
1267 @REQ(read_process_memory)
1268 obj_handle_t handle; /* process handle */
1269 void* addr; /* addr to read from */
1270 @REPLY
1271 VARARG(data,bytes); /* result data */
1272 @END
1275 /* Write data to a process address space */
1276 @REQ(write_process_memory)
1277 obj_handle_t handle; /* process handle */
1278 void* addr; /* addr to write to (must be int-aligned) */
1279 unsigned int first_mask; /* mask for first word */
1280 unsigned int last_mask; /* mask for last word */
1281 VARARG(data,bytes); /* data to write */
1282 @END
1285 /* Create a registry key */
1286 @REQ(create_key)
1287 obj_handle_t parent; /* handle to the parent key */
1288 unsigned int access; /* desired access rights */
1289 unsigned int options; /* creation options */
1290 time_t modif; /* last modification time */
1291 size_t namelen; /* length of key name in bytes */
1292 VARARG(name,unicode_str,namelen); /* key name */
1293 VARARG(class,unicode_str); /* class name */
1294 @REPLY
1295 obj_handle_t hkey; /* handle to the created key */
1296 int created; /* has it been newly created? */
1297 @END
1299 /* Open a registry key */
1300 @REQ(open_key)
1301 obj_handle_t parent; /* handle to the parent key */
1302 unsigned int access; /* desired access rights */
1303 VARARG(name,unicode_str); /* key name */
1304 @REPLY
1305 obj_handle_t hkey; /* handle to the open key */
1306 @END
1309 /* Delete a registry key */
1310 @REQ(delete_key)
1311 obj_handle_t hkey; /* handle to the key */
1312 @END
1315 /* Enumerate registry subkeys */
1316 @REQ(enum_key)
1317 obj_handle_t hkey; /* handle to registry key */
1318 int index; /* index of subkey (or -1 for current key) */
1319 int info_class; /* requested information class */
1320 @REPLY
1321 int subkeys; /* number of subkeys */
1322 int max_subkey; /* longest subkey name */
1323 int max_class; /* longest class name */
1324 int values; /* number of values */
1325 int max_value; /* longest value name */
1326 int max_data; /* longest value data */
1327 time_t modif; /* last modification time */
1328 size_t total; /* total length needed for full name and class */
1329 size_t namelen; /* length of key name in bytes */
1330 VARARG(name,unicode_str,namelen); /* key name */
1331 VARARG(class,unicode_str); /* class name */
1332 @END
1335 /* Set a value of a registry key */
1336 @REQ(set_key_value)
1337 obj_handle_t hkey; /* handle to registry key */
1338 int type; /* value type */
1339 size_t namelen; /* length of value name in bytes */
1340 VARARG(name,unicode_str,namelen); /* value name */
1341 VARARG(data,bytes); /* value data */
1342 @END
1345 /* Retrieve the value of a registry key */
1346 @REQ(get_key_value)
1347 obj_handle_t hkey; /* handle to registry key */
1348 VARARG(name,unicode_str); /* value name */
1349 @REPLY
1350 int type; /* value type */
1351 size_t total; /* total length needed for data */
1352 VARARG(data,bytes); /* value data */
1353 @END
1356 /* Enumerate a value of a registry key */
1357 @REQ(enum_key_value)
1358 obj_handle_t hkey; /* handle to registry key */
1359 int index; /* value index */
1360 int info_class; /* requested information class */
1361 @REPLY
1362 int type; /* value type */
1363 size_t total; /* total length needed for full name and data */
1364 size_t namelen; /* length of value name in bytes */
1365 VARARG(name,unicode_str,namelen); /* value name */
1366 VARARG(data,bytes); /* value data */
1367 @END
1370 /* Delete a value of a registry key */
1371 @REQ(delete_key_value)
1372 obj_handle_t hkey; /* handle to registry key */
1373 VARARG(name,unicode_str); /* value name */
1374 @END
1377 /* Load a registry branch from a file */
1378 @REQ(load_registry)
1379 obj_handle_t hkey; /* root key to load to */
1380 obj_handle_t file; /* file to load from */
1381 VARARG(name,unicode_str); /* subkey name */
1382 @END
1385 /* Save a registry branch to a file */
1386 @REQ(save_registry)
1387 obj_handle_t hkey; /* key to save */
1388 obj_handle_t file; /* file to save to */
1389 @END
1392 /* Save a registry branch at server exit */
1393 @REQ(save_registry_atexit)
1394 obj_handle_t hkey; /* key to save */
1395 VARARG(file,string); /* file to save to */
1396 @END
1399 /* Set the current and saving level for the registry */
1400 @REQ(set_registry_levels)
1401 int current; /* new current level */
1402 int saving; /* new saving level */
1403 int period; /* duration between periodic saves (milliseconds) */
1404 @END
1407 @REQ(set_registry_notification)
1408 obj_handle_t hkey; /* key to watch for changes */
1409 obj_handle_t event; /* event to set */
1410 int subtree; /* should we watch the whole subtree? */
1411 unsigned int filter; /* things to watch */
1412 @END
1415 /* Create a waitable timer */
1416 @REQ(create_timer)
1417 int inherit; /* inherit flag */
1418 int manual; /* manual reset */
1419 VARARG(name,unicode_str); /* object name */
1420 @REPLY
1421 obj_handle_t handle; /* handle to the timer */
1422 @END
1425 /* Open a waitable timer */
1426 @REQ(open_timer)
1427 unsigned int access; /* wanted access rights */
1428 int inherit; /* inherit flag */
1429 VARARG(name,unicode_str); /* object name */
1430 @REPLY
1431 obj_handle_t handle; /* handle to the timer */
1432 @END
1434 /* Set a waitable timer */
1435 @REQ(set_timer)
1436 obj_handle_t handle; /* handle to the timer */
1437 abs_time_t expire; /* next expiration absolute time */
1438 int period; /* timer period in ms */
1439 void* callback; /* callback function */
1440 void* arg; /* callback argument */
1441 @REPLY
1442 int signaled; /* was the timer signaled before this call ? */
1443 @END
1445 /* Cancel a waitable timer */
1446 @REQ(cancel_timer)
1447 obj_handle_t handle; /* handle to the timer */
1448 @REPLY
1449 int signaled; /* was the timer signaled before this calltime ? */
1450 @END
1453 /* Retrieve the current context of a thread */
1454 @REQ(get_thread_context)
1455 obj_handle_t handle; /* thread handle */
1456 unsigned int flags; /* context flags */
1457 @REPLY
1458 VARARG(context,context); /* thread context */
1459 @END
1462 /* Set the current context of a thread */
1463 @REQ(set_thread_context)
1464 obj_handle_t handle; /* thread handle */
1465 unsigned int flags; /* context flags */
1466 VARARG(context,context); /* thread context */
1467 @END
1470 /* Fetch a selector entry for a thread */
1471 @REQ(get_selector_entry)
1472 obj_handle_t handle; /* thread handle */
1473 int entry; /* LDT entry */
1474 @REPLY
1475 unsigned int base; /* selector base */
1476 unsigned int limit; /* selector limit */
1477 unsigned char flags; /* selector flags */
1478 @END
1481 /* Add an atom */
1482 @REQ(add_atom)
1483 int local; /* is atom in local process table? */
1484 VARARG(name,unicode_str); /* atom name */
1485 @REPLY
1486 atom_t atom; /* resulting atom */
1487 @END
1490 /* Delete an atom */
1491 @REQ(delete_atom)
1492 atom_t atom; /* atom handle */
1493 int local; /* is atom in local process table? */
1494 @END
1497 /* Find an atom */
1498 @REQ(find_atom)
1499 int local; /* is atom in local process table? */
1500 VARARG(name,unicode_str); /* atom name */
1501 @REPLY
1502 atom_t atom; /* atom handle */
1503 @END
1506 /* Get an atom name */
1507 @REQ(get_atom_name)
1508 atom_t atom; /* atom handle */
1509 int local; /* is atom in local process table? */
1510 @REPLY
1511 int count; /* atom lock count */
1512 VARARG(name,unicode_str); /* atom name */
1513 @END
1516 /* Init the process atom table */
1517 @REQ(init_atom_table)
1518 int entries; /* number of entries */
1519 @END
1522 /* Get the message queue of the current thread */
1523 @REQ(get_msg_queue)
1524 @REPLY
1525 obj_handle_t handle; /* handle to the queue */
1526 @END
1529 /* Set the current message queue wakeup mask */
1530 @REQ(set_queue_mask)
1531 unsigned int wake_mask; /* wakeup bits mask */
1532 unsigned int changed_mask; /* changed bits mask */
1533 int skip_wait; /* will we skip waiting if signaled? */
1534 @REPLY
1535 unsigned int wake_bits; /* current wake bits */
1536 unsigned int changed_bits; /* current changed bits */
1537 @END
1540 /* Get the current message queue status */
1541 @REQ(get_queue_status)
1542 int clear; /* should we clear the change bits? */
1543 @REPLY
1544 unsigned int wake_bits; /* wake bits */
1545 unsigned int changed_bits; /* changed bits since last time */
1546 @END
1549 /* Wait for a process to start waiting on input */
1550 @REQ(wait_input_idle)
1551 obj_handle_t handle; /* process handle */
1552 int timeout; /* timeout */
1553 @REPLY
1554 obj_handle_t event; /* handle to idle event */
1555 @END
1558 /* Send a message to a thread queue */
1559 @REQ(send_message)
1560 thread_id_t id; /* thread id */
1561 int type; /* message type (see below) */
1562 user_handle_t win; /* window handle */
1563 unsigned int msg; /* message code */
1564 unsigned int wparam; /* parameters */
1565 unsigned int lparam; /* parameters */
1566 int x; /* x position */
1567 int y; /* y position */
1568 unsigned int time; /* message time */
1569 unsigned int info; /* extra info */
1570 int timeout; /* timeout for reply */
1571 VARARG(data,bytes); /* message data for sent messages */
1572 @END
1574 enum message_type
1576 MSG_ASCII, /* Ascii message (from SendMessageA) */
1577 MSG_UNICODE, /* Unicode message (from SendMessageW) */
1578 MSG_NOTIFY, /* notify message (from SendNotifyMessageW), always Unicode */
1579 MSG_CALLBACK, /* callback message (from SendMessageCallbackW), always Unicode */
1580 MSG_OTHER_PROCESS, /* sent from other process, may include vararg data, always Unicode */
1581 MSG_POSTED, /* posted message (from PostMessageW), always Unicode */
1582 MSG_HARDWARE /* hardware message */
1586 /* Get a message from the current queue */
1587 @REQ(get_message)
1588 int flags; /* see below */
1589 user_handle_t get_win; /* window handle to get */
1590 unsigned int get_first; /* first message code to get */
1591 unsigned int get_last; /* last message code to get */
1592 @REPLY
1593 int type; /* message type */
1594 user_handle_t win; /* window handle */
1595 unsigned int msg; /* message code */
1596 unsigned int wparam; /* parameters */
1597 unsigned int lparam; /* parameters */
1598 int x; /* x position */
1599 int y; /* y position */
1600 unsigned int time; /* message time */
1601 unsigned int info; /* extra info */
1602 size_t total; /* total size of extra data */
1603 VARARG(data,bytes); /* message data for sent messages */
1604 @END
1605 #define GET_MSG_REMOVE 1 /* remove the message */
1606 #define GET_MSG_SENT_ONLY 2 /* only get sent messages */
1608 /* Reply to a sent message */
1609 @REQ(reply_message)
1610 int type; /* type of original message */
1611 unsigned int result; /* message result */
1612 int remove; /* should we remove the message? */
1613 VARARG(data,bytes); /* message data for sent messages */
1614 @END
1617 /* Retrieve the reply for the last message sent */
1618 @REQ(get_message_reply)
1619 int cancel; /* cancel message if not ready? */
1620 @REPLY
1621 unsigned int result; /* message result */
1622 VARARG(data,bytes); /* message data for sent messages */
1623 @END
1626 /* Set a window timer */
1627 @REQ(set_win_timer)
1628 user_handle_t win; /* window handle */
1629 unsigned int msg; /* message to post */
1630 unsigned int id; /* timer id */
1631 unsigned int rate; /* timer rate in ms */
1632 unsigned int lparam; /* message lparam (callback proc) */
1633 @END
1636 /* Kill a window timer */
1637 @REQ(kill_win_timer)
1638 user_handle_t win; /* window handle */
1639 unsigned int msg; /* message to post */
1640 unsigned int id; /* timer id */
1641 @END
1644 /* Open a serial port */
1645 @REQ(create_serial)
1646 unsigned int access; /* wanted access rights */
1647 int inherit; /* inherit flag */
1648 unsigned int attributes; /* eg. FILE_FLAG_OVERLAPPED */
1649 unsigned int sharing; /* sharing flags */
1650 VARARG(name,string); /* file name */
1651 @REPLY
1652 obj_handle_t handle; /* handle to the port */
1653 @END
1656 /* Retrieve info about a serial port */
1657 @REQ(get_serial_info)
1658 obj_handle_t handle; /* handle to comm port */
1659 @REPLY
1660 unsigned int readinterval;
1661 unsigned int readconst;
1662 unsigned int readmult;
1663 unsigned int writeconst;
1664 unsigned int writemult;
1665 unsigned int eventmask;
1666 unsigned int commerror;
1667 @END
1670 /* Set info about a serial port */
1671 @REQ(set_serial_info)
1672 obj_handle_t handle; /* handle to comm port */
1673 int flags; /* bitmask to set values (see below) */
1674 unsigned int readinterval;
1675 unsigned int readconst;
1676 unsigned int readmult;
1677 unsigned int writeconst;
1678 unsigned int writemult;
1679 unsigned int eventmask;
1680 unsigned int commerror;
1681 @END
1682 #define SERIALINFO_SET_TIMEOUTS 0x01
1683 #define SERIALINFO_SET_MASK 0x02
1684 #define SERIALINFO_SET_ERROR 0x04
1687 /* Create / reschedule an async I/O */
1688 @REQ(register_async)
1689 obj_handle_t handle; /* handle to comm port, socket or file */
1690 int type;
1691 void* overlapped;
1692 int count;
1693 unsigned int status;
1694 @END
1695 #define ASYNC_TYPE_NONE 0x00
1696 #define ASYNC_TYPE_READ 0x01
1697 #define ASYNC_TYPE_WRITE 0x02
1698 #define ASYNC_TYPE_WAIT 0x03
1701 /* Create a named pipe */
1702 @REQ(create_named_pipe)
1703 unsigned int openmode;
1704 unsigned int pipemode;
1705 unsigned int maxinstances;
1706 unsigned int outsize;
1707 unsigned int insize;
1708 unsigned int timeout;
1709 VARARG(name,unicode_str); /* pipe name */
1710 @REPLY
1711 obj_handle_t handle; /* handle to the pipe */
1712 @END
1715 /* Open an existing named pipe */
1716 @REQ(open_named_pipe)
1717 unsigned int access;
1718 int inherit; /* inherit flag */
1719 VARARG(name,unicode_str); /* pipe name */
1720 @REPLY
1721 obj_handle_t handle; /* handle to the pipe */
1722 @END
1725 /* Connect to a named pipe */
1726 @REQ(connect_named_pipe)
1727 obj_handle_t handle;
1728 void* overlapped;
1729 void* func;
1730 @END
1733 /* Wait for a named pipe */
1734 @REQ(wait_named_pipe)
1735 unsigned int timeout;
1736 void* overlapped;
1737 void* func;
1738 VARARG(name,unicode_str); /* pipe name */
1739 @END
1742 /* Disconnect a named pipe */
1743 @REQ(disconnect_named_pipe)
1744 obj_handle_t handle;
1745 @REPLY
1746 int fd; /* associated fd to close */
1747 @END
1750 @REQ(get_named_pipe_info)
1751 obj_handle_t handle;
1752 @REPLY
1753 unsigned int flags;
1754 unsigned int maxinstances;
1755 unsigned int outsize;
1756 unsigned int insize;
1757 @END
1760 @REQ(create_smb)
1761 int fd;
1762 unsigned int tree_id;
1763 unsigned int user_id;
1764 unsigned int file_id;
1765 unsigned int dialect;
1766 @REPLY
1767 obj_handle_t handle;
1768 @END
1771 @REQ(get_smb_info)
1772 obj_handle_t handle;
1773 unsigned int flags;
1774 unsigned int offset;
1775 @REPLY
1776 unsigned int tree_id;
1777 unsigned int user_id;
1778 unsigned int dialect;
1779 unsigned int file_id;
1780 unsigned int offset;
1781 @END
1782 #define SMBINFO_SET_OFFSET 0x01
1785 /* Create a window */
1786 @REQ(create_window)
1787 user_handle_t parent; /* parent window */
1788 user_handle_t owner; /* owner window */
1789 atom_t atom; /* class atom */
1790 @REPLY
1791 user_handle_t handle; /* created window */
1792 @END
1795 /* Link a window into the tree */
1796 @REQ(link_window)
1797 user_handle_t handle; /* handle to the window */
1798 user_handle_t parent; /* handle to the parent */
1799 user_handle_t previous; /* previous child in Z-order */
1800 @REPLY
1801 user_handle_t full_parent; /* full handle of new parent */
1802 @END
1805 /* Destroy a window */
1806 @REQ(destroy_window)
1807 user_handle_t handle; /* handle to the window */
1808 @END
1811 /* Set a window owner */
1812 @REQ(set_window_owner)
1813 user_handle_t handle; /* handle to the window */
1814 user_handle_t owner; /* new owner */
1815 @REPLY
1816 user_handle_t full_owner; /* full handle of new owner */
1817 user_handle_t prev_owner; /* full handle of previous owner */
1818 @END
1821 /* Get information from a window handle */
1822 @REQ(get_window_info)
1823 user_handle_t handle; /* handle to the window */
1824 @REPLY
1825 user_handle_t full_handle; /* full 32-bit handle */
1826 user_handle_t last_active; /* last active popup */
1827 process_id_t pid; /* process owning the window */
1828 thread_id_t tid; /* thread owning the window */
1829 atom_t atom; /* class atom */
1830 @END
1833 /* Set some information in a window */
1834 @REQ(set_window_info)
1835 user_handle_t handle; /* handle to the window */
1836 unsigned int flags; /* flags for fields to set (see below) */
1837 unsigned int style; /* window style */
1838 unsigned int ex_style; /* window extended style */
1839 unsigned int id; /* window id */
1840 void* instance; /* creator instance */
1841 void* user_data; /* user-specific data */
1842 @REPLY
1843 unsigned int old_style; /* old window style */
1844 unsigned int old_ex_style; /* old window extended style */
1845 unsigned int old_id; /* old window id */
1846 void* old_instance; /* old creator instance */
1847 void* old_user_data; /* old user-specific data */
1848 @END
1849 #define SET_WIN_STYLE 0x01
1850 #define SET_WIN_EXSTYLE 0x02
1851 #define SET_WIN_ID 0x04
1852 #define SET_WIN_INSTANCE 0x08
1853 #define SET_WIN_USERDATA 0x10
1856 /* Get a list of the window parents, up to the root of the tree */
1857 @REQ(get_window_parents)
1858 user_handle_t handle; /* handle to the window */
1859 @REPLY
1860 int count; /* total count of parents */
1861 VARARG(parents,user_handles); /* parent handles */
1862 @END
1865 /* Get a list of the window children */
1866 @REQ(get_window_children)
1867 user_handle_t parent; /* parent window */
1868 atom_t atom; /* class atom for the listed children */
1869 thread_id_t tid; /* thread owning the listed children */
1870 @REPLY
1871 int count; /* total count of children */
1872 VARARG(children,user_handles); /* children handles */
1873 @END
1876 /* Get window tree information from a window handle */
1877 @REQ(get_window_tree)
1878 user_handle_t handle; /* handle to the window */
1879 @REPLY
1880 user_handle_t parent; /* parent window */
1881 user_handle_t owner; /* owner window */
1882 user_handle_t next_sibling; /* next sibling in Z-order */
1883 user_handle_t prev_sibling; /* prev sibling in Z-order */
1884 user_handle_t first_sibling; /* first sibling in Z-order */
1885 user_handle_t last_sibling; /* last sibling in Z-order */
1886 user_handle_t first_child; /* first child */
1887 user_handle_t last_child; /* last child */
1888 @END
1890 /* Set the window and client rectangles of a window */
1891 @REQ(set_window_rectangles)
1892 user_handle_t handle; /* handle to the window */
1893 rectangle_t window; /* window rectangle */
1894 rectangle_t client; /* client rectangle */
1895 @END
1898 /* Get the window and client rectangles of a window */
1899 @REQ(get_window_rectangles)
1900 user_handle_t handle; /* handle to the window */
1901 @REPLY
1902 rectangle_t window; /* window rectangle */
1903 rectangle_t client; /* client rectangle */
1904 @END
1907 /* Get the window text */
1908 @REQ(get_window_text)
1909 user_handle_t handle; /* handle to the window */
1910 @REPLY
1911 VARARG(text,unicode_str); /* window text */
1912 @END
1915 /* Set the window text */
1916 @REQ(set_window_text)
1917 user_handle_t handle; /* handle to the window */
1918 VARARG(text,unicode_str); /* window text */
1919 @END
1922 /* Increment the window paint count */
1923 @REQ(inc_window_paint_count)
1924 user_handle_t handle; /* handle to the window */
1925 int incr; /* increment (can be negative) */
1926 @END
1929 /* Get the coordinates offset between two windows */
1930 @REQ(get_windows_offset)
1931 user_handle_t from; /* handle to the first window */
1932 user_handle_t to; /* handle to the second window */
1933 @REPLY
1934 int x; /* x coordinate offset */
1935 int y; /* y coordinate offset */
1936 @END
1939 /* Set a window property */
1940 @REQ(set_window_property)
1941 user_handle_t window; /* handle to the window */
1942 atom_t atom; /* property atom (high-word set if it was a string) */
1943 int string; /* was atom a string originally? */
1944 obj_handle_t handle; /* handle to store */
1945 @END
1948 /* Remove a window property */
1949 @REQ(remove_window_property)
1950 user_handle_t window; /* handle to the window */
1951 atom_t atom; /* property atom */
1952 @REPLY
1953 obj_handle_t handle; /* handle stored in property */
1954 @END
1957 /* Get a window property */
1958 @REQ(get_window_property)
1959 user_handle_t window; /* handle to the window */
1960 atom_t atom; /* property atom */
1961 @REPLY
1962 obj_handle_t handle; /* handle stored in property */
1963 @END
1966 /* Get the list of properties of a window */
1967 @REQ(get_window_properties)
1968 user_handle_t window; /* handle to the window */
1969 @REPLY
1970 int total; /* total number of properties */
1971 VARARG(props,properties); /* list of properties */
1972 @END
1975 /* Attach (or detach) thread inputs */
1976 @REQ(attach_thread_input)
1977 thread_id_t tid_from; /* thread to be attached */
1978 thread_id_t tid_to; /* thread to which tid_from should be attached */
1979 int attach; /* is it an attach? */
1980 @END
1983 /* Get input data for a given thread */
1984 @REQ(get_thread_input)
1985 thread_id_t tid; /* id of thread */
1986 @REPLY
1987 user_handle_t focus; /* handle to the focus window */
1988 user_handle_t capture; /* handle to the capture window */
1989 user_handle_t active; /* handle to the active window */
1990 user_handle_t foreground; /* handle to the global foreground window */
1991 user_handle_t menu_owner; /* handle to the menu owner */
1992 user_handle_t move_size; /* handle to the moving/resizing window */
1993 user_handle_t caret; /* handle to the caret window */
1994 rectangle_t rect; /* caret rectangle */
1995 @END
1997 /* Retrieve queue keyboard state for a given thread */
1998 @REQ(get_key_state)
1999 thread_id_t tid; /* id of thread */
2000 int key; /* optional key code or -1 */
2001 @REPLY
2002 unsigned char state; /* state of specified key */
2003 VARARG(keystate,bytes); /* state array for all the keys */
2004 @END
2006 /* Set queue keyboard state for a given thread */
2007 @REQ(set_key_state)
2008 thread_id_t tid; /* id of thread */
2009 VARARG(keystate,bytes); /* state array for all the keys */
2010 @END
2012 /* Set the system foreground window */
2013 @REQ(set_foreground_window)
2014 user_handle_t handle; /* handle to the foreground window */
2015 @REPLY
2016 user_handle_t previous; /* handle to the previous foreground window */
2017 int send_msg_old; /* whether we have to send a msg to the old window */
2018 int send_msg_new; /* whether we have to send a msg to the new window */
2019 @END
2021 /* Set the current thread focus window */
2022 @REQ(set_focus_window)
2023 user_handle_t handle; /* handle to the focus window */
2024 @REPLY
2025 user_handle_t previous; /* handle to the previous focus window */
2026 @END
2028 /* Set the current thread active window */
2029 @REQ(set_active_window)
2030 user_handle_t handle; /* handle to the active window */
2031 @REPLY
2032 user_handle_t previous; /* handle to the previous active window */
2033 @END
2035 /* Set the current thread capture window */
2036 @REQ(set_capture_window)
2037 user_handle_t handle; /* handle to the capture window */
2038 unsigned int flags; /* capture flags (see below) */
2039 @REPLY
2040 user_handle_t previous; /* handle to the previous capture window */
2041 user_handle_t full_handle; /* full 32-bit handle of new capture window */
2042 @END
2043 #define CAPTURE_MENU 0x01 /* capture is for a menu */
2044 #define CAPTURE_MOVESIZE 0x02 /* capture is for moving/resizing */
2047 /* Set the current thread caret window */
2048 @REQ(set_caret_window)
2049 user_handle_t handle; /* handle to the caret window */
2050 int width; /* caret width */
2051 int height; /* caret height */
2052 @REPLY
2053 user_handle_t previous; /* handle to the previous caret window */
2054 rectangle_t old_rect; /* previous caret rectangle */
2055 int old_hide; /* previous hide count */
2056 int old_state; /* previous caret state (1=on, 0=off) */
2057 @END
2060 /* Set the current thread caret information */
2061 @REQ(set_caret_info)
2062 unsigned int flags; /* caret flags (see below) */
2063 user_handle_t handle; /* handle to the caret window */
2064 int x; /* caret x position */
2065 int y; /* caret y position */
2066 int hide; /* increment for hide count (can be negative to show it) */
2067 int state; /* caret state (1=on, 0=off, -1=toggle current state) */
2068 @REPLY
2069 user_handle_t full_handle; /* handle to the current caret window */
2070 rectangle_t old_rect; /* previous caret rectangle */
2071 int old_hide; /* previous hide count */
2072 int old_state; /* previous caret state (1=on, 0=off) */
2073 @END
2074 #define SET_CARET_POS 0x01 /* set the caret position from x,y */
2075 #define SET_CARET_HIDE 0x02 /* increment the caret hide count */
2076 #define SET_CARET_STATE 0x04 /* set the caret on/off state */
2079 /* Set a window hook */
2080 @REQ(set_hook)
2081 int id; /* id of the hook */
2082 thread_id_t tid; /* id of thread to set the hook into */
2083 void* proc; /* hook procedure */
2084 int unicode; /* is it a unicode hook? */
2085 VARARG(module,unicode_str); /* module name */
2086 @REPLY
2087 user_handle_t handle; /* handle to the hook */
2088 @END
2091 /* Remove a window hook */
2092 @REQ(remove_hook)
2093 user_handle_t handle; /* handle to the hook */
2094 int id; /* id of the hook if handle is 0 */
2095 void* proc; /* hook procedure if handle is 0 */
2096 @END
2099 /* Start calling a hook chain */
2100 @REQ(start_hook_chain)
2101 int id; /* id of the hook */
2102 @REPLY
2103 user_handle_t handle; /* handle to the next hook */
2104 void* proc; /* hook procedure */
2105 int unicode; /* is it a unicode hook? */
2106 VARARG(module,unicode_str); /* module name */
2107 @END
2110 /* Finished calling a hook chain */
2111 @REQ(finish_hook_chain)
2112 int id; /* id of the hook */
2113 @END
2116 /* Get the next hook to call */
2117 @REQ(get_next_hook)
2118 user_handle_t handle; /* handle to the current hook */
2119 @REPLY
2120 user_handle_t next; /* handle to the next hook */
2121 int id; /* id of the next hook */
2122 void* proc; /* next hook procedure */
2123 int prev_unicode; /* was the previous a unicode hook? */
2124 int next_unicode; /* is the next a unicode hook? */
2125 VARARG(module,unicode_str); /* module name */
2126 @END