server: Add read and write requests on file objects.
[wine.git] / server / protocol.def
blobb2c417defc747525d0a5fdc7bec6d6ca544885d2
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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
25 @HEADER /* start of C declarations */
27 #include <stdarg.h>
28 #include <stdlib.h>
29 #include <time.h>
31 #include <windef.h>
32 #include <winbase.h>
34 typedef unsigned int obj_handle_t;
35 typedef unsigned int user_handle_t;
36 typedef unsigned int atom_t;
37 typedef unsigned int process_id_t;
38 typedef unsigned int thread_id_t;
39 typedef unsigned int data_size_t;
40 typedef unsigned int ioctl_code_t;
41 typedef unsigned __int64 lparam_t;
42 typedef unsigned __int64 apc_param_t;
43 typedef unsigned __int64 mem_size_t;
44 typedef unsigned __int64 file_pos_t;
45 typedef unsigned __int64 client_ptr_t;
46 typedef unsigned __int64 affinity_t;
47 typedef client_ptr_t mod_handle_t;
49 struct request_header
51 int req; /* request code */
52 data_size_t request_size; /* request variable part size */
53 data_size_t reply_size; /* reply variable part maximum size */
56 struct reply_header
58 unsigned int error; /* error result */
59 data_size_t reply_size; /* reply variable part size */
62 /* placeholder structure for the maximum allowed request size */
63 /* this is used to construct the generic_request union */
64 struct request_max_size
66 int pad[16]; /* the max request size is 16 ints */
69 #define FIRST_USER_HANDLE 0x0020 /* first possible value for low word of user handle */
70 #define LAST_USER_HANDLE 0xffef /* last possible value for low word of user handle */
73 /* debug event data */
74 typedef union
76 int code; /* event code */
77 struct
79 int code; /* EXCEPTION_DEBUG_EVENT */
80 int first; /* first chance exception? */
81 unsigned int exc_code; /* exception code */
82 unsigned int flags; /* exception flags */
83 client_ptr_t record; /* exception record */
84 client_ptr_t address; /* exception address */
85 int nb_params; /* number of parameters */
86 int __pad;
87 client_ptr_t params[15]; /* parameters */
88 } exception;
89 struct
91 int code; /* CREATE_THREAD_DEBUG_EVENT */
92 obj_handle_t handle; /* handle to the new thread */
93 client_ptr_t teb; /* thread teb (in debugged process address space) */
94 client_ptr_t start; /* thread startup routine */
95 } create_thread;
96 struct
98 int code; /* CREATE_PROCESS_DEBUG_EVENT */
99 obj_handle_t file; /* handle to the process exe file */
100 obj_handle_t process; /* handle to the new process */
101 obj_handle_t thread; /* handle to the new thread */
102 mod_handle_t base; /* base of executable image */
103 int dbg_offset; /* offset of debug info in file */
104 int dbg_size; /* size of debug info */
105 client_ptr_t teb; /* thread teb (in debugged process address space) */
106 client_ptr_t start; /* thread startup routine */
107 client_ptr_t name; /* image name (optional) */
108 int unicode; /* is it Unicode? */
109 } create_process;
110 struct
112 int code; /* EXIT_THREAD_DEBUG_EVENT/EXIT_PROCESS_DEBUG_EVENT */
113 int exit_code; /* thread or process exit code */
114 } exit;
115 struct
117 int code; /* LOAD_DLL_DEBUG_EVENT */
118 obj_handle_t handle; /* file handle for the dll */
119 mod_handle_t base; /* base address of the dll */
120 int dbg_offset; /* offset of debug info in file */
121 int dbg_size; /* size of debug info */
122 client_ptr_t name; /* image name (optional) */
123 int unicode; /* is it Unicode? */
124 } load_dll;
125 struct
127 int code; /* UNLOAD_DLL_DEBUG_EVENT */
128 int __pad;
129 mod_handle_t base; /* base address of the dll */
130 } unload_dll;
131 } debug_event_t;
133 /* supported CPU types */
134 enum cpu_type
136 CPU_x86, CPU_x86_64, CPU_POWERPC, CPU_ARM, CPU_ARM64
138 typedef int cpu_type_t;
140 /* context data */
141 typedef struct
143 cpu_type_t cpu; /* cpu type */
144 unsigned int flags; /* SERVER_CTX_* flags */
145 union
147 struct { unsigned int eip, ebp, esp, eflags, cs, ss; } i386_regs;
148 struct { unsigned __int64 rip, rbp, rsp;
149 unsigned int cs, ss, flags, __pad; } x86_64_regs;
150 struct { unsigned int iar, msr, ctr, lr, dar, dsisr, trap, __pad; } powerpc_regs;
151 struct { unsigned int sp, lr, pc, cpsr; } arm_regs;
152 struct { unsigned __int64 sp, pc, pstate; } arm64_regs;
153 } ctl; /* selected by SERVER_CTX_CONTROL */
154 union
156 struct { unsigned int eax, ebx, ecx, edx, esi, edi; } i386_regs;
157 struct { unsigned __int64 rax,rbx, rcx, rdx, rsi, rdi,
158 r8, r9, r10, r11, r12, r13, r14, r15; } x86_64_regs;
159 struct { unsigned int gpr[32], cr, xer; } powerpc_regs;
160 struct { unsigned int r[13]; } arm_regs;
161 struct { unsigned __int64 x[31]; } arm64_regs;
162 } integer; /* selected by SERVER_CTX_INTEGER */
163 union
165 struct { unsigned int ds, es, fs, gs; } i386_regs;
166 struct { unsigned int ds, es, fs, gs; } x86_64_regs;
167 } seg; /* selected by SERVER_CTX_SEGMENTS */
168 union
170 struct { unsigned int ctrl, status, tag, err_off, err_sel, data_off, data_sel, cr0npx;
171 unsigned char regs[80]; } i386_regs;
172 struct { struct { unsigned __int64 low, high; } fpregs[32]; } x86_64_regs;
173 struct { double fpr[32], fpscr; } powerpc_regs;
174 } fp; /* selected by SERVER_CTX_FLOATING_POINT */
175 union
177 struct { unsigned int dr0, dr1, dr2, dr3, dr6, dr7; } i386_regs;
178 struct { unsigned __int64 dr0, dr1, dr2, dr3, dr6, dr7; } x86_64_regs;
179 struct { unsigned int dr[8]; } powerpc_regs;
180 } debug; /* selected by SERVER_CTX_DEBUG_REGISTERS */
181 union
183 unsigned char i386_regs[512];
184 } ext; /* selected by SERVER_CTX_EXTENDED_REGISTERS */
185 } context_t;
187 #define SERVER_CTX_CONTROL 0x01
188 #define SERVER_CTX_INTEGER 0x02
189 #define SERVER_CTX_SEGMENTS 0x04
190 #define SERVER_CTX_FLOATING_POINT 0x08
191 #define SERVER_CTX_DEBUG_REGISTERS 0x10
192 #define SERVER_CTX_EXTENDED_REGISTERS 0x20
194 /* structure used in sending an fd from client to server */
195 struct send_fd
197 thread_id_t tid; /* thread id */
198 int fd; /* file descriptor on client-side */
201 /* structure sent by the server on the wait fifo */
202 struct wake_up_reply
204 client_ptr_t cookie; /* magic cookie that was passed in select_request */
205 int signaled; /* wait result */
206 int __pad;
209 /* NT-style timeout, in 100ns units, negative means relative timeout */
210 typedef __int64 timeout_t;
211 #define TIMEOUT_INFINITE (((timeout_t)0x7fffffff) << 32 | 0xffffffff)
213 /* structure for process startup info */
214 typedef struct
216 unsigned int debug_flags;
217 unsigned int console_flags;
218 obj_handle_t console;
219 obj_handle_t hstdin;
220 obj_handle_t hstdout;
221 obj_handle_t hstderr;
222 unsigned int x;
223 unsigned int y;
224 unsigned int xsize;
225 unsigned int ysize;
226 unsigned int xchars;
227 unsigned int ychars;
228 unsigned int attribute;
229 unsigned int flags;
230 unsigned int show;
231 data_size_t curdir_len;
232 data_size_t dllpath_len;
233 data_size_t imagepath_len;
234 data_size_t cmdline_len;
235 data_size_t title_len;
236 data_size_t desktop_len;
237 data_size_t shellinfo_len;
238 data_size_t runtime_len;
239 /* VARARG(curdir,unicode_str,curdir_len); */
240 /* VARARG(dllpath,unicode_str,dllpath_len); */
241 /* VARARG(imagepath,unicode_str,imagepath_len); */
242 /* VARARG(cmdline,unicode_str,cmdline_len); */
243 /* VARARG(title,unicode_str,title_len); */
244 /* VARARG(desktop,unicode_str,desktop_len); */
245 /* VARARG(shellinfo,unicode_str,shellinfo_len); */
246 /* VARARG(runtime,unicode_str,runtime_len); */
247 } startup_info_t;
249 /* structure returned in the list of window properties */
250 typedef struct
252 atom_t atom; /* property atom */
253 int string; /* was atom a string originally? */
254 lparam_t data; /* data stored in property */
255 } property_data_t;
257 /* structure to specify window rectangles */
258 typedef struct
260 int left;
261 int top;
262 int right;
263 int bottom;
264 } rectangle_t;
266 /* structure for parameters of async I/O calls */
267 typedef struct
269 obj_handle_t handle; /* object to perform I/O on */
270 obj_handle_t event; /* event to signal when done */
271 client_ptr_t callback; /* client-side callback to call upon end of async */
272 client_ptr_t iosb; /* I/O status block in client addr space */
273 client_ptr_t arg; /* opaque user data to pass to callback */
274 apc_param_t cvalue; /* completion value to use for completion events */
275 } async_data_t;
277 /* structures for extra message data */
279 struct hardware_msg_data
281 lparam_t info; /* extra info */
282 unsigned int hw_id; /* unique id */
283 unsigned int flags; /* hook flags */
284 union
286 int type;
287 struct
289 int type; /* RIM_TYPEKEYBOARD */
290 unsigned int message; /* message generated by this rawinput event */
291 unsigned short vkey; /* virtual key code */
292 unsigned short scan; /* scan code */
293 } kbd;
294 struct
296 int type; /* RIM_TYPEMOUSE */
297 int x; /* x coordinate */
298 int y; /* y coordinate */
299 unsigned int data; /* mouse data */
300 } mouse;
301 } rawinput;
304 struct callback_msg_data
306 client_ptr_t callback; /* callback function */
307 lparam_t data; /* user data for callback */
308 lparam_t result; /* message result */
311 struct winevent_msg_data
313 user_handle_t hook; /* hook handle */
314 thread_id_t tid; /* thread id */
315 client_ptr_t hook_proc; /* hook proc address */
316 /* followed by module name if any */
319 typedef union
321 int type;
322 struct
324 int type; /* INPUT_KEYBOARD */
325 unsigned short vkey; /* virtual key code */
326 unsigned short scan; /* scan code */
327 unsigned int flags; /* event flags */
328 unsigned int time; /* event time */
329 lparam_t info; /* extra info */
330 } kbd;
331 struct
333 int type; /* INPUT_MOUSE */
334 int x; /* coordinates */
335 int y;
336 unsigned int data; /* mouse data */
337 unsigned int flags; /* event flags */
338 unsigned int time; /* event time */
339 lparam_t info; /* extra info */
340 } mouse;
341 struct
343 int type; /* INPUT_HARDWARE */
344 unsigned int msg; /* message code */
345 lparam_t lparam; /* message param */
346 } hw;
347 } hw_input_t;
349 typedef union
351 unsigned char bytes[1]; /* raw data for sent messages */
352 struct hardware_msg_data hardware;
353 struct callback_msg_data callback;
354 struct winevent_msg_data winevent;
355 } message_data_t;
357 /* structure for console char/attribute info */
358 typedef struct
360 WCHAR ch;
361 unsigned short attr;
362 } char_info_t;
364 /* structure returned in filesystem events */
365 struct filesystem_event
367 int action;
368 data_size_t len;
369 char name[1];
372 typedef struct
374 unsigned int low_part;
375 int high_part;
376 } luid_t;
378 #define MAX_ACL_LEN 65535
380 struct security_descriptor
382 unsigned int control; /* SE_ flags */
383 data_size_t owner_len;
384 data_size_t group_len;
385 data_size_t sacl_len;
386 data_size_t dacl_len;
387 /* VARARG(owner,SID); */
388 /* VARARG(group,SID); */
389 /* VARARG(sacl,ACL); */
390 /* VARARG(dacl,ACL); */
393 struct object_attributes
395 obj_handle_t rootdir; /* root directory */
396 data_size_t sd_len; /* length of security_descriptor data. may be 0 */
397 data_size_t name_len; /* length of the name string. may be 0 */
398 /* VARARG(sd,security_descriptor); */
399 /* VARARG(name,unicode_str); */
402 struct token_groups
404 unsigned int count;
405 /* unsigned int attributes[count]; */
406 /* VARARG(sids,SID); */
409 enum select_op
411 SELECT_NONE,
412 SELECT_WAIT,
413 SELECT_WAIT_ALL,
414 SELECT_SIGNAL_AND_WAIT,
415 SELECT_KEYED_EVENT_WAIT,
416 SELECT_KEYED_EVENT_RELEASE
419 typedef union
421 enum select_op op;
422 struct
424 enum select_op op; /* SELECT_WAIT or SELECT_WAIT_ALL */
425 obj_handle_t handles[MAXIMUM_WAIT_OBJECTS];
426 } wait;
427 struct
429 enum select_op op; /* SELECT_SIGNAL_AND_WAIT */
430 obj_handle_t wait;
431 obj_handle_t signal; /* must be last in the structure so we can remove it on retries */
432 } signal_and_wait;
433 struct
435 enum select_op op; /* SELECT_KEYED_EVENT_WAIT or SELECT_KEYED_EVENT_RELEASE */
436 obj_handle_t handle;
437 client_ptr_t key;
438 } keyed_event;
439 } select_op_t;
441 enum apc_type
443 APC_NONE,
444 APC_USER,
445 APC_TIMER,
446 APC_ASYNC_IO,
447 APC_VIRTUAL_ALLOC,
448 APC_VIRTUAL_FREE,
449 APC_VIRTUAL_QUERY,
450 APC_VIRTUAL_PROTECT,
451 APC_VIRTUAL_FLUSH,
452 APC_VIRTUAL_LOCK,
453 APC_VIRTUAL_UNLOCK,
454 APC_MAP_VIEW,
455 APC_UNMAP_VIEW,
456 APC_CREATE_THREAD
459 typedef union
461 enum apc_type type;
462 struct
464 enum apc_type type; /* APC_USER */
465 int __pad;
466 client_ptr_t func; /* void (__stdcall *func)(ULONG_PTR,ULONG_PTR,ULONG_PTR); */
467 apc_param_t args[3]; /* arguments for user function */
468 } user;
469 struct
471 enum apc_type type; /* APC_TIMER */
472 int __pad;
473 client_ptr_t func; /* void (__stdcall *func)(void*, unsigned int, unsigned int); */
474 timeout_t time; /* absolute time of expiration */
475 client_ptr_t arg; /* user argument */
476 } timer;
477 struct
479 enum apc_type type; /* APC_ASYNC_IO */
480 unsigned int status; /* I/O status */
481 client_ptr_t func; /* unsigned int (*func)(void*, void*, unsigned int, void**, void**); */
482 client_ptr_t user; /* user pointer */
483 client_ptr_t sb; /* status block */
484 } async_io;
485 struct
487 enum apc_type type; /* APC_VIRTUAL_ALLOC */
488 unsigned int op_type; /* type of operation */
489 client_ptr_t addr; /* requested address */
490 mem_size_t size; /* allocation size */
491 unsigned int zero_bits; /* allocation alignment */
492 unsigned int prot; /* memory protection flags */
493 } virtual_alloc;
494 struct
496 enum apc_type type; /* APC_VIRTUAL_FREE */
497 unsigned int op_type; /* type of operation */
498 client_ptr_t addr; /* requested address */
499 mem_size_t size; /* allocation size */
500 } virtual_free;
501 struct
503 enum apc_type type; /* APC_VIRTUAL_QUERY */
504 int __pad;
505 client_ptr_t addr; /* requested address */
506 } virtual_query;
507 struct
509 enum apc_type type; /* APC_VIRTUAL_PROTECT */
510 unsigned int prot; /* new protection flags */
511 client_ptr_t addr; /* requested address */
512 mem_size_t size; /* requested size */
513 } virtual_protect;
514 struct
516 enum apc_type type; /* APC_VIRTUAL_FLUSH */
517 int __pad;
518 client_ptr_t addr; /* requested address */
519 mem_size_t size; /* requested size */
520 } virtual_flush;
521 struct
523 enum apc_type type; /* APC_VIRTUAL_LOCK */
524 int __pad;
525 client_ptr_t addr; /* requested address */
526 mem_size_t size; /* requested size */
527 } virtual_lock;
528 struct
530 enum apc_type type; /* APC_VIRTUAL_UNLOCK */
531 int __pad;
532 client_ptr_t addr; /* requested address */
533 mem_size_t size; /* requested size */
534 } virtual_unlock;
535 struct
537 enum apc_type type; /* APC_MAP_VIEW */
538 obj_handle_t handle; /* mapping handle */
539 client_ptr_t addr; /* requested address */
540 mem_size_t size; /* allocation size */
541 file_pos_t offset; /* file offset */
542 unsigned int alloc_type;/* allocation type */
543 unsigned short zero_bits; /* allocation alignment */
544 unsigned short prot; /* memory protection flags */
545 } map_view;
546 struct
548 enum apc_type type; /* APC_UNMAP_VIEW */
549 int __pad;
550 client_ptr_t addr; /* view address */
551 } unmap_view;
552 struct
554 enum apc_type type; /* APC_CREATE_THREAD */
555 int suspend; /* suspended thread? */
556 client_ptr_t func; /* void (__stdcall *func)(void*); start function */
557 client_ptr_t arg; /* argument for start function */
558 mem_size_t reserve; /* reserve size for thread stack */
559 mem_size_t commit; /* commit size for thread stack */
560 } create_thread;
561 } apc_call_t;
563 typedef union
565 enum apc_type type;
566 struct
568 enum apc_type type; /* APC_ASYNC_IO */
569 unsigned int status; /* new status of async operation */
570 client_ptr_t apc; /* user APC to call */
571 client_ptr_t arg; /* user APC argument */
572 unsigned int total; /* bytes transferred */
573 } async_io;
574 struct
576 enum apc_type type; /* APC_VIRTUAL_ALLOC */
577 unsigned int status; /* status returned by call */
578 client_ptr_t addr; /* resulting address */
579 mem_size_t size; /* resulting size */
580 } virtual_alloc;
581 struct
583 enum apc_type type; /* APC_VIRTUAL_FREE */
584 unsigned int status; /* status returned by call */
585 client_ptr_t addr; /* resulting address */
586 mem_size_t size; /* resulting size */
587 } virtual_free;
588 struct
590 enum apc_type type; /* APC_VIRTUAL_QUERY */
591 unsigned int status; /* status returned by call */
592 client_ptr_t base; /* resulting base address */
593 client_ptr_t alloc_base;/* resulting allocation base */
594 mem_size_t size; /* resulting region size */
595 unsigned short state; /* resulting region state */
596 unsigned short prot; /* resulting region protection */
597 unsigned short alloc_prot;/* resulting allocation protection */
598 unsigned short alloc_type;/* resulting region allocation type */
599 } virtual_query;
600 struct
602 enum apc_type type; /* APC_VIRTUAL_PROTECT */
603 unsigned int status; /* status returned by call */
604 client_ptr_t addr; /* resulting address */
605 mem_size_t size; /* resulting size */
606 unsigned int prot; /* old protection flags */
607 } virtual_protect;
608 struct
610 enum apc_type type; /* APC_VIRTUAL_FLUSH */
611 unsigned int status; /* status returned by call */
612 client_ptr_t addr; /* resulting address */
613 mem_size_t size; /* resulting size */
614 } virtual_flush;
615 struct
617 enum apc_type type; /* APC_VIRTUAL_LOCK */
618 unsigned int status; /* status returned by call */
619 client_ptr_t addr; /* resulting address */
620 mem_size_t size; /* resulting size */
621 } virtual_lock;
622 struct
624 enum apc_type type; /* APC_VIRTUAL_UNLOCK */
625 unsigned int status; /* status returned by call */
626 client_ptr_t addr; /* resulting address */
627 mem_size_t size; /* resulting size */
628 } virtual_unlock;
629 struct
631 enum apc_type type; /* APC_MAP_VIEW */
632 unsigned int status; /* status returned by call */
633 client_ptr_t addr; /* resulting address */
634 mem_size_t size; /* resulting size */
635 } map_view;
636 struct
638 enum apc_type type; /* APC_MAP_VIEW */
639 unsigned int status; /* status returned by call */
640 } unmap_view;
641 struct
643 enum apc_type type; /* APC_CREATE_THREAD */
644 unsigned int status; /* status returned by call */
645 thread_id_t tid; /* thread id */
646 obj_handle_t handle; /* handle to new thread */
647 } create_thread;
648 } apc_result_t;
650 struct rawinput_device
652 unsigned short usage_page;
653 unsigned short usage;
654 unsigned int flags;
655 user_handle_t target;
658 /****************************************************************/
659 /* Request declarations */
661 /* Create a new process from the context of the parent */
662 @REQ(new_process)
663 int inherit_all; /* inherit all handles from parent */
664 unsigned int create_flags; /* creation flags */
665 int socket_fd; /* file descriptor for process socket */
666 obj_handle_t exe_file; /* file handle for main exe */
667 unsigned int process_access; /* access rights for process object */
668 unsigned int process_attr; /* attributes for process object */
669 unsigned int thread_access; /* access rights for thread object */
670 unsigned int thread_attr; /* attributes for thread object */
671 cpu_type_t cpu; /* CPU that the new process will use */
672 data_size_t info_size; /* size of startup info */
673 VARARG(info,startup_info,info_size); /* startup information */
674 VARARG(env,unicode_str); /* environment for new process */
675 @REPLY
676 obj_handle_t info; /* new process info handle */
677 process_id_t pid; /* process id */
678 obj_handle_t phandle; /* process handle (in the current process) */
679 thread_id_t tid; /* thread id */
680 obj_handle_t thandle; /* thread handle (in the current process) */
681 @END
684 /* Retrieve information about a newly started process */
685 @REQ(get_new_process_info)
686 obj_handle_t info; /* info handle returned from new_process_request */
687 @REPLY
688 int success; /* did the process start successfully? */
689 int exit_code; /* process exit code if failed */
690 @END
693 /* Create a new thread from the context of the parent */
694 @REQ(new_thread)
695 unsigned int access; /* wanted access rights */
696 unsigned int attributes; /* object attributes */
697 int suspend; /* new thread should be suspended on creation */
698 int request_fd; /* fd for request pipe */
699 @REPLY
700 thread_id_t tid; /* thread id */
701 obj_handle_t handle; /* thread handle (in the current process) */
702 @END
705 /* Retrieve the new process startup info */
706 @REQ(get_startup_info)
707 @REPLY
708 obj_handle_t exe_file; /* file handle for main exe */
709 data_size_t info_size; /* size of startup info */
710 VARARG(info,startup_info,info_size); /* startup information */
711 VARARG(env,unicode_str); /* environment */
712 @END
715 /* Signal the end of the process initialization */
716 @REQ(init_process_done)
717 int gui; /* is it a GUI process? */
718 mod_handle_t module; /* main module base address */
719 client_ptr_t ldt_copy; /* address of LDT copy (in thread address space) */
720 client_ptr_t entry; /* process entry point */
721 @END
724 /* Initialize a thread; called from the child after fork()/clone() */
725 @REQ(init_thread)
726 int unix_pid; /* Unix pid of new thread */
727 int unix_tid; /* Unix tid of new thread */
728 int debug_level; /* new debug level */
729 client_ptr_t teb; /* TEB of new thread (in thread address space) */
730 client_ptr_t entry; /* entry point or PEB if initial thread (in thread address space) */
731 int reply_fd; /* fd for reply pipe */
732 int wait_fd; /* fd for blocking calls pipe */
733 cpu_type_t cpu; /* CPU that this thread is running on */
734 @REPLY
735 process_id_t pid; /* process id of the new thread's process */
736 thread_id_t tid; /* thread id of the new thread */
737 timeout_t server_start; /* server start time */
738 data_size_t info_size; /* total size of startup info */
739 int version; /* protocol version */
740 unsigned int all_cpus; /* bitset of supported CPUs */
741 @END
744 /* Terminate a process */
745 @REQ(terminate_process)
746 obj_handle_t handle; /* process handle to terminate */
747 int exit_code; /* process exit code */
748 @REPLY
749 int self; /* suicide? */
750 @END
753 /* Terminate a thread */
754 @REQ(terminate_thread)
755 obj_handle_t handle; /* thread handle to terminate */
756 int exit_code; /* thread exit code */
757 @REPLY
758 int self; /* suicide? */
759 int last; /* last thread in this process? */
760 @END
763 /* Retrieve information about a process */
764 @REQ(get_process_info)
765 obj_handle_t handle; /* process handle */
766 @REPLY
767 process_id_t pid; /* server process id */
768 process_id_t ppid; /* server process id of parent */
769 affinity_t affinity; /* process affinity mask */
770 client_ptr_t peb; /* PEB address in process address space */
771 timeout_t start_time; /* process start time */
772 timeout_t end_time; /* process end time */
773 int exit_code; /* process exit code */
774 int priority; /* priority class */
775 cpu_type_t cpu; /* CPU that this process is running on */
776 int debugger_present; /* process is being debugged */
777 @END
780 /* Set a process information */
781 @REQ(set_process_info)
782 obj_handle_t handle; /* process handle */
783 int mask; /* setting mask (see below) */
784 int priority; /* priority class */
785 affinity_t affinity; /* affinity mask */
786 @END
787 #define SET_PROCESS_INFO_PRIORITY 0x01
788 #define SET_PROCESS_INFO_AFFINITY 0x02
791 /* Retrieve information about a thread */
792 @REQ(get_thread_info)
793 obj_handle_t handle; /* thread handle */
794 thread_id_t tid_in; /* thread id (optional) */
795 @REPLY
796 process_id_t pid; /* server process id */
797 thread_id_t tid; /* server thread id */
798 client_ptr_t teb; /* thread teb pointer */
799 affinity_t affinity; /* thread affinity mask */
800 timeout_t creation_time; /* thread creation time */
801 timeout_t exit_time; /* thread exit time */
802 int exit_code; /* thread exit code */
803 int priority; /* thread priority level */
804 int last; /* last thread in process */
805 @END
808 /* Set a thread information */
809 @REQ(set_thread_info)
810 obj_handle_t handle; /* thread handle */
811 int mask; /* setting mask (see below) */
812 int priority; /* priority class */
813 affinity_t affinity; /* affinity mask */
814 obj_handle_t token; /* impersonation token */
815 @END
816 #define SET_THREAD_INFO_PRIORITY 0x01
817 #define SET_THREAD_INFO_AFFINITY 0x02
818 #define SET_THREAD_INFO_TOKEN 0x04
821 /* Retrieve information about a module */
822 @REQ(get_dll_info)
823 obj_handle_t handle; /* process handle */
824 mod_handle_t base_address; /* base address of module */
825 @REPLY
826 client_ptr_t entry_point;
827 data_size_t size; /* module size */
828 data_size_t filename_len; /* buffer len in bytes required to store filename */
829 VARARG(filename,unicode_str); /* file name of module */
830 @END
833 /* Suspend a thread */
834 @REQ(suspend_thread)
835 obj_handle_t handle; /* thread handle */
836 @REPLY
837 int count; /* new suspend count */
838 @END
841 /* Resume a thread */
842 @REQ(resume_thread)
843 obj_handle_t handle; /* thread handle */
844 @REPLY
845 int count; /* new suspend count */
846 @END
849 /* Notify the server that a dll has been loaded */
850 @REQ(load_dll)
851 obj_handle_t mapping; /* file mapping handle */
852 mod_handle_t base; /* base address */
853 client_ptr_t name; /* ptr to ptr to name (in process addr space) */
854 data_size_t size; /* dll size */
855 int dbg_offset; /* debug info offset */
856 int dbg_size; /* debug info size */
857 VARARG(filename,unicode_str); /* file name of dll */
858 @END
861 /* Notify the server that a dll is being unloaded */
862 @REQ(unload_dll)
863 mod_handle_t base; /* base address */
864 @END
867 /* Queue an APC for a thread or process */
868 @REQ(queue_apc)
869 obj_handle_t handle; /* thread or process handle */
870 apc_call_t call; /* call arguments */
871 @REPLY
872 obj_handle_t handle; /* APC handle */
873 int self; /* run APC in caller itself? */
874 @END
877 /* Get the result of an APC call */
878 @REQ(get_apc_result)
879 obj_handle_t handle; /* handle to the APC */
880 @REPLY
881 apc_result_t result; /* result of the APC */
882 @END
885 /* Close a handle for the current process */
886 @REQ(close_handle)
887 obj_handle_t handle; /* handle to close */
888 @END
891 /* Set a handle information */
892 @REQ(set_handle_info)
893 obj_handle_t handle; /* handle we are interested in */
894 int flags; /* new handle flags */
895 int mask; /* mask for flags to set */
896 @REPLY
897 int old_flags; /* old flag value */
898 @END
901 /* Duplicate a handle */
902 @REQ(dup_handle)
903 obj_handle_t src_process; /* src process handle */
904 obj_handle_t src_handle; /* src handle to duplicate */
905 obj_handle_t dst_process; /* dst process handle */
906 unsigned int access; /* wanted access rights */
907 unsigned int attributes; /* object attributes */
908 unsigned int options; /* duplicate options (see below) */
909 @REPLY
910 obj_handle_t handle; /* duplicated handle in dst process */
911 int self; /* is the source the current process? */
912 int closed; /* whether the source handle has been closed */
913 @END
914 #define DUP_HANDLE_CLOSE_SOURCE DUPLICATE_CLOSE_SOURCE
915 #define DUP_HANDLE_SAME_ACCESS DUPLICATE_SAME_ACCESS
916 #define DUP_HANDLE_MAKE_GLOBAL 0x80000000 /* Not a Windows flag */
919 /* Open a handle to a process */
920 @REQ(open_process)
921 process_id_t pid; /* process id to open */
922 unsigned int access; /* wanted access rights */
923 unsigned int attributes; /* object attributes */
924 @REPLY
925 obj_handle_t handle; /* handle to the process */
926 @END
929 /* Open a handle to a thread */
930 @REQ(open_thread)
931 thread_id_t tid; /* thread id to open */
932 unsigned int access; /* wanted access rights */
933 unsigned int attributes; /* object attributes */
934 @REPLY
935 obj_handle_t handle; /* handle to the thread */
936 @END
939 /* Wait for handles */
940 @REQ(select)
941 int flags; /* wait flags (see below) */
942 client_ptr_t cookie; /* magic cookie to return to client */
943 timeout_t timeout; /* timeout */
944 obj_handle_t prev_apc; /* handle to previous APC */
945 VARARG(result,apc_result); /* result of previous APC */
946 VARARG(data,select_op); /* operation-specific data */
947 @REPLY
948 timeout_t timeout; /* timeout converted to absolute */
949 apc_call_t call; /* APC call arguments */
950 obj_handle_t apc_handle; /* handle to next APC */
951 @END
952 #define SELECT_ALERTABLE 1
953 #define SELECT_INTERRUPTIBLE 2
956 /* Create an event */
957 @REQ(create_event)
958 unsigned int access; /* wanted access rights */
959 unsigned int attributes; /* object attributes */
960 int manual_reset; /* manual reset event */
961 int initial_state; /* initial state of the event */
962 VARARG(objattr,object_attributes); /* object attributes */
963 @REPLY
964 obj_handle_t handle; /* handle to the event */
965 @END
967 /* Event operation */
968 @REQ(event_op)
969 obj_handle_t handle; /* handle to event */
970 int op; /* event operation (see below) */
971 @END
972 enum event_op { PULSE_EVENT, SET_EVENT, RESET_EVENT };
974 @REQ(query_event)
975 obj_handle_t handle; /* handle to event */
976 @REPLY
977 int manual_reset; /* manual reset event */
978 int state; /* current state of the event */
979 @END
981 /* Open an event */
982 @REQ(open_event)
983 unsigned int access; /* wanted access rights */
984 unsigned int attributes; /* object attributes */
985 obj_handle_t rootdir; /* root directory */
986 VARARG(name,unicode_str); /* object name */
987 @REPLY
988 obj_handle_t handle; /* handle to the event */
989 @END
992 /* Create a keyed event */
993 @REQ(create_keyed_event)
994 unsigned int access; /* wanted access rights */
995 unsigned int attributes; /* object attributes */
996 VARARG(objattr,object_attributes); /* object attributes */
997 @REPLY
998 obj_handle_t handle; /* handle to the event */
999 @END
1001 /* Open a keyed event */
1002 @REQ(open_keyed_event)
1003 unsigned int access; /* wanted access rights */
1004 unsigned int attributes; /* object attributes */
1005 obj_handle_t rootdir; /* root directory */
1006 VARARG(name,unicode_str); /* object name */
1007 @REPLY
1008 obj_handle_t handle; /* handle to the event */
1009 @END
1012 /* Create a mutex */
1013 @REQ(create_mutex)
1014 unsigned int access; /* wanted access rights */
1015 unsigned int attributes; /* object attributes */
1016 int owned; /* initially owned? */
1017 VARARG(objattr,object_attributes); /* object attributes */
1018 @REPLY
1019 obj_handle_t handle; /* handle to the mutex */
1020 @END
1023 /* Release a mutex */
1024 @REQ(release_mutex)
1025 obj_handle_t handle; /* handle to the mutex */
1026 @REPLY
1027 unsigned int prev_count; /* value of internal counter, before release */
1028 @END
1031 /* Open a mutex */
1032 @REQ(open_mutex)
1033 unsigned int access; /* wanted access rights */
1034 unsigned int attributes; /* object attributes */
1035 obj_handle_t rootdir; /* root directory */
1036 VARARG(name,unicode_str); /* object name */
1037 @REPLY
1038 obj_handle_t handle; /* handle to the mutex */
1039 @END
1042 /* Create a semaphore */
1043 @REQ(create_semaphore)
1044 unsigned int access; /* wanted access rights */
1045 unsigned int attributes; /* object attributes */
1046 unsigned int initial; /* initial count */
1047 unsigned int max; /* maximum count */
1048 VARARG(objattr,object_attributes); /* object attributes */
1049 @REPLY
1050 obj_handle_t handle; /* handle to the semaphore */
1051 @END
1054 /* Release a semaphore */
1055 @REQ(release_semaphore)
1056 obj_handle_t handle; /* handle to the semaphore */
1057 unsigned int count; /* count to add to semaphore */
1058 @REPLY
1059 unsigned int prev_count; /* previous semaphore count */
1060 @END
1062 @REQ(query_semaphore)
1063 obj_handle_t handle; /* handle to the semaphore */
1064 @REPLY
1065 unsigned int current; /* current count */
1066 unsigned int max; /* maximum count */
1067 @END
1069 /* Open a semaphore */
1070 @REQ(open_semaphore)
1071 unsigned int access; /* wanted access rights */
1072 unsigned int attributes; /* object attributes */
1073 obj_handle_t rootdir; /* root directory */
1074 VARARG(name,unicode_str); /* object name */
1075 @REPLY
1076 obj_handle_t handle; /* handle to the semaphore */
1077 @END
1080 /* Create a file */
1081 @REQ(create_file)
1082 unsigned int access; /* wanted access rights */
1083 unsigned int attributes; /* object attributes */
1084 unsigned int sharing; /* sharing flags */
1085 int create; /* file create action */
1086 unsigned int options; /* file options */
1087 unsigned int attrs; /* file attributes for creation */
1088 VARARG(objattr,object_attributes); /* object attributes */
1089 VARARG(filename,string); /* file name */
1090 @REPLY
1091 obj_handle_t handle; /* handle to the file */
1092 @END
1095 /* Open a file object */
1096 @REQ(open_file_object)
1097 unsigned int access; /* wanted access rights */
1098 unsigned int attributes; /* open attributes */
1099 obj_handle_t rootdir; /* root directory */
1100 unsigned int sharing; /* sharing flags */
1101 unsigned int options; /* file options */
1102 VARARG(filename,unicode_str); /* file name */
1103 @REPLY
1104 obj_handle_t handle; /* handle to the file */
1105 @END
1108 /* Allocate a file handle for a Unix fd */
1109 @REQ(alloc_file_handle)
1110 unsigned int access; /* wanted access rights */
1111 unsigned int attributes; /* object attributes */
1112 int fd; /* file descriptor on the client side */
1113 @REPLY
1114 obj_handle_t handle; /* handle to the file */
1115 @END
1118 /* Get the Unix name from a file handle */
1119 @REQ(get_handle_unix_name)
1120 obj_handle_t handle; /* file handle */
1121 @REPLY
1122 data_size_t name_len; /* unix name length */
1123 VARARG(name,string); /* unix name */
1124 @END
1127 /* Get a Unix fd to access a file */
1128 @REQ(get_handle_fd)
1129 obj_handle_t handle; /* handle to the file */
1130 @REPLY
1131 int type; /* file type (see below) */
1132 int cacheable; /* can fd be cached in the client? */
1133 unsigned int access; /* file access rights */
1134 unsigned int options; /* file open options */
1135 @END
1136 enum server_fd_type
1138 FD_TYPE_INVALID, /* invalid file (no associated fd) */
1139 FD_TYPE_FILE, /* regular file */
1140 FD_TYPE_DIR, /* directory */
1141 FD_TYPE_SOCKET, /* socket */
1142 FD_TYPE_SERIAL, /* serial port */
1143 FD_TYPE_PIPE, /* named pipe */
1144 FD_TYPE_MAILSLOT, /* mailslot */
1145 FD_TYPE_CHAR, /* unspecified char device */
1146 FD_TYPE_DEVICE, /* Windows device file */
1147 FD_TYPE_NB_TYPES
1151 /* Flush a file buffers */
1152 @REQ(flush)
1153 int blocking; /* whether it's a blocking flush */
1154 async_data_t async; /* async I/O parameters */
1155 @REPLY
1156 obj_handle_t event; /* event set when finished */
1157 @END
1160 /* Lock a region of a file */
1161 @REQ(lock_file)
1162 obj_handle_t handle; /* handle to the file */
1163 file_pos_t offset; /* offset of start of lock */
1164 file_pos_t count; /* count of bytes to lock */
1165 int shared; /* shared or exclusive lock? */
1166 int wait; /* do we want to wait? */
1167 @REPLY
1168 obj_handle_t handle; /* handle to wait on */
1169 int overlapped; /* is it an overlapped I/O handle? */
1170 @END
1173 /* Unlock a region of a file */
1174 @REQ(unlock_file)
1175 obj_handle_t handle; /* handle to the file */
1176 file_pos_t offset; /* offset of start of unlock */
1177 file_pos_t count; /* count of bytes to unlock */
1178 @END
1181 /* Create a socket */
1182 @REQ(create_socket)
1183 unsigned int access; /* wanted access rights */
1184 unsigned int attributes; /* object attributes */
1185 int family; /* family, see socket manpage */
1186 int type; /* type, see socket manpage */
1187 int protocol; /* protocol, see socket manpage */
1188 unsigned int flags; /* socket flags */
1189 @REPLY
1190 obj_handle_t handle; /* handle to the new socket */
1191 @END
1194 /* Accept a socket */
1195 @REQ(accept_socket)
1196 obj_handle_t lhandle; /* handle to the listening socket */
1197 unsigned int access; /* wanted access rights */
1198 unsigned int attributes; /* object attributes */
1199 @REPLY
1200 obj_handle_t handle; /* handle to the new socket */
1201 @END
1204 /* Accept into an initialized socket */
1205 @REQ(accept_into_socket)
1206 obj_handle_t lhandle; /* handle to the listening socket */
1207 obj_handle_t ahandle; /* handle to the accepting socket */
1208 @END
1211 /* Set socket event parameters */
1212 @REQ(set_socket_event)
1213 obj_handle_t handle; /* handle to the socket */
1214 unsigned int mask; /* event mask */
1215 obj_handle_t event; /* event object */
1216 user_handle_t window; /* window to send the message to */
1217 unsigned int msg; /* message to send */
1218 @END
1221 /* Get socket event parameters */
1222 @REQ(get_socket_event)
1223 obj_handle_t handle; /* handle to the socket */
1224 int service; /* clear pending? */
1225 obj_handle_t c_event; /* event to clear */
1226 @REPLY
1227 unsigned int mask; /* event mask */
1228 unsigned int pmask; /* pending events */
1229 unsigned int state; /* status bits */
1230 VARARG(errors,ints); /* event errors */
1231 @END
1234 /* Get socket info */
1235 @REQ(get_socket_info)
1236 obj_handle_t handle; /* handle to the socket */
1237 @REPLY
1238 int family; /* family, see socket manpage */
1239 int type; /* type, see socket manpage */
1240 int protocol; /* protocol, see socket manpage */
1241 @END
1244 /* Re-enable pending socket events */
1245 @REQ(enable_socket_event)
1246 obj_handle_t handle; /* handle to the socket */
1247 unsigned int mask; /* events to re-enable */
1248 unsigned int sstate; /* status bits to set */
1249 unsigned int cstate; /* status bits to clear */
1250 @END
1252 @REQ(set_socket_deferred)
1253 obj_handle_t handle; /* handle to the socket */
1254 obj_handle_t deferred; /* handle to the socket for which accept() is deferred */
1255 @END
1257 /* Allocate a console (only used by a console renderer) */
1258 @REQ(alloc_console)
1259 unsigned int access; /* wanted access rights */
1260 unsigned int attributes; /* object attributes */
1261 process_id_t pid; /* pid of process which shall be attached to the console */
1262 int input_fd; /* if pid=-1 (bare console to current process), fd for input */
1263 @REPLY
1264 obj_handle_t handle_in; /* handle to console input */
1265 obj_handle_t event; /* handle to renderer events change notification */
1266 @END
1269 /* Free the console of the current process */
1270 @REQ(free_console)
1271 @END
1274 #define CONSOLE_RENDERER_NONE_EVENT 0x00
1275 #define CONSOLE_RENDERER_TITLE_EVENT 0x01
1276 #define CONSOLE_RENDERER_ACTIVE_SB_EVENT 0x02
1277 #define CONSOLE_RENDERER_SB_RESIZE_EVENT 0x03
1278 #define CONSOLE_RENDERER_UPDATE_EVENT 0x04
1279 #define CONSOLE_RENDERER_CURSOR_POS_EVENT 0x05
1280 #define CONSOLE_RENDERER_CURSOR_GEOM_EVENT 0x06
1281 #define CONSOLE_RENDERER_DISPLAY_EVENT 0x07
1282 #define CONSOLE_RENDERER_EXIT_EVENT 0x08
1283 struct console_renderer_event
1285 short event;
1286 union
1288 struct update
1290 short top;
1291 short bottom;
1292 } update;
1293 struct resize
1295 short width;
1296 short height;
1297 } resize;
1298 struct cursor_pos
1300 short x;
1301 short y;
1302 } cursor_pos;
1303 struct cursor_geom
1305 short visible;
1306 short size;
1307 } cursor_geom;
1308 struct display
1310 short left;
1311 short top;
1312 short width;
1313 short height;
1314 } display;
1315 } u;
1318 /* retrieve console events for the renderer */
1319 @REQ(get_console_renderer_events)
1320 obj_handle_t handle; /* handle to console input events */
1321 @REPLY
1322 VARARG(data,bytes); /* the various console_renderer_events */
1323 @END
1326 /* Open a handle to the process console */
1327 @REQ(open_console)
1328 obj_handle_t from; /* 0 (resp 1) input (resp output) of current process console */
1329 /* otherwise console_in handle to get active screen buffer? */
1330 unsigned int access; /* wanted access rights */
1331 unsigned int attributes; /* object attributes */
1332 int share; /* share mask (only for output handles) */
1333 @REPLY
1334 obj_handle_t handle; /* handle to the console */
1335 @END
1338 /* Get the input queue wait event */
1339 @REQ(get_console_wait_event)
1340 @REPLY
1341 obj_handle_t handle;
1342 @END
1344 /* Get a console mode (input or output) */
1345 @REQ(get_console_mode)
1346 obj_handle_t handle; /* handle to the console */
1347 @REPLY
1348 int mode; /* console mode */
1349 @END
1352 /* Set a console mode (input or output) */
1353 @REQ(set_console_mode)
1354 obj_handle_t handle; /* handle to the console */
1355 int mode; /* console mode */
1356 @END
1359 /* Set info about a console (input only) */
1360 @REQ(set_console_input_info)
1361 obj_handle_t handle; /* handle to console input, or 0 for process' console */
1362 int mask; /* setting mask (see below) */
1363 obj_handle_t active_sb; /* active screen buffer */
1364 int history_mode; /* whether we duplicate lines in history */
1365 int history_size; /* number of lines in history */
1366 int edition_mode; /* index to the edition mode flavors */
1367 int input_cp; /* console input codepage */
1368 int output_cp; /* console output codepage */
1369 user_handle_t win; /* console window if backend supports it */
1370 VARARG(title,unicode_str); /* console title */
1371 @END
1372 #define SET_CONSOLE_INPUT_INFO_ACTIVE_SB 0x01
1373 #define SET_CONSOLE_INPUT_INFO_TITLE 0x02
1374 #define SET_CONSOLE_INPUT_INFO_HISTORY_MODE 0x04
1375 #define SET_CONSOLE_INPUT_INFO_HISTORY_SIZE 0x08
1376 #define SET_CONSOLE_INPUT_INFO_EDITION_MODE 0x10
1377 #define SET_CONSOLE_INPUT_INFO_INPUT_CODEPAGE 0x20
1378 #define SET_CONSOLE_INPUT_INFO_OUTPUT_CODEPAGE 0x40
1379 #define SET_CONSOLE_INPUT_INFO_WIN 0x80
1382 /* Get info about a console (input only) */
1383 @REQ(get_console_input_info)
1384 obj_handle_t handle; /* handle to console input, or 0 for process' console */
1385 @REPLY
1386 int history_mode; /* whether we duplicate lines in history */
1387 int history_size; /* number of lines in history */
1388 int history_index; /* number of used lines in history */
1389 int edition_mode; /* index to the edition mode flavors */
1390 int input_cp; /* console input codepage */
1391 int output_cp; /* console output codepage */
1392 user_handle_t win; /* console window if backend supports it */
1393 VARARG(title,unicode_str); /* console title */
1394 @END
1397 /* appends a string to console's history */
1398 @REQ(append_console_input_history)
1399 obj_handle_t handle; /* handle to console input, or 0 for process' console */
1400 VARARG(line,unicode_str); /* line to add */
1401 @END
1404 /* appends a string to console's history */
1405 @REQ(get_console_input_history)
1406 obj_handle_t handle; /* handle to console input, or 0 for process' console */
1407 int index; /* index to get line from */
1408 @REPLY
1409 int total; /* total length of line in Unicode chars */
1410 VARARG(line,unicode_str); /* line to add */
1411 @END
1414 /* creates a new screen buffer on process' console */
1415 @REQ(create_console_output)
1416 obj_handle_t handle_in; /* handle to console input, or 0 for process' console */
1417 unsigned int access; /* wanted access rights */
1418 unsigned int attributes; /* object attributes */
1419 unsigned int share; /* sharing credentials */
1420 int fd; /* for bare consoles, fd the screen-buffer is attached to */
1421 @REPLY
1422 obj_handle_t handle_out; /* handle to the screen buffer */
1423 @END
1426 /* Set info about a console (output only) */
1427 @REQ(set_console_output_info)
1428 obj_handle_t handle; /* handle to the console */
1429 int mask; /* setting mask (see below) */
1430 short int cursor_size; /* size of cursor (percentage filled) */
1431 short int cursor_visible;/* cursor visibility flag */
1432 short int cursor_x; /* position of cursor (x, y) */
1433 short int cursor_y;
1434 short int width; /* width of the screen buffer */
1435 short int height; /* height of the screen buffer */
1436 short int attr; /* default attribute */
1437 short int win_left; /* window actually displayed by renderer */
1438 short int win_top; /* the rect area is expressed within the */
1439 short int win_right; /* boundaries of the screen buffer */
1440 short int win_bottom;
1441 short int max_width; /* maximum size (width x height) for the window */
1442 short int max_height;
1443 @END
1444 #define SET_CONSOLE_OUTPUT_INFO_CURSOR_GEOM 0x01
1445 #define SET_CONSOLE_OUTPUT_INFO_CURSOR_POS 0x02
1446 #define SET_CONSOLE_OUTPUT_INFO_SIZE 0x04
1447 #define SET_CONSOLE_OUTPUT_INFO_ATTR 0x08
1448 #define SET_CONSOLE_OUTPUT_INFO_DISPLAY_WINDOW 0x10
1449 #define SET_CONSOLE_OUTPUT_INFO_MAX_SIZE 0x20
1452 /* Get info about a console (output only) */
1453 @REQ(get_console_output_info)
1454 obj_handle_t handle; /* handle to the console */
1455 @REPLY
1456 short int cursor_size; /* size of cursor (percentage filled) */
1457 short int cursor_visible;/* cursor visibility flag */
1458 short int cursor_x; /* position of cursor (x, y) */
1459 short int cursor_y;
1460 short int width; /* width of the screen buffer */
1461 short int height; /* height of the screen buffer */
1462 short int attr; /* default attribute */
1463 short int win_left; /* window actually displayed by renderer */
1464 short int win_top; /* the rect area is expressed within the */
1465 short int win_right; /* boundaries of the screen buffer */
1466 short int win_bottom;
1467 short int max_width; /* maximum size (width x height) for the window */
1468 short int max_height;
1469 @END
1471 /* Add input records to a console input queue */
1472 @REQ(write_console_input)
1473 obj_handle_t handle; /* handle to the console input */
1474 VARARG(rec,input_records); /* input records */
1475 @REPLY
1476 int written; /* number of records written */
1477 @END
1480 /* Fetch input records from a console input queue */
1481 @REQ(read_console_input)
1482 obj_handle_t handle; /* handle to the console input */
1483 int flush; /* flush the retrieved records from the queue? */
1484 @REPLY
1485 int read; /* number of records read */
1486 VARARG(rec,input_records); /* input records */
1487 @END
1490 /* write data (chars and/or attributes) in a screen buffer */
1491 @REQ(write_console_output)
1492 obj_handle_t handle; /* handle to the console output */
1493 int x; /* position where to start writing */
1494 int y;
1495 int mode; /* char info (see below) */
1496 int wrap; /* wrap around at end of line? */
1497 VARARG(data,bytes); /* info to write */
1498 @REPLY
1499 int written; /* number of char infos actually written */
1500 int width; /* width of screen buffer */
1501 int height; /* height of screen buffer */
1502 @END
1503 enum char_info_mode
1505 CHAR_INFO_MODE_TEXT, /* characters only */
1506 CHAR_INFO_MODE_ATTR, /* attributes only */
1507 CHAR_INFO_MODE_TEXTATTR, /* both characters and attributes */
1508 CHAR_INFO_MODE_TEXTSTDATTR /* characters but use standard attributes */
1512 /* fill a screen buffer with constant data (chars and/or attributes) */
1513 @REQ(fill_console_output)
1514 obj_handle_t handle; /* handle to the console output */
1515 int x; /* position where to start writing */
1516 int y;
1517 int mode; /* char info mode */
1518 int count; /* number to write */
1519 int wrap; /* wrap around at end of line? */
1520 char_info_t data; /* data to write */
1521 @REPLY
1522 int written; /* number of char infos actually written */
1523 @END
1526 /* read data (chars and/or attributes) from a screen buffer */
1527 @REQ(read_console_output)
1528 obj_handle_t handle; /* handle to the console output */
1529 int x; /* position (x,y) where to start reading */
1530 int y;
1531 int mode; /* char info mode */
1532 int wrap; /* wrap around at end of line? */
1533 @REPLY
1534 int width; /* width of screen buffer */
1535 int height; /* height of screen buffer */
1536 VARARG(data,bytes);
1537 @END
1540 /* move a rect (of data) in screen buffer content */
1541 @REQ(move_console_output)
1542 obj_handle_t handle; /* handle to the console output */
1543 short int x_src; /* position (x, y) of rect to start moving from */
1544 short int y_src;
1545 short int x_dst; /* position (x, y) of rect to move to */
1546 short int y_dst;
1547 short int w; /* size of the rect (width, height) to move */
1548 short int h;
1549 @END
1552 /* Sends a signal to a process group */
1553 @REQ(send_console_signal)
1554 int signal; /* the signal to send */
1555 process_id_t group_id; /* the group to send the signal to */
1556 @END
1559 /* enable directory change notifications */
1560 @REQ(read_directory_changes)
1561 unsigned int filter; /* notification filter */
1562 int subtree; /* watch the subtree? */
1563 int want_data; /* flag indicating whether change data should be collected */
1564 async_data_t async; /* async I/O parameters */
1565 @END
1568 @REQ(read_change)
1569 obj_handle_t handle;
1570 @REPLY
1571 VARARG(events,filesystem_event); /* collected filesystem events */
1572 @END
1575 /* Create a file mapping */
1576 @REQ(create_mapping)
1577 unsigned int access; /* wanted access rights */
1578 unsigned int attributes; /* object attributes */
1579 unsigned int protect; /* protection flags (see below) */
1580 mem_size_t size; /* mapping size */
1581 obj_handle_t file_handle; /* file handle */
1582 VARARG(objattr,object_attributes); /* object attributes */
1583 @REPLY
1584 obj_handle_t handle; /* handle to the mapping */
1585 @END
1586 /* per-page protection flags */
1587 #define VPROT_READ 0x01
1588 #define VPROT_WRITE 0x02
1589 #define VPROT_EXEC 0x04
1590 #define VPROT_WRITECOPY 0x08
1591 #define VPROT_GUARD 0x10
1592 #define VPROT_NOCACHE 0x20
1593 #define VPROT_COMMITTED 0x40
1594 #define VPROT_WRITEWATCH 0x80
1595 /* per-mapping protection flags */
1596 #define VPROT_IMAGE 0x0100 /* mapping for an exe image */
1597 #define VPROT_SYSTEM 0x0200 /* system view (underlying mmap not under our control) */
1598 #define VPROT_VALLOC 0x0400 /* allocated by VirtualAlloc */
1599 #define VPROT_NOEXEC 0x0800 /* don't force exec permission */
1602 /* Open a mapping */
1603 @REQ(open_mapping)
1604 unsigned int access; /* wanted access rights */
1605 unsigned int attributes; /* object attributes */
1606 obj_handle_t rootdir; /* root directory */
1607 VARARG(name,unicode_str); /* object name */
1608 @REPLY
1609 obj_handle_t handle; /* handle to the mapping */
1610 @END
1613 /* Get information about a file mapping */
1614 @REQ(get_mapping_info)
1615 obj_handle_t handle; /* handle to the mapping */
1616 unsigned int access; /* wanted access rights */
1617 @REPLY
1618 mem_size_t size; /* mapping size */
1619 int protect; /* protection flags */
1620 int header_size; /* header size (for VPROT_IMAGE mapping) */
1621 client_ptr_t base; /* default base addr (for VPROT_IMAGE mapping) */
1622 obj_handle_t mapping; /* duplicate mapping handle unless removable */
1623 obj_handle_t shared_file; /* shared mapping file handle */
1624 @END
1627 /* Get a range of committed pages in a file mapping */
1628 @REQ(get_mapping_committed_range)
1629 obj_handle_t handle; /* handle to the mapping */
1630 file_pos_t offset; /* starting offset (page-aligned, in bytes) */
1631 @REPLY
1632 mem_size_t size; /* size of range starting at offset (page-aligned, in bytes) */
1633 int committed; /* whether it is a committed range */
1634 @END
1637 /* Add a range to the committed pages in a file mapping */
1638 @REQ(add_mapping_committed_range)
1639 obj_handle_t handle; /* handle to the mapping */
1640 file_pos_t offset; /* starting offset (page-aligned, in bytes) */
1641 mem_size_t size; /* size to set (page-aligned, in bytes) or 0 if only retrieving */
1642 @END
1645 #define SNAP_PROCESS 0x00000001
1646 #define SNAP_THREAD 0x00000002
1647 /* Create a snapshot */
1648 @REQ(create_snapshot)
1649 unsigned int attributes; /* object attributes */
1650 unsigned int flags; /* snapshot flags (SNAP_*) */
1651 @REPLY
1652 obj_handle_t handle; /* handle to the snapshot */
1653 @END
1656 /* Get the next process from a snapshot */
1657 @REQ(next_process)
1658 obj_handle_t handle; /* handle to the snapshot */
1659 int reset; /* reset snapshot position? */
1660 @REPLY
1661 int count; /* process usage count */
1662 process_id_t pid; /* process id */
1663 process_id_t ppid; /* parent process id */
1664 int threads; /* number of threads */
1665 int priority; /* process priority */
1666 int handles; /* number of handles */
1667 int unix_pid; /* Unix pid */
1668 VARARG(filename,unicode_str); /* file name of main exe */
1669 @END
1672 /* Get the next thread from a snapshot */
1673 @REQ(next_thread)
1674 obj_handle_t handle; /* handle to the snapshot */
1675 int reset; /* reset snapshot position? */
1676 @REPLY
1677 int count; /* thread usage count */
1678 process_id_t pid; /* process id */
1679 thread_id_t tid; /* thread id */
1680 int base_pri; /* base priority */
1681 int delta_pri; /* delta priority */
1682 @END
1685 /* Wait for a debug event */
1686 @REQ(wait_debug_event)
1687 int get_handle; /* should we alloc a handle for waiting? */
1688 @REPLY
1689 process_id_t pid; /* process id */
1690 thread_id_t tid; /* thread id */
1691 obj_handle_t wait; /* wait handle if no event ready */
1692 VARARG(event,debug_event); /* debug event data */
1693 @END
1696 /* Queue an exception event */
1697 @REQ(queue_exception_event)
1698 int first; /* first chance exception? */
1699 unsigned int code; /* exception code */
1700 unsigned int flags; /* exception flags */
1701 client_ptr_t record; /* exception record */
1702 client_ptr_t address; /* exception address */
1703 data_size_t len; /* size of parameters */
1704 VARARG(params,uints64,len);/* exception parameters */
1705 VARARG(context,context); /* thread context */
1706 @REPLY
1707 obj_handle_t handle; /* handle to the queued event */
1708 @END
1711 /* Retrieve the status of an exception event */
1712 @REQ(get_exception_status)
1713 obj_handle_t handle; /* handle to the queued event */
1714 @REPLY
1715 VARARG(context,context); /* modified thread context */
1716 @END
1719 /* Continue a debug event */
1720 @REQ(continue_debug_event)
1721 process_id_t pid; /* process id to continue */
1722 thread_id_t tid; /* thread id to continue */
1723 int status; /* continuation status */
1724 @END
1727 /* Start/stop debugging an existing process */
1728 @REQ(debug_process)
1729 process_id_t pid; /* id of the process to debug */
1730 int attach; /* 1=attaching / 0=detaching from the process */
1731 @END
1734 /* Simulate a breakpoint in a process */
1735 @REQ(debug_break)
1736 obj_handle_t handle; /* process handle */
1737 @REPLY
1738 int self; /* was it the caller itself? */
1739 @END
1742 /* Set debugger kill on exit flag */
1743 @REQ(set_debugger_kill_on_exit)
1744 int kill_on_exit; /* 0=detach/1=kill debuggee when debugger dies */
1745 @END
1748 /* Read data from a process address space */
1749 @REQ(read_process_memory)
1750 obj_handle_t handle; /* process handle */
1751 client_ptr_t addr; /* addr to read from */
1752 @REPLY
1753 VARARG(data,bytes); /* result data */
1754 @END
1757 /* Write data to a process address space */
1758 @REQ(write_process_memory)
1759 obj_handle_t handle; /* process handle */
1760 client_ptr_t addr; /* addr to write to */
1761 VARARG(data,bytes); /* data to write */
1762 @END
1765 /* Create a registry key */
1766 @REQ(create_key)
1767 obj_handle_t parent; /* handle to the parent key */
1768 unsigned int access; /* desired access rights */
1769 unsigned int attributes; /* object attributes */
1770 unsigned int options; /* creation options */
1771 data_size_t namelen; /* length of key name in bytes */
1772 VARARG(name,unicode_str,namelen); /* key name */
1773 VARARG(class,unicode_str); /* class name */
1774 @REPLY
1775 obj_handle_t hkey; /* handle to the created key */
1776 int created; /* has it been newly created? */
1777 @END
1779 /* Open a registry key */
1780 @REQ(open_key)
1781 obj_handle_t parent; /* handle to the parent key */
1782 unsigned int access; /* desired access rights */
1783 unsigned int attributes; /* object attributes */
1784 VARARG(name,unicode_str); /* key name */
1785 @REPLY
1786 obj_handle_t hkey; /* handle to the open key */
1787 @END
1790 /* Delete a registry key */
1791 @REQ(delete_key)
1792 obj_handle_t hkey; /* handle to the key */
1793 @END
1796 /* Flush a registry key */
1797 @REQ(flush_key)
1798 obj_handle_t hkey; /* handle to the key */
1799 @END
1802 /* Enumerate registry subkeys */
1803 @REQ(enum_key)
1804 obj_handle_t hkey; /* handle to registry key */
1805 int index; /* index of subkey (or -1 for current key) */
1806 int info_class; /* requested information class */
1807 @REPLY
1808 int subkeys; /* number of subkeys */
1809 int max_subkey; /* longest subkey name */
1810 int max_class; /* longest class name */
1811 int values; /* number of values */
1812 int max_value; /* longest value name */
1813 int max_data; /* longest value data */
1814 timeout_t modif; /* last modification time */
1815 data_size_t total; /* total length needed for full name and class */
1816 data_size_t namelen; /* length of key name in bytes */
1817 VARARG(name,unicode_str,namelen); /* key name */
1818 VARARG(class,unicode_str); /* class name */
1819 @END
1822 /* Set a value of a registry key */
1823 @REQ(set_key_value)
1824 obj_handle_t hkey; /* handle to registry key */
1825 int type; /* value type */
1826 data_size_t namelen; /* length of value name in bytes */
1827 VARARG(name,unicode_str,namelen); /* value name */
1828 VARARG(data,bytes); /* value data */
1829 @END
1832 /* Retrieve the value of a registry key */
1833 @REQ(get_key_value)
1834 obj_handle_t hkey; /* handle to registry key */
1835 VARARG(name,unicode_str); /* value name */
1836 @REPLY
1837 int type; /* value type */
1838 data_size_t total; /* total length needed for data */
1839 VARARG(data,bytes); /* value data */
1840 @END
1843 /* Enumerate a value of a registry key */
1844 @REQ(enum_key_value)
1845 obj_handle_t hkey; /* handle to registry key */
1846 int index; /* value index */
1847 int info_class; /* requested information class */
1848 @REPLY
1849 int type; /* value type */
1850 data_size_t total; /* total length needed for full name and data */
1851 data_size_t namelen; /* length of value name in bytes */
1852 VARARG(name,unicode_str,namelen); /* value name */
1853 VARARG(data,bytes); /* value data */
1854 @END
1857 /* Delete a value of a registry key */
1858 @REQ(delete_key_value)
1859 obj_handle_t hkey; /* handle to registry key */
1860 VARARG(name,unicode_str); /* value name */
1861 @END
1864 /* Load a registry branch from a file */
1865 @REQ(load_registry)
1866 obj_handle_t hkey; /* root key to load to */
1867 obj_handle_t file; /* file to load from */
1868 VARARG(name,unicode_str); /* subkey name */
1869 @END
1872 /* UnLoad a registry branch from a file */
1873 @REQ(unload_registry)
1874 obj_handle_t hkey; /* root key to unload to */
1875 @END
1878 /* Save a registry branch to a file */
1879 @REQ(save_registry)
1880 obj_handle_t hkey; /* key to save */
1881 obj_handle_t file; /* file to save to */
1882 @END
1885 /* Add a registry key change notification */
1886 @REQ(set_registry_notification)
1887 obj_handle_t hkey; /* key to watch for changes */
1888 obj_handle_t event; /* event to set */
1889 int subtree; /* should we watch the whole subtree? */
1890 unsigned int filter; /* things to watch */
1891 @END
1894 /* Create a waitable timer */
1895 @REQ(create_timer)
1896 unsigned int access; /* wanted access rights */
1897 unsigned int attributes; /* object attributes */
1898 obj_handle_t rootdir; /* root directory */
1899 int manual; /* manual reset */
1900 VARARG(name,unicode_str); /* object name */
1901 @REPLY
1902 obj_handle_t handle; /* handle to the timer */
1903 @END
1906 /* Open a waitable timer */
1907 @REQ(open_timer)
1908 unsigned int access; /* wanted access rights */
1909 unsigned int attributes; /* object attributes */
1910 obj_handle_t rootdir; /* root directory */
1911 VARARG(name,unicode_str); /* object name */
1912 @REPLY
1913 obj_handle_t handle; /* handle to the timer */
1914 @END
1916 /* Set a waitable timer */
1917 @REQ(set_timer)
1918 obj_handle_t handle; /* handle to the timer */
1919 timeout_t expire; /* next expiration absolute time */
1920 client_ptr_t callback; /* callback function */
1921 client_ptr_t arg; /* callback argument */
1922 int period; /* timer period in ms */
1923 @REPLY
1924 int signaled; /* was the timer signaled before this call ? */
1925 @END
1927 /* Cancel a waitable timer */
1928 @REQ(cancel_timer)
1929 obj_handle_t handle; /* handle to the timer */
1930 @REPLY
1931 int signaled; /* was the timer signaled before this calltime ? */
1932 @END
1934 /* Get information on a waitable timer */
1935 @REQ(get_timer_info)
1936 obj_handle_t handle; /* handle to the timer */
1937 @REPLY
1938 timeout_t when; /* absolute time when the timer next expires */
1939 int signaled; /* is the timer signaled? */
1940 @END
1943 /* Retrieve the current context of a thread */
1944 @REQ(get_thread_context)
1945 obj_handle_t handle; /* thread handle */
1946 unsigned int flags; /* context flags */
1947 int suspend; /* suspend the thread if needed */
1948 @REPLY
1949 int self; /* was it a handle to the current thread? */
1950 VARARG(context,context); /* thread context */
1951 @END
1954 /* Set the current context of a thread */
1955 @REQ(set_thread_context)
1956 obj_handle_t handle; /* thread handle */
1957 int suspend; /* suspend the thread if needed */
1958 VARARG(context,context); /* thread context */
1959 @REPLY
1960 int self; /* was it a handle to the current thread? */
1961 @END
1964 /* Fetch a selector entry for a thread */
1965 @REQ(get_selector_entry)
1966 obj_handle_t handle; /* thread handle */
1967 int entry; /* LDT entry */
1968 @REPLY
1969 unsigned int base; /* selector base */
1970 unsigned int limit; /* selector limit */
1971 unsigned char flags; /* selector flags */
1972 @END
1975 /* Add an atom */
1976 @REQ(add_atom)
1977 obj_handle_t table; /* which table to add atom to */
1978 VARARG(name,unicode_str); /* atom name */
1979 @REPLY
1980 atom_t atom; /* resulting atom */
1981 @END
1984 /* Delete an atom */
1985 @REQ(delete_atom)
1986 obj_handle_t table; /* which table to delete atom from */
1987 atom_t atom; /* atom handle */
1988 @END
1991 /* Find an atom */
1992 @REQ(find_atom)
1993 obj_handle_t table; /* which table to find atom from */
1994 VARARG(name,unicode_str); /* atom name */
1995 @REPLY
1996 atom_t atom; /* atom handle */
1997 @END
2000 /* Get information about an atom */
2001 @REQ(get_atom_information)
2002 obj_handle_t table; /* which table to find atom from */
2003 atom_t atom; /* atom handle */
2004 @REPLY
2005 int count; /* atom lock count */
2006 int pinned; /* whether the atom has been pinned */
2007 data_size_t total; /* actual length of atom name */
2008 VARARG(name,unicode_str); /* atom name */
2009 @END
2012 /* Set information about an atom */
2013 @REQ(set_atom_information)
2014 obj_handle_t table; /* which table to find atom from */
2015 atom_t atom; /* atom handle */
2016 int pinned; /* whether to bump atom information */
2017 @END
2020 /* Empty an atom table */
2021 @REQ(empty_atom_table)
2022 obj_handle_t table; /* which table to find atom from */
2023 int if_pinned; /* whether to delete pinned atoms */
2024 @END
2027 /* Init an atom table */
2028 @REQ(init_atom_table)
2029 int entries; /* number of entries (only for local) */
2030 @REPLY
2031 obj_handle_t table; /* handle to the atom table */
2032 @END
2035 /* Get the message queue of the current thread */
2036 @REQ(get_msg_queue)
2037 @REPLY
2038 obj_handle_t handle; /* handle to the queue */
2039 @END
2042 /* Set the file descriptor associated to the current thread queue */
2043 @REQ(set_queue_fd)
2044 obj_handle_t handle; /* handle to the file descriptor */
2045 @END
2048 /* Set the current message queue wakeup mask */
2049 @REQ(set_queue_mask)
2050 unsigned int wake_mask; /* wakeup bits mask */
2051 unsigned int changed_mask; /* changed bits mask */
2052 int skip_wait; /* will we skip waiting if signaled? */
2053 @REPLY
2054 unsigned int wake_bits; /* current wake bits */
2055 unsigned int changed_bits; /* current changed bits */
2056 @END
2059 /* Get the current message queue status */
2060 @REQ(get_queue_status)
2061 unsigned int clear_bits; /* should we clear the change bits? */
2062 @REPLY
2063 unsigned int wake_bits; /* wake bits */
2064 unsigned int changed_bits; /* changed bits since last time */
2065 @END
2068 /* Retrieve the process idle event */
2069 @REQ(get_process_idle_event)
2070 obj_handle_t handle; /* process handle */
2071 @REPLY
2072 obj_handle_t event; /* handle to idle event */
2073 @END
2076 /* Send a message to a thread queue */
2077 @REQ(send_message)
2078 thread_id_t id; /* thread id */
2079 int type; /* message type (see below) */
2080 int flags; /* message flags (see below) */
2081 user_handle_t win; /* window handle */
2082 unsigned int msg; /* message code */
2083 lparam_t wparam; /* parameters */
2084 lparam_t lparam; /* parameters */
2085 timeout_t timeout; /* timeout for reply */
2086 VARARG(data,message_data); /* message data for sent messages */
2087 @END
2089 @REQ(post_quit_message)
2090 int exit_code; /* exit code to return */
2091 @END
2093 enum message_type
2095 MSG_ASCII, /* Ascii message (from SendMessageA) */
2096 MSG_UNICODE, /* Unicode message (from SendMessageW) */
2097 MSG_NOTIFY, /* notify message (from SendNotifyMessageW), always Unicode */
2098 MSG_CALLBACK, /* callback message (from SendMessageCallbackW), always Unicode */
2099 MSG_CALLBACK_RESULT,/* result of a callback message */
2100 MSG_OTHER_PROCESS, /* sent from other process, may include vararg data, always Unicode */
2101 MSG_POSTED, /* posted message (from PostMessageW), always Unicode */
2102 MSG_HARDWARE, /* hardware message */
2103 MSG_WINEVENT, /* winevent message */
2104 MSG_HOOK_LL /* low-level hardware hook */
2106 #define SEND_MSG_ABORT_IF_HUNG 0x01
2109 /* Send a hardware message to a thread queue */
2110 @REQ(send_hardware_message)
2111 user_handle_t win; /* window handle */
2112 hw_input_t input; /* input data */
2113 unsigned int flags; /* flags (see below) */
2114 @REPLY
2115 int wait; /* do we need to wait for a reply? */
2116 int prev_x; /* previous cursor position */
2117 int prev_y;
2118 int new_x; /* new cursor position */
2119 int new_y;
2120 VARARG(keystate,bytes); /* global state array for all the keys */
2121 @END
2122 #define SEND_HWMSG_INJECTED 0x01
2125 /* Get a message from the current queue */
2126 @REQ(get_message)
2127 unsigned int flags; /* PM_* flags */
2128 user_handle_t get_win; /* window handle to get */
2129 unsigned int get_first; /* first message code to get */
2130 unsigned int get_last; /* last message code to get */
2131 unsigned int hw_id; /* id of the previous hardware message (or 0) */
2132 unsigned int wake_mask; /* wakeup bits mask */
2133 unsigned int changed_mask; /* changed bits mask */
2134 @REPLY
2135 user_handle_t win; /* window handle */
2136 unsigned int msg; /* message code */
2137 lparam_t wparam; /* parameters */
2138 lparam_t lparam; /* parameters */
2139 int type; /* message type */
2140 int x; /* message x position */
2141 int y; /* message y position */
2142 unsigned int time; /* message time */
2143 unsigned int active_hooks; /* active hooks bitmap */
2144 data_size_t total; /* total size of extra data */
2145 VARARG(data,message_data); /* message data for sent messages */
2146 @END
2149 /* Reply to a sent message */
2150 @REQ(reply_message)
2151 int remove; /* should we remove the message? */
2152 lparam_t result; /* message result */
2153 VARARG(data,bytes); /* message data for sent messages */
2154 @END
2157 /* Accept the current hardware message */
2158 @REQ(accept_hardware_message)
2159 unsigned int hw_id; /* id of the hardware message */
2160 int remove; /* should we remove the message? */
2161 @END
2164 /* Retrieve the reply for the last message sent */
2165 @REQ(get_message_reply)
2166 int cancel; /* cancel message if not ready? */
2167 @REPLY
2168 lparam_t result; /* message result */
2169 VARARG(data,bytes); /* message data for sent messages */
2170 @END
2173 /* Set a window timer */
2174 @REQ(set_win_timer)
2175 user_handle_t win; /* window handle */
2176 unsigned int msg; /* message to post */
2177 unsigned int rate; /* timer rate in ms */
2178 lparam_t id; /* timer id */
2179 lparam_t lparam; /* message lparam (callback proc) */
2180 @REPLY
2181 lparam_t id; /* timer id */
2182 @END
2185 /* Kill a window timer */
2186 @REQ(kill_win_timer)
2187 user_handle_t win; /* window handle */
2188 lparam_t id; /* timer id */
2189 unsigned int msg; /* message to post */
2190 @END
2193 /* check if the thread owning the window is hung */
2194 @REQ(is_window_hung)
2195 user_handle_t win; /* window handle */
2196 @REPLY
2197 int is_hung;
2198 @END
2201 /* Retrieve info about a serial port */
2202 @REQ(get_serial_info)
2203 obj_handle_t handle; /* handle to comm port */
2204 int flags;
2205 @REPLY
2206 unsigned int readinterval;
2207 unsigned int readconst;
2208 unsigned int readmult;
2209 unsigned int writeconst;
2210 unsigned int writemult;
2211 unsigned int eventmask;
2212 unsigned int cookie;
2213 unsigned int pending_write;
2214 @END
2217 /* Set info about a serial port */
2218 @REQ(set_serial_info)
2219 obj_handle_t handle; /* handle to comm port */
2220 int flags; /* bitmask to set values (see below) */
2221 unsigned int readinterval;
2222 unsigned int readconst;
2223 unsigned int readmult;
2224 unsigned int writeconst;
2225 unsigned int writemult;
2226 unsigned int eventmask;
2227 @END
2228 #define SERIALINFO_SET_TIMEOUTS 0x01
2229 #define SERIALINFO_SET_MASK 0x02
2230 #define SERIALINFO_PENDING_WRITE 0x04
2231 #define SERIALINFO_PENDING_WAIT 0x08
2234 /* Create an async I/O */
2235 @REQ(register_async)
2236 int type; /* type of queue to look after */
2237 async_data_t async; /* async I/O parameters */
2238 int count; /* count - usually # of bytes to be read/written */
2239 @END
2240 #define ASYNC_TYPE_READ 0x01
2241 #define ASYNC_TYPE_WRITE 0x02
2242 #define ASYNC_TYPE_WAIT 0x03
2245 /* Cancel all async op on a fd */
2246 @REQ(cancel_async)
2247 obj_handle_t handle; /* handle to comm port, socket or file */
2248 client_ptr_t iosb; /* I/O status block (NULL=all) */
2249 int only_thread; /* cancel matching this thread */
2250 @END
2253 /* Perform a read on a file object */
2254 @REQ(read)
2255 int blocking; /* whether it's a blocking read */
2256 async_data_t async; /* async I/O parameters */
2257 file_pos_t pos; /* read position */
2258 @REPLY
2259 obj_handle_t wait; /* handle to wait on for blocking read */
2260 unsigned int options; /* device open options */
2261 VARARG(data,bytes); /* read data */
2262 @END
2265 /* Perform a write on a file object */
2266 @REQ(write)
2267 int blocking; /* whether it's a blocking write */
2268 async_data_t async; /* async I/O parameters */
2269 file_pos_t pos; /* write position */
2270 VARARG(data,bytes); /* write data */
2271 @REPLY
2272 obj_handle_t wait; /* handle to wait on for blocking write */
2273 unsigned int options; /* device open options */
2274 data_size_t size; /* size written */
2275 @END
2278 /* Perform an ioctl on a file */
2279 @REQ(ioctl)
2280 ioctl_code_t code; /* ioctl code */
2281 async_data_t async; /* async I/O parameters */
2282 int blocking; /* whether it's a blocking ioctl */
2283 VARARG(in_data,bytes); /* ioctl input data */
2284 @REPLY
2285 obj_handle_t wait; /* handle to wait on for blocking ioctl */
2286 unsigned int options; /* device open options */
2287 VARARG(out_data,bytes); /* ioctl output data */
2288 @END
2291 /* Store results of an async irp */
2292 @REQ(set_irp_result)
2293 obj_handle_t manager; /* handle to the device manager */
2294 obj_handle_t handle; /* handle to the irp */
2295 unsigned int status; /* status of the irp */
2296 data_size_t size; /* result size (input or output depending on the operation) */
2297 VARARG(data,bytes); /* output data of the irp */
2298 @END
2301 /* Retrieve results of an async irp */
2302 @REQ(get_irp_result)
2303 obj_handle_t handle; /* handle to the device */
2304 client_ptr_t user_arg; /* user arg used to identify the request */
2305 @REPLY
2306 data_size_t size; /* result size (input or output depending on the operation) */
2307 VARARG(out_data,bytes); /* irp output data */
2308 @END
2311 /* Create a named pipe */
2312 @REQ(create_named_pipe)
2313 unsigned int access;
2314 unsigned int attributes; /* object attributes */
2315 unsigned int options;
2316 unsigned int sharing;
2317 unsigned int maxinstances;
2318 unsigned int outsize;
2319 unsigned int insize;
2320 timeout_t timeout;
2321 unsigned int flags;
2322 VARARG(objattr,object_attributes); /* object attributes */
2323 @REPLY
2324 obj_handle_t handle; /* handle to the pipe */
2325 @END
2327 /* flags in create_named_pipe and get_named_pipe_info */
2328 #define NAMED_PIPE_MESSAGE_STREAM_WRITE 0x0001
2329 #define NAMED_PIPE_MESSAGE_STREAM_READ 0x0002
2330 #define NAMED_PIPE_NONBLOCKING_MODE 0x0004
2331 #define NAMED_PIPE_SERVER_END 0x8000
2333 /* Get named pipe information by handle */
2334 @REQ(get_named_pipe_info)
2335 obj_handle_t handle;
2336 @REPLY
2337 unsigned int flags;
2338 unsigned int sharing;
2339 unsigned int maxinstances;
2340 unsigned int instances;
2341 unsigned int outsize;
2342 unsigned int insize;
2343 @END
2345 /* Set named pipe information by handle */
2346 @REQ(set_named_pipe_info)
2347 obj_handle_t handle;
2348 unsigned int flags;
2349 @END
2351 /* Create a window */
2352 @REQ(create_window)
2353 user_handle_t parent; /* parent window */
2354 user_handle_t owner; /* owner window */
2355 atom_t atom; /* class atom */
2356 mod_handle_t instance; /* module instance */
2357 VARARG(class,unicode_str); /* class name */
2358 @REPLY
2359 user_handle_t handle; /* created window */
2360 user_handle_t parent; /* full handle of parent */
2361 user_handle_t owner; /* full handle of owner */
2362 int extra; /* number of extra bytes */
2363 client_ptr_t class_ptr; /* pointer to class in client address space */
2364 @END
2367 /* Destroy a window */
2368 @REQ(destroy_window)
2369 user_handle_t handle; /* handle to the window */
2370 @END
2373 /* Retrieve the desktop window for the current thread */
2374 @REQ(get_desktop_window)
2375 int force; /* force creation if it doesn't exist */
2376 @REPLY
2377 user_handle_t top_window; /* handle to the desktop window */
2378 user_handle_t msg_window; /* handle to the top-level HWND_MESSAGE parent */
2379 @END
2382 /* Set a window owner */
2383 @REQ(set_window_owner)
2384 user_handle_t handle; /* handle to the window */
2385 user_handle_t owner; /* new owner */
2386 @REPLY
2387 user_handle_t full_owner; /* full handle of new owner */
2388 user_handle_t prev_owner; /* full handle of previous owner */
2389 @END
2392 /* Get information from a window handle */
2393 @REQ(get_window_info)
2394 user_handle_t handle; /* handle to the window */
2395 @REPLY
2396 user_handle_t full_handle; /* full 32-bit handle */
2397 user_handle_t last_active; /* last active popup */
2398 process_id_t pid; /* process owning the window */
2399 thread_id_t tid; /* thread owning the window */
2400 atom_t atom; /* class atom */
2401 int is_unicode; /* ANSI or unicode */
2402 @END
2405 /* Set some information in a window */
2406 @REQ(set_window_info)
2407 unsigned short flags; /* flags for fields to set (see below) */
2408 short int is_unicode; /* ANSI or unicode */
2409 user_handle_t handle; /* handle to the window */
2410 unsigned int style; /* window style */
2411 unsigned int ex_style; /* window extended style */
2412 unsigned int id; /* window id */
2413 mod_handle_t instance; /* creator instance */
2414 lparam_t user_data; /* user-specific data */
2415 int extra_offset; /* offset to set in extra bytes */
2416 data_size_t extra_size; /* size to set in extra bytes */
2417 lparam_t extra_value; /* value to set in extra bytes */
2418 @REPLY
2419 unsigned int old_style; /* old window style */
2420 unsigned int old_ex_style; /* old window extended style */
2421 mod_handle_t old_instance; /* old creator instance */
2422 lparam_t old_user_data; /* old user-specific data */
2423 lparam_t old_extra_value; /* old value in extra bytes */
2424 unsigned int old_id; /* old window id */
2425 @END
2426 #define SET_WIN_STYLE 0x01
2427 #define SET_WIN_EXSTYLE 0x02
2428 #define SET_WIN_ID 0x04
2429 #define SET_WIN_INSTANCE 0x08
2430 #define SET_WIN_USERDATA 0x10
2431 #define SET_WIN_EXTRA 0x20
2432 #define SET_WIN_UNICODE 0x40
2435 /* Set the parent of a window */
2436 @REQ(set_parent)
2437 user_handle_t handle; /* handle to the window */
2438 user_handle_t parent; /* handle to the parent */
2439 @REPLY
2440 user_handle_t old_parent; /* old parent window */
2441 user_handle_t full_parent; /* full handle of new parent */
2442 @END
2445 /* Get a list of the window parents, up to the root of the tree */
2446 @REQ(get_window_parents)
2447 user_handle_t handle; /* handle to the window */
2448 @REPLY
2449 int count; /* total count of parents */
2450 VARARG(parents,user_handles); /* parent handles */
2451 @END
2454 /* Get a list of the window children */
2455 @REQ(get_window_children)
2456 obj_handle_t desktop; /* handle to desktop */
2457 user_handle_t parent; /* parent window */
2458 atom_t atom; /* class atom for the listed children */
2459 thread_id_t tid; /* thread owning the listed children */
2460 VARARG(class,unicode_str); /* class name */
2461 @REPLY
2462 int count; /* total count of children */
2463 VARARG(children,user_handles); /* children handles */
2464 @END
2467 /* Get a list of the window children that contain a given point */
2468 @REQ(get_window_children_from_point)
2469 user_handle_t parent; /* parent window */
2470 int x; /* point in parent coordinates */
2471 int y;
2472 @REPLY
2473 int count; /* total count of children */
2474 VARARG(children,user_handles); /* children handles */
2475 @END
2478 /* Get window tree information from a window handle */
2479 @REQ(get_window_tree)
2480 user_handle_t handle; /* handle to the window */
2481 @REPLY
2482 user_handle_t parent; /* parent window */
2483 user_handle_t owner; /* owner window */
2484 user_handle_t next_sibling; /* next sibling in Z-order */
2485 user_handle_t prev_sibling; /* prev sibling in Z-order */
2486 user_handle_t first_sibling; /* first sibling in Z-order */
2487 user_handle_t last_sibling; /* last sibling in Z-order */
2488 user_handle_t first_child; /* first child */
2489 user_handle_t last_child; /* last child */
2490 @END
2492 /* Set the position and Z order of a window */
2493 @REQ(set_window_pos)
2494 unsigned short swp_flags; /* SWP_* flags */
2495 unsigned short paint_flags; /* paint flags (see below) */
2496 user_handle_t handle; /* handle to the window */
2497 user_handle_t previous; /* previous window in Z order */
2498 rectangle_t window; /* window rectangle (in parent coords) */
2499 rectangle_t client; /* client rectangle (in parent coords) */
2500 VARARG(valid,rectangles); /* valid rectangles from WM_NCCALCSIZE (in parent coords) */
2501 @REPLY
2502 unsigned int new_style; /* new window style */
2503 unsigned int new_ex_style; /* new window extended style */
2504 user_handle_t surface_win; /* window that needs a surface update */
2505 @END
2506 #define SET_WINPOS_PAINT_SURFACE 0x01 /* window has a paintable surface */
2507 #define SET_WINPOS_PIXEL_FORMAT 0x02 /* window has a custom pixel format */
2509 /* Get the window and client rectangles of a window */
2510 @REQ(get_window_rectangles)
2511 user_handle_t handle; /* handle to the window */
2512 int relative; /* coords relative to (see below) */
2513 @REPLY
2514 rectangle_t window; /* window rectangle */
2515 rectangle_t visible; /* visible part of the window rectangle */
2516 rectangle_t client; /* client rectangle */
2517 @END
2518 enum coords_relative
2520 COORDS_CLIENT, /* relative to client area */
2521 COORDS_WINDOW, /* relative to whole window area */
2522 COORDS_PARENT, /* relative to parent's client area */
2523 COORDS_SCREEN /* relative to screen origin */
2527 /* Get the window text */
2528 @REQ(get_window_text)
2529 user_handle_t handle; /* handle to the window */
2530 @REPLY
2531 VARARG(text,unicode_str); /* window text */
2532 @END
2535 /* Set the window text */
2536 @REQ(set_window_text)
2537 user_handle_t handle; /* handle to the window */
2538 VARARG(text,unicode_str); /* window text */
2539 @END
2542 /* Get the coordinates offset between two windows */
2543 @REQ(get_windows_offset)
2544 user_handle_t from; /* handle to the first window */
2545 user_handle_t to; /* handle to the second window */
2546 @REPLY
2547 int x; /* x coordinate offset */
2548 int y; /* y coordinate offset */
2549 int mirror; /* whether to mirror the x coordinate */
2550 @END
2553 /* Get the visible region of a window */
2554 @REQ(get_visible_region)
2555 user_handle_t window; /* handle to the window */
2556 unsigned int flags; /* DCX flags */
2557 @REPLY
2558 user_handle_t top_win; /* top window to clip against */
2559 rectangle_t top_rect; /* top window visible rect with screen coords */
2560 rectangle_t win_rect; /* window rect in screen coords */
2561 unsigned int paint_flags; /* paint flags (from SET_WINPOS_* flags) */
2562 data_size_t total_size; /* total size of the resulting region */
2563 VARARG(region,rectangles); /* list of rectangles for the region (in screen coords) */
2564 @END
2567 /* Get the visible surface region of a window */
2568 @REQ(get_surface_region)
2569 user_handle_t window; /* handle to the window */
2570 @REPLY
2571 rectangle_t visible_rect; /* window visible rect in screen coords */
2572 data_size_t total_size; /* total size of the resulting region */
2573 VARARG(region,rectangles); /* list of rectangles for the region (in screen coords) */
2574 @END
2577 /* Get the window region */
2578 @REQ(get_window_region)
2579 user_handle_t window; /* handle to the window */
2580 @REPLY
2581 data_size_t total_size; /* total size of the resulting region */
2582 VARARG(region,rectangles); /* list of rectangles for the region (in window coords) */
2583 @END
2586 /* Set the window region */
2587 @REQ(set_window_region)
2588 user_handle_t window; /* handle to the window */
2589 int redraw; /* redraw the window? */
2590 VARARG(region,rectangles); /* list of rectangles for the region (in window coords) */
2591 @END
2594 /* Get the window update region */
2595 @REQ(get_update_region)
2596 user_handle_t window; /* handle to the window */
2597 user_handle_t from_child; /* child to start searching from */
2598 unsigned int flags; /* update flags (see below) */
2599 @REPLY
2600 user_handle_t child; /* child to repaint (or window itself) */
2601 unsigned int flags; /* resulting update flags (see below) */
2602 data_size_t total_size; /* total size of the resulting region */
2603 VARARG(region,rectangles); /* list of rectangles for the region (in screen coords) */
2604 @END
2605 #define UPDATE_NONCLIENT 0x01 /* get region for repainting non-client area */
2606 #define UPDATE_ERASE 0x02 /* get region for erasing client area */
2607 #define UPDATE_PAINT 0x04 /* get region for painting client area */
2608 #define UPDATE_INTERNALPAINT 0x08 /* get region if internal paint is pending */
2609 #define UPDATE_ALLCHILDREN 0x10 /* force repaint of all children */
2610 #define UPDATE_NOCHILDREN 0x20 /* don't try to repaint any children */
2611 #define UPDATE_NOREGION 0x40 /* don't return a region, only the flags */
2612 #define UPDATE_DELAYED_ERASE 0x80 /* still needs erase after BeginPaint */
2615 /* Update the z order of a window so that a given rectangle is fully visible */
2616 @REQ(update_window_zorder)
2617 user_handle_t window; /* handle to the window */
2618 rectangle_t rect; /* rectangle that must be visible (in client coords) */
2619 @END
2622 /* Mark parts of a window as needing a redraw */
2623 @REQ(redraw_window)
2624 user_handle_t window; /* handle to the window */
2625 unsigned int flags; /* RDW_* flags */
2626 VARARG(region,rectangles); /* list of rectangles for the region (in window coords) */
2627 @END
2630 /* Set a window property */
2631 @REQ(set_window_property)
2632 user_handle_t window; /* handle to the window */
2633 lparam_t data; /* data to store */
2634 atom_t atom; /* property atom (if no name specified) */
2635 VARARG(name,unicode_str); /* property name */
2636 @END
2639 /* Remove a window property */
2640 @REQ(remove_window_property)
2641 user_handle_t window; /* handle to the window */
2642 atom_t atom; /* property atom (if no name specified) */
2643 VARARG(name,unicode_str); /* property name */
2644 @REPLY
2645 lparam_t data; /* data stored in property */
2646 @END
2649 /* Get a window property */
2650 @REQ(get_window_property)
2651 user_handle_t window; /* handle to the window */
2652 atom_t atom; /* property atom (if no name specified) */
2653 VARARG(name,unicode_str); /* property name */
2654 @REPLY
2655 lparam_t data; /* data stored in property */
2656 @END
2659 /* Get the list of properties of a window */
2660 @REQ(get_window_properties)
2661 user_handle_t window; /* handle to the window */
2662 @REPLY
2663 int total; /* total number of properties */
2664 VARARG(props,properties); /* list of properties */
2665 @END
2668 /* Create a window station */
2669 @REQ(create_winstation)
2670 unsigned int flags; /* window station flags */
2671 unsigned int access; /* wanted access rights */
2672 unsigned int attributes; /* object attributes */
2673 VARARG(name,unicode_str); /* object name */
2674 @REPLY
2675 obj_handle_t handle; /* handle to the window station */
2676 @END
2679 /* Open a handle to a window station */
2680 @REQ(open_winstation)
2681 unsigned int access; /* wanted access rights */
2682 unsigned int attributes; /* object attributes */
2683 VARARG(name,unicode_str); /* object name */
2684 @REPLY
2685 obj_handle_t handle; /* handle to the window station */
2686 @END
2689 /* Close a window station */
2690 @REQ(close_winstation)
2691 obj_handle_t handle; /* handle to the window station */
2692 @END
2695 /* Get the process current window station */
2696 @REQ(get_process_winstation)
2697 @REPLY
2698 obj_handle_t handle; /* handle to the window station */
2699 @END
2702 /* Set the process current window station */
2703 @REQ(set_process_winstation)
2704 obj_handle_t handle; /* handle to the window station */
2705 @END
2708 /* Enumerate window stations */
2709 @REQ(enum_winstation)
2710 unsigned int index; /* current index */
2711 @REPLY
2712 unsigned int next; /* next index */
2713 VARARG(name,unicode_str); /* window station name */
2714 @END
2717 /* Create a desktop */
2718 @REQ(create_desktop)
2719 unsigned int flags; /* desktop flags */
2720 unsigned int access; /* wanted access rights */
2721 unsigned int attributes; /* object attributes */
2722 VARARG(name,unicode_str); /* object name */
2723 @REPLY
2724 obj_handle_t handle; /* handle to the desktop */
2725 @END
2728 /* Open a handle to a desktop */
2729 @REQ(open_desktop)
2730 obj_handle_t winsta; /* window station to open (null allowed) */
2731 unsigned int flags; /* desktop flags */
2732 unsigned int access; /* wanted access rights */
2733 unsigned int attributes; /* object attributes */
2734 VARARG(name,unicode_str); /* object name */
2735 @REPLY
2736 obj_handle_t handle; /* handle to the desktop */
2737 @END
2740 /* Open a handle to current input desktop */
2741 @REQ(open_input_desktop)
2742 unsigned int flags; /* desktop flags */
2743 unsigned int access; /* wanted access rights */
2744 unsigned int attributes; /* object attributes */
2745 @REPLY
2746 obj_handle_t handle; /* handle to the desktop */
2747 @END
2750 /* Close a desktop */
2751 @REQ(close_desktop)
2752 obj_handle_t handle; /* handle to the desktop */
2753 @END
2756 /* Get the thread current desktop */
2757 @REQ(get_thread_desktop)
2758 thread_id_t tid; /* thread id */
2759 @REPLY
2760 obj_handle_t handle; /* handle to the desktop */
2761 @END
2764 /* Set the thread current desktop */
2765 @REQ(set_thread_desktop)
2766 obj_handle_t handle; /* handle to the desktop */
2767 @END
2770 /* Enumerate desktops */
2771 @REQ(enum_desktop)
2772 obj_handle_t winstation; /* handle to the window station */
2773 unsigned int index; /* current index */
2774 @REPLY
2775 unsigned int next; /* next index */
2776 VARARG(name,unicode_str); /* window station name */
2777 @END
2780 /* Get/set information about a user object (window station or desktop) */
2781 @REQ(set_user_object_info)
2782 obj_handle_t handle; /* handle to the object */
2783 unsigned int flags; /* information to set */
2784 unsigned int obj_flags; /* new object flags */
2785 @REPLY
2786 int is_desktop; /* is object a desktop? */
2787 unsigned int old_obj_flags; /* old object flags */
2788 VARARG(name,unicode_str); /* object name */
2789 @END
2790 #define SET_USER_OBJECT_FLAGS 1
2793 /* Register a hotkey */
2794 @REQ(register_hotkey)
2795 user_handle_t window; /* handle to the window */
2796 int id; /* hotkey identifier */
2797 unsigned int flags; /* modifier keys */
2798 unsigned int vkey; /* virtual key code */
2799 @REPLY
2800 int replaced; /* did we replace an existing hotkey? */
2801 unsigned int flags; /* flags of replaced hotkey */
2802 unsigned int vkey; /* virtual key code of replaced hotkey */
2803 @END
2806 /* Unregister a hotkey */
2807 @REQ(unregister_hotkey)
2808 user_handle_t window; /* handle to the window */
2809 int id; /* hotkey identifier */
2810 @REPLY
2811 unsigned int flags; /* flags of removed hotkey */
2812 unsigned int vkey; /* virtual key code of removed hotkey */
2813 @END
2816 /* Attach (or detach) thread inputs */
2817 @REQ(attach_thread_input)
2818 thread_id_t tid_from; /* thread to be attached */
2819 thread_id_t tid_to; /* thread to which tid_from should be attached */
2820 int attach; /* is it an attach? */
2821 @END
2824 /* Get input data for a given thread */
2825 @REQ(get_thread_input)
2826 thread_id_t tid; /* id of thread */
2827 @REPLY
2828 user_handle_t focus; /* handle to the focus window */
2829 user_handle_t capture; /* handle to the capture window */
2830 user_handle_t active; /* handle to the active window */
2831 user_handle_t foreground; /* handle to the global foreground window */
2832 user_handle_t menu_owner; /* handle to the menu owner */
2833 user_handle_t move_size; /* handle to the moving/resizing window */
2834 user_handle_t caret; /* handle to the caret window */
2835 user_handle_t cursor; /* handle to the cursor */
2836 int show_count; /* cursor show count */
2837 rectangle_t rect; /* caret rectangle */
2838 @END
2841 /* Get the time of the last input event */
2842 @REQ(get_last_input_time)
2843 @REPLY
2844 unsigned int time;
2845 @END
2848 /* Retrieve queue keyboard state for a given thread */
2849 @REQ(get_key_state)
2850 thread_id_t tid; /* id of thread */
2851 int key; /* optional key code or -1 */
2852 @REPLY
2853 unsigned char state; /* state of specified key */
2854 VARARG(keystate,bytes); /* state array for all the keys */
2855 @END
2857 /* Set queue keyboard state for a given thread */
2858 @REQ(set_key_state)
2859 thread_id_t tid; /* id of thread */
2860 int async; /* whether to change the async state too */
2861 VARARG(keystate,bytes); /* state array for all the keys */
2862 @END
2864 /* Set the system foreground window */
2865 @REQ(set_foreground_window)
2866 user_handle_t handle; /* handle to the foreground window */
2867 @REPLY
2868 user_handle_t previous; /* handle to the previous foreground window */
2869 int send_msg_old; /* whether we have to send a msg to the old window */
2870 int send_msg_new; /* whether we have to send a msg to the new window */
2871 @END
2873 /* Set the current thread focus window */
2874 @REQ(set_focus_window)
2875 user_handle_t handle; /* handle to the focus window */
2876 @REPLY
2877 user_handle_t previous; /* handle to the previous focus window */
2878 @END
2880 /* Set the current thread active window */
2881 @REQ(set_active_window)
2882 user_handle_t handle; /* handle to the active window */
2883 @REPLY
2884 user_handle_t previous; /* handle to the previous active window */
2885 @END
2887 /* Set the current thread capture window */
2888 @REQ(set_capture_window)
2889 user_handle_t handle; /* handle to the capture window */
2890 unsigned int flags; /* capture flags (see below) */
2891 @REPLY
2892 user_handle_t previous; /* handle to the previous capture window */
2893 user_handle_t full_handle; /* full 32-bit handle of new capture window */
2894 @END
2895 #define CAPTURE_MENU 0x01 /* capture is for a menu */
2896 #define CAPTURE_MOVESIZE 0x02 /* capture is for moving/resizing */
2899 /* Set the current thread caret window */
2900 @REQ(set_caret_window)
2901 user_handle_t handle; /* handle to the caret window */
2902 int width; /* caret width */
2903 int height; /* caret height */
2904 @REPLY
2905 user_handle_t previous; /* handle to the previous caret window */
2906 rectangle_t old_rect; /* previous caret rectangle */
2907 int old_hide; /* previous hide count */
2908 int old_state; /* previous caret state (1=on, 0=off) */
2909 @END
2912 /* Set the current thread caret information */
2913 @REQ(set_caret_info)
2914 unsigned int flags; /* caret flags (see below) */
2915 user_handle_t handle; /* handle to the caret window */
2916 int x; /* caret x position */
2917 int y; /* caret y position */
2918 int hide; /* increment for hide count (can be negative to show it) */
2919 int state; /* caret state (1=on, 0=off, -1=toggle current state) */
2920 @REPLY
2921 user_handle_t full_handle; /* handle to the current caret window */
2922 rectangle_t old_rect; /* previous caret rectangle */
2923 int old_hide; /* previous hide count */
2924 int old_state; /* previous caret state (1=on, 0=off) */
2925 @END
2926 #define SET_CARET_POS 0x01 /* set the caret position from x,y */
2927 #define SET_CARET_HIDE 0x02 /* increment the caret hide count */
2928 #define SET_CARET_STATE 0x04 /* set the caret on/off state */
2931 /* Set a window hook */
2932 @REQ(set_hook)
2933 int id; /* id of the hook */
2934 process_id_t pid; /* id of process to set the hook into */
2935 thread_id_t tid; /* id of thread to set the hook into */
2936 int event_min;
2937 int event_max;
2938 client_ptr_t proc; /* hook procedure */
2939 int flags;
2940 int unicode; /* is it a unicode hook? */
2941 VARARG(module,unicode_str); /* module name */
2942 @REPLY
2943 user_handle_t handle; /* handle to the hook */
2944 unsigned int active_hooks; /* active hooks bitmap */
2945 @END
2948 /* Remove a window hook */
2949 @REQ(remove_hook)
2950 user_handle_t handle; /* handle to the hook */
2951 client_ptr_t proc; /* hook procedure if handle is 0 */
2952 int id; /* id of the hook if handle is 0 */
2953 @REPLY
2954 unsigned int active_hooks; /* active hooks bitmap */
2955 @END
2958 /* Start calling a hook chain */
2959 @REQ(start_hook_chain)
2960 int id; /* id of the hook */
2961 int event; /* signalled event */
2962 user_handle_t window; /* handle to the event window */
2963 int object_id; /* object id for out of context winevent */
2964 int child_id; /* child id for out of context winevent */
2965 @REPLY
2966 user_handle_t handle; /* handle to the next hook */
2967 process_id_t pid; /* process id for low-level keyboard/mouse hooks */
2968 thread_id_t tid; /* thread id for low-level keyboard/mouse hooks */
2969 int unicode; /* is it a unicode hook? */
2970 client_ptr_t proc; /* hook procedure */
2971 unsigned int active_hooks; /* active hooks bitmap */
2972 VARARG(module,unicode_str); /* module name */
2973 @END
2976 /* Finished calling a hook chain */
2977 @REQ(finish_hook_chain)
2978 int id; /* id of the hook */
2979 @END
2982 /* Get the hook information */
2983 @REQ(get_hook_info)
2984 user_handle_t handle; /* handle to the current hook */
2985 int get_next; /* do we want info about current or next hook? */
2986 int event; /* signalled event */
2987 user_handle_t window; /* handle to the event window */
2988 int object_id; /* object id for out of context winevent */
2989 int child_id; /* child id for out of context winevent */
2990 @REPLY
2991 user_handle_t handle; /* handle to the hook */
2992 int id; /* id of the hook */
2993 process_id_t pid; /* process id for low-level keyboard/mouse hooks */
2994 thread_id_t tid; /* thread id for low-level keyboard/mouse hooks */
2995 client_ptr_t proc; /* hook procedure */
2996 int unicode; /* is it a unicode hook? */
2997 VARARG(module,unicode_str); /* module name */
2998 @END
3001 /* Create a window class */
3002 @REQ(create_class)
3003 int local; /* is it a local class? */
3004 atom_t atom; /* class atom */
3005 unsigned int style; /* class style */
3006 mod_handle_t instance; /* module instance */
3007 int extra; /* number of extra class bytes */
3008 int win_extra; /* number of window extra bytes */
3009 client_ptr_t client_ptr; /* pointer to class in client address space */
3010 VARARG(name,unicode_str); /* class name */
3011 @REPLY
3012 atom_t atom; /* resulting class atom */
3013 @END
3016 /* Destroy a window class */
3017 @REQ(destroy_class)
3018 atom_t atom; /* class atom */
3019 mod_handle_t instance; /* module instance */
3020 VARARG(name,unicode_str); /* class name */
3021 @REPLY
3022 client_ptr_t client_ptr; /* pointer to class in client address space */
3023 @END
3026 /* Set some information in a class */
3027 @REQ(set_class_info)
3028 user_handle_t window; /* handle to the window */
3029 unsigned int flags; /* flags for info to set (see below) */
3030 atom_t atom; /* class atom */
3031 unsigned int style; /* class style */
3032 int win_extra; /* number of window extra bytes */
3033 mod_handle_t instance; /* module instance */
3034 int extra_offset; /* offset to set in extra bytes */
3035 data_size_t extra_size; /* size to set in extra bytes */
3036 lparam_t extra_value; /* value to set in extra bytes */
3037 @REPLY
3038 atom_t old_atom; /* previous class atom */
3039 unsigned int old_style; /* previous class style */
3040 int old_extra; /* previous number of class extra bytes */
3041 int old_win_extra; /* previous number of window extra bytes */
3042 mod_handle_t old_instance; /* previous module instance */
3043 lparam_t old_extra_value; /* old value in extra bytes */
3044 @END
3045 #define SET_CLASS_ATOM 0x0001
3046 #define SET_CLASS_STYLE 0x0002
3047 #define SET_CLASS_WINEXTRA 0x0004
3048 #define SET_CLASS_INSTANCE 0x0008
3049 #define SET_CLASS_EXTRA 0x0010
3052 /* Set/get clipboard information */
3053 @REQ(set_clipboard_info)
3054 unsigned int flags; /* flags for fields to set (see below) */
3055 user_handle_t clipboard; /* clipboard window */
3056 user_handle_t owner; /* clipboard owner */
3057 user_handle_t viewer; /* first clipboard viewer */
3058 unsigned int seqno; /* change sequence number */
3059 @REPLY
3060 unsigned int flags; /* status flags (see below) */
3061 user_handle_t old_clipboard; /* old clipboard window */
3062 user_handle_t old_owner; /* old clipboard owner */
3063 user_handle_t old_viewer; /* old clipboard viewer */
3064 unsigned int seqno; /* current sequence number */
3065 @END
3067 #define SET_CB_OPEN 0x001
3068 #define SET_CB_OWNER 0x002
3069 #define SET_CB_VIEWER 0x004
3070 #define SET_CB_SEQNO 0x008
3071 #define SET_CB_RELOWNER 0x010
3072 #define SET_CB_CLOSE 0x020
3073 #define CB_OPEN 0x040
3074 #define CB_OWNER 0x080
3075 #define CB_PROCESS 0x100
3078 /* Open a security token */
3079 @REQ(open_token)
3080 obj_handle_t handle; /* handle to the thread or process */
3081 unsigned int access; /* access rights to the new token */
3082 unsigned int attributes;/* object attributes */
3083 unsigned int flags; /* flags (see below) */
3084 @REPLY
3085 obj_handle_t token; /* handle to the token */
3086 @END
3087 #define OPEN_TOKEN_THREAD 1
3088 #define OPEN_TOKEN_AS_SELF 2
3091 /* Set/get the global windows */
3092 @REQ(set_global_windows)
3093 unsigned int flags; /* flags for fields to set (see below) */
3094 user_handle_t shell_window; /* handle to the new shell window */
3095 user_handle_t shell_listview; /* handle to the new shell listview window */
3096 user_handle_t progman_window; /* handle to the new program manager window */
3097 user_handle_t taskman_window; /* handle to the new task manager window */
3098 @REPLY
3099 user_handle_t old_shell_window; /* handle to the shell window */
3100 user_handle_t old_shell_listview; /* handle to the shell listview window */
3101 user_handle_t old_progman_window; /* handle to the new program manager window */
3102 user_handle_t old_taskman_window; /* handle to the new task manager window */
3103 @END
3104 #define SET_GLOBAL_SHELL_WINDOWS 0x01 /* set both main shell and listview windows */
3105 #define SET_GLOBAL_PROGMAN_WINDOW 0x02
3106 #define SET_GLOBAL_TASKMAN_WINDOW 0x04
3108 /* Adjust the privileges held by a token */
3109 @REQ(adjust_token_privileges)
3110 obj_handle_t handle; /* handle to the token */
3111 int disable_all; /* disable all privileges? */
3112 int get_modified_state; /* get modified privileges? */
3113 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges to enable/disable/remove */
3114 @REPLY
3115 unsigned int len; /* total length in bytes required to store token privileges */
3116 VARARG(privileges,LUID_AND_ATTRIBUTES); /* modified privileges */
3117 @END
3119 /* Retrieves the set of privileges held by or available to a token */
3120 @REQ(get_token_privileges)
3121 obj_handle_t handle; /* handle to the token */
3122 @REPLY
3123 unsigned int len; /* total length in bytes required to store token privileges */
3124 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges held by or available to a token */
3125 @END
3127 /* Check the token has the required privileges */
3128 @REQ(check_token_privileges)
3129 obj_handle_t handle; /* handle to the token */
3130 int all_required; /* are all the privileges required for the check to succeed? */
3131 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges to check */
3132 @REPLY
3133 int has_privileges; /* does the token have the required privileges? */
3134 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges held by or available to a token */
3135 @END
3137 @REQ(duplicate_token)
3138 obj_handle_t handle; /* handle to the token to duplicate */
3139 unsigned int access; /* access rights to the new token */
3140 unsigned int attributes; /* object attributes */
3141 int primary; /* is the new token to be a primary one? */
3142 int impersonation_level; /* impersonation level of the new token */
3143 @REPLY
3144 obj_handle_t new_handle; /* duplicated handle */
3145 @END
3147 @REQ(access_check)
3148 obj_handle_t handle; /* handle to the token */
3149 unsigned int desired_access; /* desired access to the object */
3150 unsigned int mapping_read; /* mapping from generic read to specific rights */
3151 unsigned int mapping_write; /* mapping from generic write to specific rights */
3152 unsigned int mapping_execute; /* mapping from generic execute to specific rights */
3153 unsigned int mapping_all; /* mapping from generic all to specific rights */
3154 VARARG(sd,security_descriptor); /* security descriptor to check */
3155 @REPLY
3156 unsigned int access_granted; /* access rights actually granted */
3157 unsigned int access_status; /* was access granted? */
3158 unsigned int privileges_len; /* length needed to store privileges */
3159 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges used during access check */
3160 @END
3162 @REQ(get_token_sid)
3163 obj_handle_t handle; /* handle to the token */
3164 unsigned int which_sid; /* which SID to retrieve from the token */
3165 @REPLY
3166 data_size_t sid_len; /* length needed to store sid */
3167 VARARG(sid,SID); /* the sid specified by which_sid from the token */
3168 @END
3170 @REQ(get_token_groups)
3171 obj_handle_t handle; /* handle to the token */
3172 @REPLY
3173 data_size_t user_len; /* length needed to store user */
3174 VARARG(user,token_groups); /* groups the token's user belongs to */
3175 @END
3177 @REQ(get_token_default_dacl)
3178 obj_handle_t handle; /* handle to the token */
3179 @REPLY
3180 data_size_t acl_len; /* length needed to store access control list */
3181 VARARG(acl,ACL); /* access control list */
3182 @END
3184 @REQ(set_token_default_dacl)
3185 obj_handle_t handle; /* handle to the token */
3186 VARARG(acl,ACL); /* default dacl to set */
3187 @END
3189 @REQ(set_security_object)
3190 obj_handle_t handle; /* handle to the object */
3191 unsigned int security_info; /* which parts of security descriptor to set */
3192 VARARG(sd,security_descriptor); /* security descriptor to set */
3193 @END
3195 @REQ(get_security_object)
3196 obj_handle_t handle; /* handle to the object */
3197 unsigned int security_info; /* which parts of security descriptor to get */
3198 @REPLY
3199 unsigned int sd_len; /* buffer size needed for sd */
3200 VARARG(sd,security_descriptor); /* retrieved security descriptor */
3201 @END
3203 /* Create a mailslot */
3204 @REQ(create_mailslot)
3205 unsigned int access; /* wanted access rights */
3206 unsigned int attributes; /* object attributes */
3207 obj_handle_t rootdir; /* root directory */
3208 timeout_t read_timeout;
3209 unsigned int max_msgsize;
3210 VARARG(name,unicode_str); /* mailslot name */
3211 @REPLY
3212 obj_handle_t handle; /* handle to the mailslot */
3213 @END
3216 /* Set mailslot information */
3217 @REQ(set_mailslot_info)
3218 obj_handle_t handle; /* handle to the mailslot */
3219 timeout_t read_timeout;
3220 unsigned int flags;
3221 @REPLY
3222 timeout_t read_timeout;
3223 unsigned int max_msgsize;
3224 @END
3225 #define MAILSLOT_SET_READ_TIMEOUT 1
3228 /* Create a directory object */
3229 @REQ(create_directory)
3230 unsigned int access; /* access flags */
3231 unsigned int attributes; /* object attributes */
3232 obj_handle_t rootdir; /* root directory */
3233 VARARG(directory_name,unicode_str); /* Directory name */
3234 @REPLY
3235 obj_handle_t handle; /* handle to the directory */
3236 @END
3239 /* Open a directory object */
3240 @REQ(open_directory)
3241 unsigned int access; /* access flags */
3242 unsigned int attributes; /* object attributes */
3243 obj_handle_t rootdir; /* root directory */
3244 VARARG(directory_name,unicode_str); /* Directory name */
3245 @REPLY
3246 obj_handle_t handle; /* handle to the directory */
3247 @END
3250 /* Get a directory entry by index */
3251 @REQ(get_directory_entry)
3252 obj_handle_t handle; /* handle to the directory */
3253 unsigned int index; /* entry index */
3254 @REPLY
3255 data_size_t name_len; /* length of the entry name in bytes */
3256 VARARG(name,unicode_str,name_len); /* entry name */
3257 VARARG(type,unicode_str); /* entry type */
3258 @END
3261 /* Create a symbolic link object */
3262 @REQ(create_symlink)
3263 unsigned int access; /* access flags */
3264 unsigned int attributes; /* object attributes */
3265 obj_handle_t rootdir; /* root directory */
3266 data_size_t name_len; /* length of the symlink name in bytes */
3267 VARARG(name,unicode_str,name_len); /* symlink name */
3268 VARARG(target_name,unicode_str); /* target name */
3269 @REPLY
3270 obj_handle_t handle; /* handle to the symlink */
3271 @END
3274 /* Open a symbolic link object */
3275 @REQ(open_symlink)
3276 unsigned int access; /* access flags */
3277 unsigned int attributes; /* object attributes */
3278 obj_handle_t rootdir; /* root directory */
3279 VARARG(name,unicode_str); /* symlink name */
3280 @REPLY
3281 obj_handle_t handle; /* handle to the symlink */
3282 @END
3285 /* Query a symbolic link object */
3286 @REQ(query_symlink)
3287 obj_handle_t handle; /* handle to the symlink */
3288 @REPLY
3289 data_size_t total; /* total needed size for name */
3290 VARARG(target_name,unicode_str); /* target name */
3291 @END
3294 /* Query basic object information */
3295 @REQ(get_object_info)
3296 obj_handle_t handle; /* handle to the object */
3297 @REPLY
3298 unsigned int access; /* granted access mask */
3299 unsigned int ref_count; /* object ref count */
3300 unsigned int handle_count; /* object handle count */
3301 data_size_t total; /* total needed size for name */
3302 VARARG(name,unicode_str); /* object name */
3303 @END
3306 /* Unlink a named object */
3307 @REQ(unlink_object)
3308 obj_handle_t handle; /* handle to the object */
3309 @END
3312 /* Query the impersonation level of an impersonation token */
3313 @REQ(get_token_impersonation_level)
3314 obj_handle_t handle; /* handle to the object */
3315 @REPLY
3316 int impersonation_level; /* impersonation level of the impersonation token */
3317 @END
3319 /* Allocate a locally-unique identifier */
3320 @REQ(allocate_locally_unique_id)
3321 @REPLY
3322 luid_t luid;
3323 @END
3326 /* Create a device manager */
3327 @REQ(create_device_manager)
3328 unsigned int access; /* wanted access rights */
3329 unsigned int attributes; /* object attributes */
3330 @REPLY
3331 obj_handle_t handle; /* handle to the device */
3332 @END
3335 /* Create a device */
3336 @REQ(create_device)
3337 unsigned int access; /* wanted access rights */
3338 unsigned int attributes; /* object attributes */
3339 obj_handle_t rootdir; /* root directory */
3340 client_ptr_t user_ptr; /* opaque ptr for use by client */
3341 obj_handle_t manager; /* device manager */
3342 VARARG(name,unicode_str); /* object name */
3343 @REPLY
3344 obj_handle_t handle; /* handle to the device */
3345 @END
3348 /* Delete a device */
3349 @REQ(delete_device)
3350 obj_handle_t handle; /* handle to the device */
3351 @END
3354 /* Retrieve the next pending device irp request */
3355 @REQ(get_next_device_request)
3356 obj_handle_t manager; /* handle to the device manager */
3357 obj_handle_t prev; /* handle to the previous irp */
3358 unsigned int status; /* status of the previous irp */
3359 @REPLY
3360 obj_handle_t next; /* handle to the next irp */
3361 unsigned int type; /* irp type (IRP_MJ_*) */
3362 client_ptr_t user_ptr; /* opaque ptr for the device */
3363 ioctl_code_t code; /* ioctl code */
3364 process_id_t client_pid; /* pid of process calling irp */
3365 thread_id_t client_tid; /* tid of thread calling irp */
3366 data_size_t in_size; /* total needed input size */
3367 data_size_t out_size; /* needed output size */
3368 VARARG(next_data,bytes); /* input data of the next irp */
3369 @END
3372 /* Make the current process a system process */
3373 @REQ(make_process_system)
3374 @REPLY
3375 obj_handle_t event; /* event signaled when all user processes have exited */
3376 @END
3379 /* Get detailed fixed-size information about a token */
3380 @REQ(get_token_statistics)
3381 obj_handle_t handle; /* handle to the object */
3382 @REPLY
3383 luid_t token_id; /* locally-unique identifier of the token */
3384 luid_t modified_id; /* locally-unique identifier of the modified version of the token */
3385 int primary; /* is the token primary or impersonation? */
3386 int impersonation_level; /* level of impersonation */
3387 int group_count; /* the number of groups the token is a member of */
3388 int privilege_count; /* the number of privileges the token has */
3389 @END
3392 /* Create I/O completion port */
3393 @REQ(create_completion)
3394 unsigned int access; /* desired access to a port */
3395 unsigned int attributes; /* object attributes */
3396 unsigned int concurrent; /* max number of concurrent active threads */
3397 obj_handle_t rootdir; /* root directory */
3398 VARARG(filename,unicode_str); /* port name */
3399 @REPLY
3400 obj_handle_t handle; /* port handle */
3401 @END
3404 /* Open I/O completion port */
3405 @REQ(open_completion)
3406 unsigned int access; /* desired access to a port */
3407 unsigned int attributes; /* object attributes */
3408 obj_handle_t rootdir; /* root directory */
3409 VARARG(filename,unicode_str); /* port name */
3410 @REPLY
3411 obj_handle_t handle; /* port handle */
3412 @END
3415 /* add completion to completion port */
3416 @REQ(add_completion)
3417 obj_handle_t handle; /* port handle */
3418 apc_param_t ckey; /* completion key */
3419 apc_param_t cvalue; /* completion value */
3420 apc_param_t information; /* IO_STATUS_BLOCK Information */
3421 unsigned int status; /* completion result */
3422 @END
3425 /* get completion from completion port queue */
3426 @REQ(remove_completion)
3427 obj_handle_t handle; /* port handle */
3428 @REPLY
3429 apc_param_t ckey; /* completion key */
3430 apc_param_t cvalue; /* completion value */
3431 apc_param_t information; /* IO_STATUS_BLOCK Information */
3432 unsigned int status; /* completion result */
3433 @END
3436 /* get completion queue depth */
3437 @REQ(query_completion)
3438 obj_handle_t handle; /* port handle */
3439 @REPLY
3440 unsigned int depth; /* completion queue depth */
3441 @END
3444 /* associate object with completion port */
3445 @REQ(set_completion_info)
3446 obj_handle_t handle; /* object handle */
3447 apc_param_t ckey; /* completion key */
3448 obj_handle_t chandle; /* port handle */
3449 @END
3452 /* check for associated completion and push msg */
3453 @REQ(add_fd_completion)
3454 obj_handle_t handle; /* async' object */
3455 apc_param_t cvalue; /* completion value */
3456 apc_param_t information; /* IO_STATUS_BLOCK Information */
3457 unsigned int status; /* completion status */
3458 @END
3461 /* Retrieve layered info for a window */
3462 @REQ(get_window_layered_info)
3463 user_handle_t handle; /* handle to the window */
3464 @REPLY
3465 unsigned int color_key; /* color key */
3466 unsigned int alpha; /* alpha (0..255) */
3467 unsigned int flags; /* LWA_* flags */
3468 @END
3471 /* Set layered info for a window */
3472 @REQ(set_window_layered_info)
3473 user_handle_t handle; /* handle to the window */
3474 unsigned int color_key; /* color key */
3475 unsigned int alpha; /* alpha (0..255) */
3476 unsigned int flags; /* LWA_* flags */
3477 @END
3480 /* Allocate an arbitrary user handle */
3481 @REQ(alloc_user_handle)
3482 @REPLY
3483 user_handle_t handle; /* allocated handle */
3484 @END
3487 /* Free an arbitrary user handle */
3488 @REQ(free_user_handle)
3489 user_handle_t handle; /* handle to free*/
3490 @END
3493 /* Set/get the current cursor */
3494 @REQ(set_cursor)
3495 unsigned int flags; /* flags for fields to set (see below) */
3496 user_handle_t handle; /* handle to the cursor */
3497 int show_count; /* show count increment/decrement */
3498 int x; /* cursor position */
3499 int y;
3500 rectangle_t clip; /* cursor clip rectangle */
3501 unsigned int clip_msg; /* message to post on cursor clip changes */
3502 @REPLY
3503 user_handle_t prev_handle; /* previous handle */
3504 int prev_count; /* previous show count */
3505 int prev_x; /* previous position */
3506 int prev_y;
3507 int new_x; /* new position */
3508 int new_y;
3509 rectangle_t new_clip; /* new clip rectangle */
3510 unsigned int last_change; /* time of last position change */
3511 @END
3512 #define SET_CURSOR_HANDLE 0x01
3513 #define SET_CURSOR_COUNT 0x02
3514 #define SET_CURSOR_POS 0x04
3515 #define SET_CURSOR_CLIP 0x08
3516 #define SET_CURSOR_NOCLIP 0x10
3519 /* Modify the list of registered rawinput devices */
3520 @REQ(update_rawinput_devices)
3521 VARARG(devices,rawinput_devices);
3522 @END
3525 /* Retrieve the suspended context of a thread */
3526 @REQ(get_suspend_context)
3527 @REPLY
3528 VARARG(context,context); /* thread context */
3529 @END
3532 /* Store the suspend context of a thread */
3533 @REQ(set_suspend_context)
3534 VARARG(context,context); /* thread context */
3535 @END
3538 /* Create a new job object */
3539 @REQ(create_job)
3540 unsigned int access; /* wanted access rights */
3541 unsigned int attributes; /* object attributes */
3542 VARARG(objattr,object_attributes); /* object attributes */
3543 @REPLY
3544 obj_handle_t handle; /* handle to the job */
3545 @END
3548 /* Assign a job object to a process */
3549 @REQ(assign_job)
3550 obj_handle_t job; /* handle to the job */
3551 obj_handle_t process; /* handle to the process */
3552 @END
3555 /* Check if a process is associated with a job */
3556 @REQ(process_in_job)
3557 obj_handle_t job; /* handle to the job */
3558 obj_handle_t process; /* handle to the process */
3559 @END
3562 /* Set limit flags on a job */
3563 @REQ(set_job_limits)
3564 obj_handle_t handle; /* handle to the job */
3565 unsigned int limit_flags; /* new limit flags */
3566 @END
3569 /* Set new completion port for a job */
3570 @REQ(set_job_completion_port)
3571 obj_handle_t job; /* handle to the job */
3572 obj_handle_t port; /* handle to the completion port */
3573 client_ptr_t key; /* key to send with completion messages */
3574 @END
3577 /* Terminate all processes associated with the job */
3578 @REQ(terminate_job)
3579 obj_handle_t handle; /* handle to the job */
3580 int status; /* process exit code */
3581 @END