Make the header in-line with current ICOM naming conventions.
[wine/multimedia.git] / server / protocol.def
blob51e3bc9c5a4a54849335fa90be8656b0c91627d6
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_CONSOLE,
631 FD_TYPE_SOCKET,
632 FD_TYPE_SMB
634 #define FD_FLAG_OVERLAPPED 0x01
635 #define FD_FLAG_TIMEOUT 0x02
636 #define FD_FLAG_RECV_SHUTDOWN 0x04
637 #define FD_FLAG_SEND_SHUTDOWN 0x08
639 /* Set a file current position */
640 @REQ(set_file_pointer)
641 obj_handle_t handle; /* handle to the file */
642 int low; /* position low word */
643 int high; /* position high word */
644 int whence; /* whence to seek */
645 @REPLY
646 int new_low; /* new position low word */
647 int new_high; /* new position high word */
648 @END
651 /* Truncate (or extend) a file */
652 @REQ(truncate_file)
653 obj_handle_t handle; /* handle to the file */
654 @END
657 /* Set a file access and modification times */
658 @REQ(set_file_time)
659 obj_handle_t handle; /* handle to the file */
660 time_t access_time; /* last access time */
661 time_t write_time; /* last write time */
662 @END
665 /* Flush a file buffers */
666 @REQ(flush_file)
667 obj_handle_t handle; /* handle to the file */
668 @REPLY
669 obj_handle_t event; /* event set when finished */
670 @END
673 /* Get information about a file */
674 @REQ(get_file_info)
675 obj_handle_t handle; /* handle to the file */
676 @REPLY
677 int type; /* file type */
678 int attr; /* file attributes */
679 time_t access_time; /* last access time */
680 time_t write_time; /* last write time */
681 int size_high; /* file size */
682 int size_low; /* file size */
683 int links; /* number of links */
684 int index_high; /* unique index */
685 int index_low; /* unique index */
686 unsigned int serial; /* volume serial number */
687 @END
690 /* Lock a region of a file */
691 @REQ(lock_file)
692 obj_handle_t handle; /* handle to the file */
693 unsigned int offset_low; /* offset of start of lock */
694 unsigned int offset_high; /* offset of start of lock */
695 unsigned int count_low; /* count of bytes to lock */
696 unsigned int count_high; /* count of bytes to lock */
697 int shared; /* shared or exclusive lock? */
698 int wait; /* do we want to wait? */
699 @REPLY
700 obj_handle_t handle; /* handle to wait on */
701 int overlapped; /* is it an overlapped I/O handle? */
702 @END
705 /* Unlock a region of a file */
706 @REQ(unlock_file)
707 obj_handle_t handle; /* handle to the file */
708 unsigned int offset_low; /* offset of start of unlock */
709 unsigned int offset_high; /* offset of start of unlock */
710 unsigned int count_low; /* count of bytes to unlock */
711 unsigned int count_high; /* count of bytes to unlock */
712 @END
715 /* Create a socket */
716 @REQ(create_socket)
717 unsigned int access; /* wanted access rights */
718 int inherit; /* inherit flag */
719 int family; /* family, see socket manpage */
720 int type; /* type, see socket manpage */
721 int protocol; /* protocol, see socket manpage */
722 unsigned int flags; /* socket flags */
723 @REPLY
724 obj_handle_t handle; /* handle to the new socket */
725 @END
728 /* Accept a socket */
729 @REQ(accept_socket)
730 obj_handle_t lhandle; /* handle to the listening socket */
731 unsigned int access; /* wanted access rights */
732 int inherit; /* inherit flag */
733 @REPLY
734 obj_handle_t handle; /* handle to the new socket */
735 @END
738 /* Set socket event parameters */
739 @REQ(set_socket_event)
740 obj_handle_t handle; /* handle to the socket */
741 unsigned int mask; /* event mask */
742 obj_handle_t event; /* event object */
743 user_handle_t window; /* window to send the message to */
744 unsigned int msg; /* message to send */
745 @END
748 /* Get socket event parameters */
749 @REQ(get_socket_event)
750 obj_handle_t handle; /* handle to the socket */
751 int service; /* clear pending? */
752 obj_handle_t c_event; /* event to clear */
753 @REPLY
754 unsigned int mask; /* event mask */
755 unsigned int pmask; /* pending events */
756 unsigned int state; /* status bits */
757 VARARG(errors,ints); /* event errors */
758 @END
761 /* Reenable pending socket events */
762 @REQ(enable_socket_event)
763 obj_handle_t handle; /* handle to the socket */
764 unsigned int mask; /* events to re-enable */
765 unsigned int sstate; /* status bits to set */
766 unsigned int cstate; /* status bits to clear */
767 @END
769 @REQ(set_socket_deferred)
770 obj_handle_t handle; /* handle to the socket */
771 obj_handle_t deferred; /* handle to the socket for which accept() is deferred */
772 @END
774 /* Allocate a console (only used by a console renderer) */
775 @REQ(alloc_console)
776 unsigned int access; /* wanted access rights */
777 int inherit; /* inherit flag */
778 process_id_t pid; /* pid of process which shall be attached to the console */
779 @REPLY
780 obj_handle_t handle_in; /* handle to console input */
781 obj_handle_t event; /* handle to renderer events change notification */
782 @END
785 /* Free the console of the current process */
786 @REQ(free_console)
787 @END
790 #define CONSOLE_RENDERER_NONE_EVENT 0x00
791 #define CONSOLE_RENDERER_TITLE_EVENT 0x01
792 #define CONSOLE_RENDERER_ACTIVE_SB_EVENT 0x02
793 #define CONSOLE_RENDERER_SB_RESIZE_EVENT 0x03
794 #define CONSOLE_RENDERER_UPDATE_EVENT 0x04
795 #define CONSOLE_RENDERER_CURSOR_POS_EVENT 0x05
796 #define CONSOLE_RENDERER_CURSOR_GEOM_EVENT 0x06
797 #define CONSOLE_RENDERER_DISPLAY_EVENT 0x07
798 #define CONSOLE_RENDERER_EXIT_EVENT 0x08
799 struct console_renderer_event
801 short event;
802 union
804 struct update
806 short top;
807 short bottom;
808 } update;
809 struct resize
811 short width;
812 short height;
813 } resize;
814 struct cursor_pos
816 short x;
817 short y;
818 } cursor_pos;
819 struct cursor_geom
821 short visible;
822 short size;
823 } cursor_geom;
824 struct display
826 short left;
827 short top;
828 short width;
829 short height;
830 } display;
831 } u;
834 /* retrieve console events for the renderer */
835 @REQ(get_console_renderer_events)
836 obj_handle_t handle; /* handle to console input events */
837 @REPLY
838 VARARG(data,bytes); /* the various console_renderer_events */
839 @END
842 /* Open a handle to the process console */
843 @REQ(open_console)
844 int from; /* 0 (resp 1) input (resp output) of current process console */
845 /* otherwise console_in handle to get active screen buffer? */
846 unsigned int access; /* wanted access rights */
847 int inherit; /* inherit flag */
848 int share; /* share mask (only for output handles) */
849 @REPLY
850 obj_handle_t handle; /* handle to the console */
851 @END
854 /* Get a console mode (input or output) */
855 @REQ(get_console_mode)
856 obj_handle_t handle; /* handle to the console */
857 @REPLY
858 int mode; /* console mode */
859 @END
862 /* Set a console mode (input or output) */
863 @REQ(set_console_mode)
864 obj_handle_t handle; /* handle to the console */
865 int mode; /* console mode */
866 @END
869 /* Set info about a console (input only) */
870 @REQ(set_console_input_info)
871 obj_handle_t handle; /* handle to console input, or 0 for process' console */
872 int mask; /* setting mask (see below) */
873 obj_handle_t active_sb; /* active screen buffer */
874 int history_mode; /* whether we duplicate lines in history */
875 int history_size; /* number of lines in history */
876 int edition_mode; /* index to the edition mode flavors */
877 VARARG(title,unicode_str); /* console title */
878 @END
879 #define SET_CONSOLE_INPUT_INFO_ACTIVE_SB 0x01
880 #define SET_CONSOLE_INPUT_INFO_TITLE 0x02
881 #define SET_CONSOLE_INPUT_INFO_HISTORY_MODE 0x04
882 #define SET_CONSOLE_INPUT_INFO_HISTORY_SIZE 0x08
883 #define SET_CONSOLE_INPUT_INFO_EDITION_MODE 0x10
886 /* Get info about a console (input only) */
887 @REQ(get_console_input_info)
888 obj_handle_t handle; /* handle to console input, or 0 for process' console */
889 @REPLY
890 int history_mode; /* whether we duplicate lines in history */
891 int history_size; /* number of lines in history */
892 int history_index; /* number of used lines in history */
893 int edition_mode; /* index to the edition mode flavors */
894 VARARG(title,unicode_str); /* console title */
895 @END
898 /* appends a string to console's history */
899 @REQ(append_console_input_history)
900 obj_handle_t handle; /* handle to console input, or 0 for process' console */
901 VARARG(line,unicode_str); /* line to add */
902 @END
905 /* appends a string to console's history */
906 @REQ(get_console_input_history)
907 obj_handle_t handle; /* handle to console input, or 0 for process' console */
908 int index; /* index to get line from */
909 @REPLY
910 int total; /* total length of line in Unicode chars */
911 VARARG(line,unicode_str); /* line to add */
912 @END
915 /* creates a new screen buffer on process' console */
916 @REQ(create_console_output)
917 obj_handle_t handle_in; /* handle to console input, or 0 for process' console */
918 int access; /* wanted access rights */
919 int share; /* sharing credentials */
920 int inherit; /* inherit flag */
921 @REPLY
922 obj_handle_t handle_out; /* handle to the screen buffer */
923 @END
926 /* Set info about a console (output only) */
927 @REQ(set_console_output_info)
928 obj_handle_t handle; /* handle to the console */
929 int mask; /* setting mask (see below) */
930 short int cursor_size; /* size of cursor (percentage filled) */
931 short int cursor_visible;/* cursor visibility flag */
932 short int cursor_x; /* position of cursor (x, y) */
933 short int cursor_y;
934 short int width; /* width of the screen buffer */
935 short int height; /* height of the screen buffer */
936 short int attr; /* default attribute */
937 short int win_left; /* window actually displayed by renderer */
938 short int win_top; /* the rect area is expressed withing the */
939 short int win_right; /* boundaries of the screen buffer */
940 short int win_bottom;
941 short int max_width; /* maximum size (width x height) for the window */
942 short int max_height;
943 @END
944 #define SET_CONSOLE_OUTPUT_INFO_CURSOR_GEOM 0x01
945 #define SET_CONSOLE_OUTPUT_INFO_CURSOR_POS 0x02
946 #define SET_CONSOLE_OUTPUT_INFO_SIZE 0x04
947 #define SET_CONSOLE_OUTPUT_INFO_ATTR 0x08
948 #define SET_CONSOLE_OUTPUT_INFO_DISPLAY_WINDOW 0x10
949 #define SET_CONSOLE_OUTPUT_INFO_MAX_SIZE 0x20
952 /* Get info about a console (output only) */
953 @REQ(get_console_output_info)
954 obj_handle_t handle; /* handle to the console */
955 @REPLY
956 short int cursor_size; /* size of cursor (percentage filled) */
957 short int cursor_visible;/* cursor visibility flag */
958 short int cursor_x; /* position of cursor (x, y) */
959 short int cursor_y;
960 short int width; /* width of the screen buffer */
961 short int height; /* height of the screen buffer */
962 short int attr; /* default attribute */
963 short int win_left; /* window actually displayed by renderer */
964 short int win_top; /* the rect area is expressed withing the */
965 short int win_right; /* boundaries of the screen buffer */
966 short int win_bottom;
967 short int max_width; /* maximum size (width x height) for the window */
968 short int max_height;
969 @END
971 /* Add input records to a console input queue */
972 @REQ(write_console_input)
973 obj_handle_t handle; /* handle to the console input */
974 VARARG(rec,input_records); /* input records */
975 @REPLY
976 int written; /* number of records written */
977 @END
980 /* Fetch input records from a console input queue */
981 @REQ(read_console_input)
982 obj_handle_t handle; /* handle to the console input */
983 int flush; /* flush the retrieved records from the queue? */
984 @REPLY
985 int read; /* number of records read */
986 VARARG(rec,input_records); /* input records */
987 @END
990 /* write data (chars and/or attributes) in a screen buffer */
991 @REQ(write_console_output)
992 obj_handle_t handle; /* handle to the console output */
993 int x; /* position where to start writing */
994 int y;
995 int mode; /* char info (see below) */
996 int wrap; /* wrap around at end of line? */
997 VARARG(data,bytes); /* info to write */
998 @REPLY
999 int written; /* number of char infos actually written */
1000 int width; /* width of screen buffer */
1001 int height; /* height of screen buffer */
1002 @END
1003 enum char_info_mode
1005 CHAR_INFO_MODE_TEXT, /* characters only */
1006 CHAR_INFO_MODE_ATTR, /* attributes only */
1007 CHAR_INFO_MODE_TEXTATTR, /* both characters and attributes */
1008 CHAR_INFO_MODE_TEXTSTDATTR /* characters but use standard attributes */
1012 /* fill a screen buffer with constant data (chars and/or attributes) */
1013 @REQ(fill_console_output)
1014 obj_handle_t handle; /* handle to the console output */
1015 int x; /* position where to start writing */
1016 int y;
1017 int mode; /* char info mode */
1018 int count; /* number to write */
1019 int wrap; /* wrap around at end of line? */
1020 char_info_t data; /* data to write */
1021 @REPLY
1022 int written; /* number of char infos actually written */
1023 @END
1026 /* read data (chars and/or attributes) from a screen buffer */
1027 @REQ(read_console_output)
1028 obj_handle_t handle; /* handle to the console output */
1029 int x; /* position (x,y) where to start reading */
1030 int y;
1031 int mode; /* char info mode */
1032 int wrap; /* wrap around at end of line? */
1033 @REPLY
1034 int width; /* width of screen buffer */
1035 int height; /* height of screen buffer */
1036 VARARG(data,bytes);
1037 @END
1040 /* move a rect (of data) in screen buffer content */
1041 @REQ(move_console_output)
1042 obj_handle_t handle; /* handle to the console output */
1043 short int x_src; /* position (x, y) of rect to start moving from */
1044 short int y_src;
1045 short int x_dst; /* position (x, y) of rect to move to */
1046 short int y_dst;
1047 short int w; /* size of the rect (width, height) to move */
1048 short int h;
1049 @END
1052 /* Sends a signal to a process group */
1053 @REQ(send_console_signal)
1054 int signal; /* the signal to send */
1055 process_id_t group_id; /* the group to send the signal to */
1056 @END
1059 /* Create a change notification */
1060 @REQ(create_change_notification)
1061 obj_handle_t handle; /* handle to the directory */
1062 int subtree; /* watch all the subtree */
1063 unsigned int filter; /* notification filter */
1064 @REPLY
1065 obj_handle_t handle; /* handle to the change notification */
1066 @END
1069 /* Move to the next change notification */
1070 @REQ(next_change_notification)
1071 obj_handle_t handle; /* handle to the change notification */
1072 @END
1074 /* Create a file mapping */
1075 @REQ(create_mapping)
1076 int size_high; /* mapping size */
1077 int size_low; /* mapping size */
1078 int protect; /* protection flags (see below) */
1079 unsigned int access; /* wanted access rights */
1080 int inherit; /* inherit flag */
1081 obj_handle_t file_handle; /* file handle */
1082 VARARG(name,unicode_str); /* object name */
1083 @REPLY
1084 obj_handle_t handle; /* handle to the mapping */
1085 @END
1086 /* protection flags */
1087 #define VPROT_READ 0x01
1088 #define VPROT_WRITE 0x02
1089 #define VPROT_EXEC 0x04
1090 #define VPROT_WRITECOPY 0x08
1091 #define VPROT_GUARD 0x10
1092 #define VPROT_NOCACHE 0x20
1093 #define VPROT_COMMITTED 0x40
1094 #define VPROT_IMAGE 0x80
1097 /* Open a mapping */
1098 @REQ(open_mapping)
1099 unsigned int access; /* wanted access rights */
1100 int inherit; /* inherit flag */
1101 VARARG(name,unicode_str); /* object name */
1102 @REPLY
1103 obj_handle_t handle; /* handle to the mapping */
1104 @END
1107 /* Get information about a file mapping */
1108 @REQ(get_mapping_info)
1109 obj_handle_t handle; /* handle to the mapping */
1110 @REPLY
1111 int size_high; /* mapping size */
1112 int size_low; /* mapping size */
1113 int protect; /* protection flags */
1114 int header_size; /* header size (for VPROT_IMAGE mapping) */
1115 void* base; /* default base addr (for VPROT_IMAGE mapping) */
1116 obj_handle_t shared_file; /* shared mapping file handle */
1117 int shared_size; /* shared mapping size */
1118 int drive_type; /* type of drive the file is on */
1119 @END
1122 /* Create a device */
1123 @REQ(create_device)
1124 unsigned int access; /* wanted access rights */
1125 int inherit; /* inherit flag */
1126 int id; /* client private id */
1127 @REPLY
1128 obj_handle_t handle; /* handle to the device */
1129 @END
1132 /* Retrieve the client private id for a device */
1133 @REQ(get_device_id)
1134 obj_handle_t handle; /* handle to the device */
1135 @REPLY
1136 int id; /* client private id */
1137 @END
1140 #define SNAP_HEAPLIST 0x00000001
1141 #define SNAP_PROCESS 0x00000002
1142 #define SNAP_THREAD 0x00000004
1143 #define SNAP_MODULE 0x00000008
1144 /* Create a snapshot */
1145 @REQ(create_snapshot)
1146 int inherit; /* inherit flag */
1147 int flags; /* snapshot flags (SNAP_*) */
1148 process_id_t pid; /* process id */
1149 @REPLY
1150 obj_handle_t handle; /* handle to the snapshot */
1151 @END
1154 /* Get the next process from a snapshot */
1155 @REQ(next_process)
1156 obj_handle_t handle; /* handle to the snapshot */
1157 int reset; /* reset snapshot position? */
1158 @REPLY
1159 int count; /* process usage count */
1160 process_id_t pid; /* process id */
1161 process_id_t ppid; /* parent process id */
1162 void* heap; /* heap base */
1163 void* module; /* main module */
1164 int threads; /* number of threads */
1165 int priority; /* process priority */
1166 VARARG(filename,string); /* file name of main exe */
1167 @END
1170 /* Get the next thread from a snapshot */
1171 @REQ(next_thread)
1172 obj_handle_t handle; /* handle to the snapshot */
1173 int reset; /* reset snapshot position? */
1174 @REPLY
1175 int count; /* thread usage count */
1176 process_id_t pid; /* process id */
1177 thread_id_t tid; /* thread id */
1178 int base_pri; /* base priority */
1179 int delta_pri; /* delta priority */
1180 @END
1183 /* Get the next module from a snapshot */
1184 @REQ(next_module)
1185 obj_handle_t handle; /* handle to the snapshot */
1186 int reset; /* reset snapshot position? */
1187 @REPLY
1188 process_id_t pid; /* process id */
1189 void* base; /* module base address */
1190 size_t size; /* module size */
1191 VARARG(filename,string); /* file name of module */
1192 @END
1195 /* Wait for a debug event */
1196 @REQ(wait_debug_event)
1197 int get_handle; /* should we alloc a handle for waiting? */
1198 @REPLY
1199 process_id_t pid; /* process id */
1200 thread_id_t tid; /* thread id */
1201 obj_handle_t wait; /* wait handle if no event ready */
1202 VARARG(event,debug_event); /* debug event data */
1203 @END
1206 /* Queue an exception event */
1207 @REQ(queue_exception_event)
1208 int first; /* first chance exception? */
1209 VARARG(record,exc_event); /* thread context followed by exception record */
1210 @REPLY
1211 obj_handle_t handle; /* handle to the queued event */
1212 @END
1215 /* Retrieve the status of an exception event */
1216 @REQ(get_exception_status)
1217 obj_handle_t handle; /* handle to the queued event */
1218 @REPLY
1219 int status; /* event continuation status */
1220 VARARG(context,context); /* modified thread context */
1221 @END
1224 /* Send an output string to the debugger */
1225 @REQ(output_debug_string)
1226 void* string; /* string to display (in debugged process address space) */
1227 int unicode; /* is it Unicode? */
1228 int length; /* string length */
1229 @END
1232 /* Continue a debug event */
1233 @REQ(continue_debug_event)
1234 process_id_t pid; /* process id to continue */
1235 thread_id_t tid; /* thread id to continue */
1236 int status; /* continuation status */
1237 @END
1240 /* Start/stop debugging an existing process */
1241 @REQ(debug_process)
1242 process_id_t pid; /* id of the process to debug */
1243 int attach; /* 1=attaching / 0=detaching from the process */
1244 @END
1247 /* Simulate a breakpoint in a process */
1248 @REQ(debug_break)
1249 obj_handle_t handle; /* process handle */
1250 @REPLY
1251 int self; /* was it the caller itself? */
1252 @END
1255 /* Set debugger kill on exit flag */
1256 @REQ(set_debugger_kill_on_exit)
1257 int kill_on_exit; /* 0=detach/1=kill debuggee when debugger dies */
1258 @END
1261 /* Read data from a process address space */
1262 @REQ(read_process_memory)
1263 obj_handle_t handle; /* process handle */
1264 void* addr; /* addr to read from */
1265 @REPLY
1266 VARARG(data,bytes); /* result data */
1267 @END
1270 /* Write data to a process address space */
1271 @REQ(write_process_memory)
1272 obj_handle_t handle; /* process handle */
1273 void* addr; /* addr to write to (must be int-aligned) */
1274 unsigned int first_mask; /* mask for first word */
1275 unsigned int last_mask; /* mask for last word */
1276 VARARG(data,bytes); /* data to write */
1277 @END
1280 /* Create a registry key */
1281 @REQ(create_key)
1282 obj_handle_t parent; /* handle to the parent key */
1283 unsigned int access; /* desired access rights */
1284 unsigned int options; /* creation options */
1285 time_t modif; /* last modification time */
1286 size_t namelen; /* length of key name in bytes */
1287 VARARG(name,unicode_str,namelen); /* key name */
1288 VARARG(class,unicode_str); /* class name */
1289 @REPLY
1290 obj_handle_t hkey; /* handle to the created key */
1291 int created; /* has it been newly created? */
1292 @END
1294 /* Open a registry key */
1295 @REQ(open_key)
1296 obj_handle_t parent; /* handle to the parent key */
1297 unsigned int access; /* desired access rights */
1298 VARARG(name,unicode_str); /* key name */
1299 @REPLY
1300 obj_handle_t hkey; /* handle to the open key */
1301 @END
1304 /* Delete a registry key */
1305 @REQ(delete_key)
1306 obj_handle_t hkey; /* handle to the key */
1307 @END
1310 /* Enumerate registry subkeys */
1311 @REQ(enum_key)
1312 obj_handle_t hkey; /* handle to registry key */
1313 int index; /* index of subkey (or -1 for current key) */
1314 int info_class; /* requested information class */
1315 @REPLY
1316 int subkeys; /* number of subkeys */
1317 int max_subkey; /* longest subkey name */
1318 int max_class; /* longest class name */
1319 int values; /* number of values */
1320 int max_value; /* longest value name */
1321 int max_data; /* longest value data */
1322 time_t modif; /* last modification time */
1323 size_t total; /* total length needed for full name and class */
1324 size_t namelen; /* length of key name in bytes */
1325 VARARG(name,unicode_str,namelen); /* key name */
1326 VARARG(class,unicode_str); /* class name */
1327 @END
1330 /* Set a value of a registry key */
1331 @REQ(set_key_value)
1332 obj_handle_t hkey; /* handle to registry key */
1333 int type; /* value type */
1334 size_t namelen; /* length of value name in bytes */
1335 VARARG(name,unicode_str,namelen); /* value name */
1336 VARARG(data,bytes); /* value data */
1337 @END
1340 /* Retrieve the value of a registry key */
1341 @REQ(get_key_value)
1342 obj_handle_t hkey; /* handle to registry key */
1343 VARARG(name,unicode_str); /* value name */
1344 @REPLY
1345 int type; /* value type */
1346 size_t total; /* total length needed for data */
1347 VARARG(data,bytes); /* value data */
1348 @END
1351 /* Enumerate a value of a registry key */
1352 @REQ(enum_key_value)
1353 obj_handle_t hkey; /* handle to registry key */
1354 int index; /* value index */
1355 int info_class; /* requested information class */
1356 @REPLY
1357 int type; /* value type */
1358 size_t total; /* total length needed for full name and data */
1359 size_t namelen; /* length of value name in bytes */
1360 VARARG(name,unicode_str,namelen); /* value name */
1361 VARARG(data,bytes); /* value data */
1362 @END
1365 /* Delete a value of a registry key */
1366 @REQ(delete_key_value)
1367 obj_handle_t hkey; /* handle to registry key */
1368 VARARG(name,unicode_str); /* value name */
1369 @END
1372 /* Load a registry branch from a file */
1373 @REQ(load_registry)
1374 obj_handle_t hkey; /* root key to load to */
1375 obj_handle_t file; /* file to load from */
1376 VARARG(name,unicode_str); /* subkey name */
1377 @END
1380 /* Save a registry branch to a file */
1381 @REQ(save_registry)
1382 obj_handle_t hkey; /* key to save */
1383 obj_handle_t file; /* file to save to */
1384 @END
1387 /* Save a registry branch at server exit */
1388 @REQ(save_registry_atexit)
1389 obj_handle_t hkey; /* key to save */
1390 VARARG(file,string); /* file to save to */
1391 @END
1394 /* Set the current and saving level for the registry */
1395 @REQ(set_registry_levels)
1396 int current; /* new current level */
1397 int saving; /* new saving level */
1398 int period; /* duration between periodic saves (milliseconds) */
1399 @END
1402 @REQ(set_registry_notification)
1403 obj_handle_t hkey; /* key to watch for changes */
1404 obj_handle_t event; /* event to set */
1405 int subtree; /* should we watch the whole subtree? */
1406 unsigned int filter; /* things to watch */
1407 @END
1410 /* Create a waitable timer */
1411 @REQ(create_timer)
1412 int inherit; /* inherit flag */
1413 int manual; /* manual reset */
1414 VARARG(name,unicode_str); /* object name */
1415 @REPLY
1416 obj_handle_t handle; /* handle to the timer */
1417 @END
1420 /* Open a waitable timer */
1421 @REQ(open_timer)
1422 unsigned int access; /* wanted access rights */
1423 int inherit; /* inherit flag */
1424 VARARG(name,unicode_str); /* object name */
1425 @REPLY
1426 obj_handle_t handle; /* handle to the timer */
1427 @END
1429 /* Set a waitable timer */
1430 @REQ(set_timer)
1431 obj_handle_t handle; /* handle to the timer */
1432 abs_time_t expire; /* next expiration absolute time */
1433 int period; /* timer period in ms */
1434 void* callback; /* callback function */
1435 void* arg; /* callback argument */
1436 @REPLY
1437 int signaled; /* was the timer signaled before this call ? */
1438 @END
1440 /* Cancel a waitable timer */
1441 @REQ(cancel_timer)
1442 obj_handle_t handle; /* handle to the timer */
1443 @REPLY
1444 int signaled; /* was the timer signaled before this calltime ? */
1445 @END
1448 /* Retrieve the current context of a thread */
1449 @REQ(get_thread_context)
1450 obj_handle_t handle; /* thread handle */
1451 unsigned int flags; /* context flags */
1452 @REPLY
1453 VARARG(context,context); /* thread context */
1454 @END
1457 /* Set the current context of a thread */
1458 @REQ(set_thread_context)
1459 obj_handle_t handle; /* thread handle */
1460 unsigned int flags; /* context flags */
1461 VARARG(context,context); /* thread context */
1462 @END
1465 /* Fetch a selector entry for a thread */
1466 @REQ(get_selector_entry)
1467 obj_handle_t handle; /* thread handle */
1468 int entry; /* LDT entry */
1469 @REPLY
1470 unsigned int base; /* selector base */
1471 unsigned int limit; /* selector limit */
1472 unsigned char flags; /* selector flags */
1473 @END
1476 /* Add an atom */
1477 @REQ(add_atom)
1478 int local; /* is atom in local process table? */
1479 VARARG(name,unicode_str); /* atom name */
1480 @REPLY
1481 atom_t atom; /* resulting atom */
1482 @END
1485 /* Delete an atom */
1486 @REQ(delete_atom)
1487 atom_t atom; /* atom handle */
1488 int local; /* is atom in local process table? */
1489 @END
1492 /* Find an atom */
1493 @REQ(find_atom)
1494 int local; /* is atom in local process table? */
1495 VARARG(name,unicode_str); /* atom name */
1496 @REPLY
1497 atom_t atom; /* atom handle */
1498 @END
1501 /* Get an atom name */
1502 @REQ(get_atom_name)
1503 atom_t atom; /* atom handle */
1504 int local; /* is atom in local process table? */
1505 @REPLY
1506 int count; /* atom lock count */
1507 VARARG(name,unicode_str); /* atom name */
1508 @END
1511 /* Init the process atom table */
1512 @REQ(init_atom_table)
1513 int entries; /* number of entries */
1514 @END
1517 /* Get the message queue of the current thread */
1518 @REQ(get_msg_queue)
1519 @REPLY
1520 obj_handle_t handle; /* handle to the queue */
1521 @END
1524 /* Set the current message queue wakeup mask */
1525 @REQ(set_queue_mask)
1526 unsigned int wake_mask; /* wakeup bits mask */
1527 unsigned int changed_mask; /* changed bits mask */
1528 int skip_wait; /* will we skip waiting if signaled? */
1529 @REPLY
1530 unsigned int wake_bits; /* current wake bits */
1531 unsigned int changed_bits; /* current changed bits */
1532 @END
1535 /* Get the current message queue status */
1536 @REQ(get_queue_status)
1537 int clear; /* should we clear the change bits? */
1538 @REPLY
1539 unsigned int wake_bits; /* wake bits */
1540 unsigned int changed_bits; /* changed bits since last time */
1541 @END
1544 /* Wait for a process to start waiting on input */
1545 @REQ(wait_input_idle)
1546 obj_handle_t handle; /* process handle */
1547 int timeout; /* timeout */
1548 @REPLY
1549 obj_handle_t event; /* handle to idle event */
1550 @END
1553 /* Send a message to a thread queue */
1554 @REQ(send_message)
1555 thread_id_t id; /* thread id */
1556 int type; /* message type (see below) */
1557 user_handle_t win; /* window handle */
1558 unsigned int msg; /* message code */
1559 unsigned int wparam; /* parameters */
1560 unsigned int lparam; /* parameters */
1561 int x; /* x position */
1562 int y; /* y position */
1563 unsigned int time; /* message time */
1564 unsigned int info; /* extra info */
1565 int timeout; /* timeout for reply */
1566 VARARG(data,bytes); /* message data for sent messages */
1567 @END
1569 enum message_type
1571 MSG_ASCII, /* Ascii message (from SendMessageA) */
1572 MSG_UNICODE, /* Unicode message (from SendMessageW) */
1573 MSG_NOTIFY, /* notify message (from SendNotifyMessageW), always Unicode */
1574 MSG_CALLBACK, /* callback message (from SendMessageCallbackW), always Unicode */
1575 MSG_OTHER_PROCESS, /* sent from other process, may include vararg data, always Unicode */
1576 MSG_POSTED, /* posted message (from PostMessageW), always Unicode */
1577 MSG_HARDWARE /* hardware message */
1581 /* Get a message from the current queue */
1582 @REQ(get_message)
1583 int flags; /* see below */
1584 user_handle_t get_win; /* window handle to get */
1585 unsigned int get_first; /* first message code to get */
1586 unsigned int get_last; /* last message code to get */
1587 @REPLY
1588 int type; /* message type */
1589 user_handle_t win; /* window handle */
1590 unsigned int msg; /* message code */
1591 unsigned int wparam; /* parameters */
1592 unsigned int lparam; /* parameters */
1593 int x; /* x position */
1594 int y; /* y position */
1595 unsigned int time; /* message time */
1596 unsigned int info; /* extra info */
1597 size_t total; /* total size of extra data */
1598 VARARG(data,bytes); /* message data for sent messages */
1599 @END
1600 #define GET_MSG_REMOVE 1 /* remove the message */
1601 #define GET_MSG_SENT_ONLY 2 /* only get sent messages */
1603 /* Reply to a sent message */
1604 @REQ(reply_message)
1605 int type; /* type of original message */
1606 unsigned int result; /* message result */
1607 int remove; /* should we remove the message? */
1608 VARARG(data,bytes); /* message data for sent messages */
1609 @END
1612 /* Retrieve the reply for the last message sent */
1613 @REQ(get_message_reply)
1614 int cancel; /* cancel message if not ready? */
1615 @REPLY
1616 unsigned int result; /* message result */
1617 VARARG(data,bytes); /* message data for sent messages */
1618 @END
1621 /* Set a window timer */
1622 @REQ(set_win_timer)
1623 user_handle_t win; /* window handle */
1624 unsigned int msg; /* message to post */
1625 unsigned int id; /* timer id */
1626 unsigned int rate; /* timer rate in ms */
1627 unsigned int lparam; /* message lparam (callback proc) */
1628 @END
1631 /* Kill a window timer */
1632 @REQ(kill_win_timer)
1633 user_handle_t win; /* window handle */
1634 unsigned int msg; /* message to post */
1635 unsigned int id; /* timer id */
1636 @END
1639 /* Open a serial port */
1640 @REQ(create_serial)
1641 unsigned int access; /* wanted access rights */
1642 int inherit; /* inherit flag */
1643 unsigned int attributes; /* eg. FILE_FLAG_OVERLAPPED */
1644 unsigned int sharing; /* sharing flags */
1645 VARARG(name,string); /* file name */
1646 @REPLY
1647 obj_handle_t handle; /* handle to the port */
1648 @END
1651 /* Retrieve info about a serial port */
1652 @REQ(get_serial_info)
1653 obj_handle_t handle; /* handle to comm port */
1654 @REPLY
1655 unsigned int readinterval;
1656 unsigned int readconst;
1657 unsigned int readmult;
1658 unsigned int writeconst;
1659 unsigned int writemult;
1660 unsigned int eventmask;
1661 unsigned int commerror;
1662 @END
1665 /* Set info about a serial port */
1666 @REQ(set_serial_info)
1667 obj_handle_t handle; /* handle to comm port */
1668 int flags; /* bitmask to set values (see below) */
1669 unsigned int readinterval;
1670 unsigned int readconst;
1671 unsigned int readmult;
1672 unsigned int writeconst;
1673 unsigned int writemult;
1674 unsigned int eventmask;
1675 unsigned int commerror;
1676 @END
1677 #define SERIALINFO_SET_TIMEOUTS 0x01
1678 #define SERIALINFO_SET_MASK 0x02
1679 #define SERIALINFO_SET_ERROR 0x04
1682 /* Create / reschedule an async I/O */
1683 @REQ(register_async)
1684 obj_handle_t handle; /* handle to comm port, socket or file */
1685 int type;
1686 void* overlapped;
1687 int count;
1688 unsigned int status;
1689 @END
1690 #define ASYNC_TYPE_NONE 0x00
1691 #define ASYNC_TYPE_READ 0x01
1692 #define ASYNC_TYPE_WRITE 0x02
1693 #define ASYNC_TYPE_WAIT 0x03
1696 /* Create a named pipe */
1697 @REQ(create_named_pipe)
1698 unsigned int openmode;
1699 unsigned int pipemode;
1700 unsigned int maxinstances;
1701 unsigned int outsize;
1702 unsigned int insize;
1703 unsigned int timeout;
1704 VARARG(name,unicode_str); /* pipe name */
1705 @REPLY
1706 obj_handle_t handle; /* handle to the pipe */
1707 @END
1710 /* Open an existing named pipe */
1711 @REQ(open_named_pipe)
1712 unsigned int access;
1713 int inherit; /* inherit flag */
1714 VARARG(name,unicode_str); /* pipe name */
1715 @REPLY
1716 obj_handle_t handle; /* handle to the pipe */
1717 @END
1720 /* Connect to a named pipe */
1721 @REQ(connect_named_pipe)
1722 obj_handle_t handle;
1723 void* overlapped;
1724 void* func;
1725 @END
1728 /* Wait for a named pipe */
1729 @REQ(wait_named_pipe)
1730 unsigned int timeout;
1731 void* overlapped;
1732 void* func;
1733 VARARG(name,unicode_str); /* pipe name */
1734 @END
1737 /* Disconnect a named pipe */
1738 @REQ(disconnect_named_pipe)
1739 obj_handle_t handle;
1740 @REPLY
1741 int fd; /* associated fd to close */
1742 @END
1745 @REQ(get_named_pipe_info)
1746 obj_handle_t handle;
1747 @REPLY
1748 unsigned int flags;
1749 unsigned int maxinstances;
1750 unsigned int outsize;
1751 unsigned int insize;
1752 @END
1755 @REQ(create_smb)
1756 int fd;
1757 unsigned int tree_id;
1758 unsigned int user_id;
1759 unsigned int file_id;
1760 unsigned int dialect;
1761 @REPLY
1762 obj_handle_t handle;
1763 @END
1766 @REQ(get_smb_info)
1767 obj_handle_t handle;
1768 unsigned int flags;
1769 unsigned int offset;
1770 @REPLY
1771 unsigned int tree_id;
1772 unsigned int user_id;
1773 unsigned int dialect;
1774 unsigned int file_id;
1775 unsigned int offset;
1776 @END
1777 #define SMBINFO_SET_OFFSET 0x01
1780 /* Create a window */
1781 @REQ(create_window)
1782 user_handle_t parent; /* parent window */
1783 user_handle_t owner; /* owner window */
1784 atom_t atom; /* class atom */
1785 @REPLY
1786 user_handle_t handle; /* created window */
1787 @END
1790 /* Link a window into the tree */
1791 @REQ(link_window)
1792 user_handle_t handle; /* handle to the window */
1793 user_handle_t parent; /* handle to the parent */
1794 user_handle_t previous; /* previous child in Z-order */
1795 @REPLY
1796 user_handle_t full_parent; /* full handle of new parent */
1797 @END
1800 /* Destroy a window */
1801 @REQ(destroy_window)
1802 user_handle_t handle; /* handle to the window */
1803 @END
1806 /* Set a window owner */
1807 @REQ(set_window_owner)
1808 user_handle_t handle; /* handle to the window */
1809 user_handle_t owner; /* new owner */
1810 @REPLY
1811 user_handle_t full_owner; /* full handle of new owner */
1812 user_handle_t prev_owner; /* full handle of previous owner */
1813 @END
1816 /* Get information from a window handle */
1817 @REQ(get_window_info)
1818 user_handle_t handle; /* handle to the window */
1819 @REPLY
1820 user_handle_t full_handle; /* full 32-bit handle */
1821 user_handle_t last_active; /* last active popup */
1822 process_id_t pid; /* process owning the window */
1823 thread_id_t tid; /* thread owning the window */
1824 atom_t atom; /* class atom */
1825 @END
1828 /* Set some information in a window */
1829 @REQ(set_window_info)
1830 user_handle_t handle; /* handle to the window */
1831 unsigned int flags; /* flags for fields to set (see below) */
1832 unsigned int style; /* window style */
1833 unsigned int ex_style; /* window extended style */
1834 unsigned int id; /* window id */
1835 void* instance; /* creator instance */
1836 void* user_data; /* user-specific data */
1837 @REPLY
1838 unsigned int old_style; /* old window style */
1839 unsigned int old_ex_style; /* old window extended style */
1840 unsigned int old_id; /* old window id */
1841 void* old_instance; /* old creator instance */
1842 void* old_user_data; /* old user-specific data */
1843 @END
1844 #define SET_WIN_STYLE 0x01
1845 #define SET_WIN_EXSTYLE 0x02
1846 #define SET_WIN_ID 0x04
1847 #define SET_WIN_INSTANCE 0x08
1848 #define SET_WIN_USERDATA 0x10
1851 /* Get a list of the window parents, up to the root of the tree */
1852 @REQ(get_window_parents)
1853 user_handle_t handle; /* handle to the window */
1854 @REPLY
1855 int count; /* total count of parents */
1856 VARARG(parents,user_handles); /* parent handles */
1857 @END
1860 /* Get a list of the window children */
1861 @REQ(get_window_children)
1862 user_handle_t parent; /* parent window */
1863 atom_t atom; /* class atom for the listed children */
1864 thread_id_t tid; /* thread owning the listed children */
1865 @REPLY
1866 int count; /* total count of children */
1867 VARARG(children,user_handles); /* children handles */
1868 @END
1871 /* Get window tree information from a window handle */
1872 @REQ(get_window_tree)
1873 user_handle_t handle; /* handle to the window */
1874 @REPLY
1875 user_handle_t parent; /* parent window */
1876 user_handle_t owner; /* owner window */
1877 user_handle_t next_sibling; /* next sibling in Z-order */
1878 user_handle_t prev_sibling; /* prev sibling in Z-order */
1879 user_handle_t first_sibling; /* first sibling in Z-order */
1880 user_handle_t last_sibling; /* last sibling in Z-order */
1881 user_handle_t first_child; /* first child */
1882 user_handle_t last_child; /* last child */
1883 @END
1885 /* Set the window and client rectangles of a window */
1886 @REQ(set_window_rectangles)
1887 user_handle_t handle; /* handle to the window */
1888 rectangle_t window; /* window rectangle */
1889 rectangle_t client; /* client rectangle */
1890 @END
1893 /* Get the window and client rectangles of a window */
1894 @REQ(get_window_rectangles)
1895 user_handle_t handle; /* handle to the window */
1896 @REPLY
1897 rectangle_t window; /* window rectangle */
1898 rectangle_t client; /* client rectangle */
1899 @END
1902 /* Get the window text */
1903 @REQ(get_window_text)
1904 user_handle_t handle; /* handle to the window */
1905 @REPLY
1906 VARARG(text,unicode_str); /* window text */
1907 @END
1910 /* Set the window text */
1911 @REQ(set_window_text)
1912 user_handle_t handle; /* handle to the window */
1913 VARARG(text,unicode_str); /* window text */
1914 @END
1917 /* Increment the window paint count */
1918 @REQ(inc_window_paint_count)
1919 user_handle_t handle; /* handle to the window */
1920 int incr; /* increment (can be negative) */
1921 @END
1924 /* Get the coordinates offset between two windows */
1925 @REQ(get_windows_offset)
1926 user_handle_t from; /* handle to the first window */
1927 user_handle_t to; /* handle to the second window */
1928 @REPLY
1929 int x; /* x coordinate offset */
1930 int y; /* y coordinate offset */
1931 @END
1934 /* Set a window property */
1935 @REQ(set_window_property)
1936 user_handle_t window; /* handle to the window */
1937 atom_t atom; /* property atom (high-word set if it was a string) */
1938 int string; /* was atom a string originally? */
1939 obj_handle_t handle; /* handle to store */
1940 @END
1943 /* Remove a window property */
1944 @REQ(remove_window_property)
1945 user_handle_t window; /* handle to the window */
1946 atom_t atom; /* property atom */
1947 @REPLY
1948 obj_handle_t handle; /* handle stored in property */
1949 @END
1952 /* Get a window property */
1953 @REQ(get_window_property)
1954 user_handle_t window; /* handle to the window */
1955 atom_t atom; /* property atom */
1956 @REPLY
1957 obj_handle_t handle; /* handle stored in property */
1958 @END
1961 /* Get the list of properties of a window */
1962 @REQ(get_window_properties)
1963 user_handle_t window; /* handle to the window */
1964 @REPLY
1965 int total; /* total number of properties */
1966 VARARG(props,properties); /* list of properties */
1967 @END
1970 /* Attach (or detach) thread inputs */
1971 @REQ(attach_thread_input)
1972 thread_id_t tid_from; /* thread to be attached */
1973 thread_id_t tid_to; /* thread to which tid_from should be attached */
1974 int attach; /* is it an attach? */
1975 @END
1978 /* Get input data for a given thread */
1979 @REQ(get_thread_input)
1980 thread_id_t tid; /* id of thread */
1981 @REPLY
1982 user_handle_t focus; /* handle to the focus window */
1983 user_handle_t capture; /* handle to the capture window */
1984 user_handle_t active; /* handle to the active window */
1985 user_handle_t foreground; /* handle to the global foreground window */
1986 user_handle_t menu_owner; /* handle to the menu owner */
1987 user_handle_t move_size; /* handle to the moving/resizing window */
1988 user_handle_t caret; /* handle to the caret window */
1989 rectangle_t rect; /* caret rectangle */
1990 @END
1992 /* Retrieve queue keyboard state for a given thread */
1993 @REQ(get_key_state)
1994 thread_id_t tid; /* id of thread */
1995 int key; /* optional key code or -1 */
1996 @REPLY
1997 unsigned char state; /* state of specified key */
1998 VARARG(keystate,bytes); /* state array for all the keys */
1999 @END
2001 /* Set queue keyboard state for a given thread */
2002 @REQ(set_key_state)
2003 thread_id_t tid; /* id of thread */
2004 VARARG(keystate,bytes); /* state array for all the keys */
2005 @END
2007 /* Set the system foreground window */
2008 @REQ(set_foreground_window)
2009 user_handle_t handle; /* handle to the foreground window */
2010 @REPLY
2011 user_handle_t previous; /* handle to the previous foreground window */
2012 int send_msg_old; /* whether we have to send a msg to the old window */
2013 int send_msg_new; /* whether we have to send a msg to the new window */
2014 @END
2016 /* Set the current thread focus window */
2017 @REQ(set_focus_window)
2018 user_handle_t handle; /* handle to the focus window */
2019 @REPLY
2020 user_handle_t previous; /* handle to the previous focus window */
2021 @END
2023 /* Set the current thread active window */
2024 @REQ(set_active_window)
2025 user_handle_t handle; /* handle to the active window */
2026 @REPLY
2027 user_handle_t previous; /* handle to the previous active window */
2028 @END
2030 /* Set the current thread capture window */
2031 @REQ(set_capture_window)
2032 user_handle_t handle; /* handle to the capture window */
2033 unsigned int flags; /* capture flags (see below) */
2034 @REPLY
2035 user_handle_t previous; /* handle to the previous capture window */
2036 user_handle_t full_handle; /* full 32-bit handle of new capture window */
2037 @END
2038 #define CAPTURE_MENU 0x01 /* capture is for a menu */
2039 #define CAPTURE_MOVESIZE 0x02 /* capture is for moving/resizing */
2042 /* Set the current thread caret window */
2043 @REQ(set_caret_window)
2044 user_handle_t handle; /* handle to the caret window */
2045 int width; /* caret width */
2046 int height; /* caret height */
2047 @REPLY
2048 user_handle_t previous; /* handle to the previous caret window */
2049 rectangle_t old_rect; /* previous caret rectangle */
2050 int old_hide; /* previous hide count */
2051 int old_state; /* previous caret state (1=on, 0=off) */
2052 @END
2055 /* Set the current thread caret information */
2056 @REQ(set_caret_info)
2057 unsigned int flags; /* caret flags (see below) */
2058 user_handle_t handle; /* handle to the caret window */
2059 int x; /* caret x position */
2060 int y; /* caret y position */
2061 int hide; /* increment for hide count (can be negative to show it) */
2062 int state; /* caret state (1=on, 0=off, -1=toggle current state) */
2063 @REPLY
2064 user_handle_t full_handle; /* handle to the current caret window */
2065 rectangle_t old_rect; /* previous caret rectangle */
2066 int old_hide; /* previous hide count */
2067 int old_state; /* previous caret state (1=on, 0=off) */
2068 @END
2069 #define SET_CARET_POS 0x01 /* set the caret position from x,y */
2070 #define SET_CARET_HIDE 0x02 /* increment the caret hide count */
2071 #define SET_CARET_STATE 0x04 /* set the caret on/off state */
2074 /* Set a window hook */
2075 @REQ(set_hook)
2076 int id; /* id of the hook */
2077 thread_id_t tid; /* id of thread to set the hook into */
2078 void* proc; /* hook procedure */
2079 int unicode; /* is it a unicode hook? */
2080 VARARG(module,unicode_str); /* module name */
2081 @REPLY
2082 user_handle_t handle; /* handle to the hook */
2083 @END
2086 /* Remove a window hook */
2087 @REQ(remove_hook)
2088 user_handle_t handle; /* handle to the hook */
2089 int id; /* id of the hook if handle is 0 */
2090 void* proc; /* hook procedure if handle is 0 */
2091 @END
2094 /* Start calling a hook chain */
2095 @REQ(start_hook_chain)
2096 int id; /* id of the hook */
2097 @REPLY
2098 user_handle_t handle; /* handle to the next hook */
2099 void* proc; /* hook procedure */
2100 int unicode; /* is it a unicode hook? */
2101 VARARG(module,unicode_str); /* module name */
2102 @END
2105 /* Finished calling a hook chain */
2106 @REQ(finish_hook_chain)
2107 int id; /* id of the hook */
2108 @END
2111 /* Get the next hook to call */
2112 @REQ(get_next_hook)
2113 user_handle_t handle; /* handle to the current hook */
2114 @REPLY
2115 user_handle_t next; /* handle to the next hook */
2116 int id; /* id of the next hook */
2117 void* proc; /* next hook procedure */
2118 int prev_unicode; /* was the previous a unicode hook? */
2119 int next_unicode; /* is the next a unicode hook? */
2120 VARARG(module,unicode_str); /* module name */
2121 @END