server: Rename ioctl to irp to allow supporting various types of I/O requests.
[wine.git] / server / protocol.def
blob7e4737a2a3d7f824692a70f4f57b39dbfc3cddf7
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_file)
1153 obj_handle_t handle; /* handle to the file */
1154 @REPLY
1155 obj_handle_t event; /* event set when finished */
1156 @END
1159 /* Lock a region of a file */
1160 @REQ(lock_file)
1161 obj_handle_t handle; /* handle to the file */
1162 file_pos_t offset; /* offset of start of lock */
1163 file_pos_t count; /* count of bytes to lock */
1164 int shared; /* shared or exclusive lock? */
1165 int wait; /* do we want to wait? */
1166 @REPLY
1167 obj_handle_t handle; /* handle to wait on */
1168 int overlapped; /* is it an overlapped I/O handle? */
1169 @END
1172 /* Unlock a region of a file */
1173 @REQ(unlock_file)
1174 obj_handle_t handle; /* handle to the file */
1175 file_pos_t offset; /* offset of start of unlock */
1176 file_pos_t count; /* count of bytes to unlock */
1177 @END
1180 /* Create a socket */
1181 @REQ(create_socket)
1182 unsigned int access; /* wanted access rights */
1183 unsigned int attributes; /* object attributes */
1184 int family; /* family, see socket manpage */
1185 int type; /* type, see socket manpage */
1186 int protocol; /* protocol, see socket manpage */
1187 unsigned int flags; /* socket flags */
1188 @REPLY
1189 obj_handle_t handle; /* handle to the new socket */
1190 @END
1193 /* Accept a socket */
1194 @REQ(accept_socket)
1195 obj_handle_t lhandle; /* handle to the listening socket */
1196 unsigned int access; /* wanted access rights */
1197 unsigned int attributes; /* object attributes */
1198 @REPLY
1199 obj_handle_t handle; /* handle to the new socket */
1200 @END
1203 /* Accept into an initialized socket */
1204 @REQ(accept_into_socket)
1205 obj_handle_t lhandle; /* handle to the listening socket */
1206 obj_handle_t ahandle; /* handle to the accepting socket */
1207 @END
1210 /* Set socket event parameters */
1211 @REQ(set_socket_event)
1212 obj_handle_t handle; /* handle to the socket */
1213 unsigned int mask; /* event mask */
1214 obj_handle_t event; /* event object */
1215 user_handle_t window; /* window to send the message to */
1216 unsigned int msg; /* message to send */
1217 @END
1220 /* Get socket event parameters */
1221 @REQ(get_socket_event)
1222 obj_handle_t handle; /* handle to the socket */
1223 int service; /* clear pending? */
1224 obj_handle_t c_event; /* event to clear */
1225 @REPLY
1226 unsigned int mask; /* event mask */
1227 unsigned int pmask; /* pending events */
1228 unsigned int state; /* status bits */
1229 VARARG(errors,ints); /* event errors */
1230 @END
1233 /* Get socket info */
1234 @REQ(get_socket_info)
1235 obj_handle_t handle; /* handle to the socket */
1236 @REPLY
1237 int family; /* family, see socket manpage */
1238 int type; /* type, see socket manpage */
1239 int protocol; /* protocol, see socket manpage */
1240 @END
1243 /* Re-enable pending socket events */
1244 @REQ(enable_socket_event)
1245 obj_handle_t handle; /* handle to the socket */
1246 unsigned int mask; /* events to re-enable */
1247 unsigned int sstate; /* status bits to set */
1248 unsigned int cstate; /* status bits to clear */
1249 @END
1251 @REQ(set_socket_deferred)
1252 obj_handle_t handle; /* handle to the socket */
1253 obj_handle_t deferred; /* handle to the socket for which accept() is deferred */
1254 @END
1256 /* Allocate a console (only used by a console renderer) */
1257 @REQ(alloc_console)
1258 unsigned int access; /* wanted access rights */
1259 unsigned int attributes; /* object attributes */
1260 process_id_t pid; /* pid of process which shall be attached to the console */
1261 int input_fd; /* if pid=-1 (bare console to current process), fd for input */
1262 @REPLY
1263 obj_handle_t handle_in; /* handle to console input */
1264 obj_handle_t event; /* handle to renderer events change notification */
1265 @END
1268 /* Free the console of the current process */
1269 @REQ(free_console)
1270 @END
1273 #define CONSOLE_RENDERER_NONE_EVENT 0x00
1274 #define CONSOLE_RENDERER_TITLE_EVENT 0x01
1275 #define CONSOLE_RENDERER_ACTIVE_SB_EVENT 0x02
1276 #define CONSOLE_RENDERER_SB_RESIZE_EVENT 0x03
1277 #define CONSOLE_RENDERER_UPDATE_EVENT 0x04
1278 #define CONSOLE_RENDERER_CURSOR_POS_EVENT 0x05
1279 #define CONSOLE_RENDERER_CURSOR_GEOM_EVENT 0x06
1280 #define CONSOLE_RENDERER_DISPLAY_EVENT 0x07
1281 #define CONSOLE_RENDERER_EXIT_EVENT 0x08
1282 struct console_renderer_event
1284 short event;
1285 union
1287 struct update
1289 short top;
1290 short bottom;
1291 } update;
1292 struct resize
1294 short width;
1295 short height;
1296 } resize;
1297 struct cursor_pos
1299 short x;
1300 short y;
1301 } cursor_pos;
1302 struct cursor_geom
1304 short visible;
1305 short size;
1306 } cursor_geom;
1307 struct display
1309 short left;
1310 short top;
1311 short width;
1312 short height;
1313 } display;
1314 } u;
1317 /* retrieve console events for the renderer */
1318 @REQ(get_console_renderer_events)
1319 obj_handle_t handle; /* handle to console input events */
1320 @REPLY
1321 VARARG(data,bytes); /* the various console_renderer_events */
1322 @END
1325 /* Open a handle to the process console */
1326 @REQ(open_console)
1327 obj_handle_t from; /* 0 (resp 1) input (resp output) of current process console */
1328 /* otherwise console_in handle to get active screen buffer? */
1329 unsigned int access; /* wanted access rights */
1330 unsigned int attributes; /* object attributes */
1331 int share; /* share mask (only for output handles) */
1332 @REPLY
1333 obj_handle_t handle; /* handle to the console */
1334 @END
1337 /* Get the input queue wait event */
1338 @REQ(get_console_wait_event)
1339 @REPLY
1340 obj_handle_t handle;
1341 @END
1343 /* Get a console mode (input or output) */
1344 @REQ(get_console_mode)
1345 obj_handle_t handle; /* handle to the console */
1346 @REPLY
1347 int mode; /* console mode */
1348 @END
1351 /* Set a console mode (input or output) */
1352 @REQ(set_console_mode)
1353 obj_handle_t handle; /* handle to the console */
1354 int mode; /* console mode */
1355 @END
1358 /* Set info about a console (input only) */
1359 @REQ(set_console_input_info)
1360 obj_handle_t handle; /* handle to console input, or 0 for process' console */
1361 int mask; /* setting mask (see below) */
1362 obj_handle_t active_sb; /* active screen buffer */
1363 int history_mode; /* whether we duplicate lines in history */
1364 int history_size; /* number of lines in history */
1365 int edition_mode; /* index to the edition mode flavors */
1366 int input_cp; /* console input codepage */
1367 int output_cp; /* console output codepage */
1368 user_handle_t win; /* console window if backend supports it */
1369 VARARG(title,unicode_str); /* console title */
1370 @END
1371 #define SET_CONSOLE_INPUT_INFO_ACTIVE_SB 0x01
1372 #define SET_CONSOLE_INPUT_INFO_TITLE 0x02
1373 #define SET_CONSOLE_INPUT_INFO_HISTORY_MODE 0x04
1374 #define SET_CONSOLE_INPUT_INFO_HISTORY_SIZE 0x08
1375 #define SET_CONSOLE_INPUT_INFO_EDITION_MODE 0x10
1376 #define SET_CONSOLE_INPUT_INFO_INPUT_CODEPAGE 0x20
1377 #define SET_CONSOLE_INPUT_INFO_OUTPUT_CODEPAGE 0x40
1378 #define SET_CONSOLE_INPUT_INFO_WIN 0x80
1381 /* Get info about a console (input only) */
1382 @REQ(get_console_input_info)
1383 obj_handle_t handle; /* handle to console input, or 0 for process' console */
1384 @REPLY
1385 int history_mode; /* whether we duplicate lines in history */
1386 int history_size; /* number of lines in history */
1387 int history_index; /* number of used lines in history */
1388 int edition_mode; /* index to the edition mode flavors */
1389 int input_cp; /* console input codepage */
1390 int output_cp; /* console output codepage */
1391 user_handle_t win; /* console window if backend supports it */
1392 VARARG(title,unicode_str); /* console title */
1393 @END
1396 /* appends a string to console's history */
1397 @REQ(append_console_input_history)
1398 obj_handle_t handle; /* handle to console input, or 0 for process' console */
1399 VARARG(line,unicode_str); /* line to add */
1400 @END
1403 /* appends a string to console's history */
1404 @REQ(get_console_input_history)
1405 obj_handle_t handle; /* handle to console input, or 0 for process' console */
1406 int index; /* index to get line from */
1407 @REPLY
1408 int total; /* total length of line in Unicode chars */
1409 VARARG(line,unicode_str); /* line to add */
1410 @END
1413 /* creates a new screen buffer on process' console */
1414 @REQ(create_console_output)
1415 obj_handle_t handle_in; /* handle to console input, or 0 for process' console */
1416 unsigned int access; /* wanted access rights */
1417 unsigned int attributes; /* object attributes */
1418 unsigned int share; /* sharing credentials */
1419 int fd; /* for bare consoles, fd the screen-buffer is attached to */
1420 @REPLY
1421 obj_handle_t handle_out; /* handle to the screen buffer */
1422 @END
1425 /* Set info about a console (output only) */
1426 @REQ(set_console_output_info)
1427 obj_handle_t handle; /* handle to the console */
1428 int mask; /* setting mask (see below) */
1429 short int cursor_size; /* size of cursor (percentage filled) */
1430 short int cursor_visible;/* cursor visibility flag */
1431 short int cursor_x; /* position of cursor (x, y) */
1432 short int cursor_y;
1433 short int width; /* width of the screen buffer */
1434 short int height; /* height of the screen buffer */
1435 short int attr; /* default attribute */
1436 short int win_left; /* window actually displayed by renderer */
1437 short int win_top; /* the rect area is expressed within the */
1438 short int win_right; /* boundaries of the screen buffer */
1439 short int win_bottom;
1440 short int max_width; /* maximum size (width x height) for the window */
1441 short int max_height;
1442 @END
1443 #define SET_CONSOLE_OUTPUT_INFO_CURSOR_GEOM 0x01
1444 #define SET_CONSOLE_OUTPUT_INFO_CURSOR_POS 0x02
1445 #define SET_CONSOLE_OUTPUT_INFO_SIZE 0x04
1446 #define SET_CONSOLE_OUTPUT_INFO_ATTR 0x08
1447 #define SET_CONSOLE_OUTPUT_INFO_DISPLAY_WINDOW 0x10
1448 #define SET_CONSOLE_OUTPUT_INFO_MAX_SIZE 0x20
1451 /* Get info about a console (output only) */
1452 @REQ(get_console_output_info)
1453 obj_handle_t handle; /* handle to the console */
1454 @REPLY
1455 short int cursor_size; /* size of cursor (percentage filled) */
1456 short int cursor_visible;/* cursor visibility flag */
1457 short int cursor_x; /* position of cursor (x, y) */
1458 short int cursor_y;
1459 short int width; /* width of the screen buffer */
1460 short int height; /* height of the screen buffer */
1461 short int attr; /* default attribute */
1462 short int win_left; /* window actually displayed by renderer */
1463 short int win_top; /* the rect area is expressed within the */
1464 short int win_right; /* boundaries of the screen buffer */
1465 short int win_bottom;
1466 short int max_width; /* maximum size (width x height) for the window */
1467 short int max_height;
1468 @END
1470 /* Add input records to a console input queue */
1471 @REQ(write_console_input)
1472 obj_handle_t handle; /* handle to the console input */
1473 VARARG(rec,input_records); /* input records */
1474 @REPLY
1475 int written; /* number of records written */
1476 @END
1479 /* Fetch input records from a console input queue */
1480 @REQ(read_console_input)
1481 obj_handle_t handle; /* handle to the console input */
1482 int flush; /* flush the retrieved records from the queue? */
1483 @REPLY
1484 int read; /* number of records read */
1485 VARARG(rec,input_records); /* input records */
1486 @END
1489 /* write data (chars and/or attributes) in a screen buffer */
1490 @REQ(write_console_output)
1491 obj_handle_t handle; /* handle to the console output */
1492 int x; /* position where to start writing */
1493 int y;
1494 int mode; /* char info (see below) */
1495 int wrap; /* wrap around at end of line? */
1496 VARARG(data,bytes); /* info to write */
1497 @REPLY
1498 int written; /* number of char infos actually written */
1499 int width; /* width of screen buffer */
1500 int height; /* height of screen buffer */
1501 @END
1502 enum char_info_mode
1504 CHAR_INFO_MODE_TEXT, /* characters only */
1505 CHAR_INFO_MODE_ATTR, /* attributes only */
1506 CHAR_INFO_MODE_TEXTATTR, /* both characters and attributes */
1507 CHAR_INFO_MODE_TEXTSTDATTR /* characters but use standard attributes */
1511 /* fill a screen buffer with constant data (chars and/or attributes) */
1512 @REQ(fill_console_output)
1513 obj_handle_t handle; /* handle to the console output */
1514 int x; /* position where to start writing */
1515 int y;
1516 int mode; /* char info mode */
1517 int count; /* number to write */
1518 int wrap; /* wrap around at end of line? */
1519 char_info_t data; /* data to write */
1520 @REPLY
1521 int written; /* number of char infos actually written */
1522 @END
1525 /* read data (chars and/or attributes) from a screen buffer */
1526 @REQ(read_console_output)
1527 obj_handle_t handle; /* handle to the console output */
1528 int x; /* position (x,y) where to start reading */
1529 int y;
1530 int mode; /* char info mode */
1531 int wrap; /* wrap around at end of line? */
1532 @REPLY
1533 int width; /* width of screen buffer */
1534 int height; /* height of screen buffer */
1535 VARARG(data,bytes);
1536 @END
1539 /* move a rect (of data) in screen buffer content */
1540 @REQ(move_console_output)
1541 obj_handle_t handle; /* handle to the console output */
1542 short int x_src; /* position (x, y) of rect to start moving from */
1543 short int y_src;
1544 short int x_dst; /* position (x, y) of rect to move to */
1545 short int y_dst;
1546 short int w; /* size of the rect (width, height) to move */
1547 short int h;
1548 @END
1551 /* Sends a signal to a process group */
1552 @REQ(send_console_signal)
1553 int signal; /* the signal to send */
1554 process_id_t group_id; /* the group to send the signal to */
1555 @END
1558 /* enable directory change notifications */
1559 @REQ(read_directory_changes)
1560 unsigned int filter; /* notification filter */
1561 int subtree; /* watch the subtree? */
1562 int want_data; /* flag indicating whether change data should be collected */
1563 async_data_t async; /* async I/O parameters */
1564 @END
1567 @REQ(read_change)
1568 obj_handle_t handle;
1569 @REPLY
1570 VARARG(events,filesystem_event); /* collected filesystem events */
1571 @END
1574 /* Create a file mapping */
1575 @REQ(create_mapping)
1576 unsigned int access; /* wanted access rights */
1577 unsigned int attributes; /* object attributes */
1578 unsigned int protect; /* protection flags (see below) */
1579 mem_size_t size; /* mapping size */
1580 obj_handle_t file_handle; /* file handle */
1581 VARARG(objattr,object_attributes); /* object attributes */
1582 @REPLY
1583 obj_handle_t handle; /* handle to the mapping */
1584 @END
1585 /* per-page protection flags */
1586 #define VPROT_READ 0x01
1587 #define VPROT_WRITE 0x02
1588 #define VPROT_EXEC 0x04
1589 #define VPROT_WRITECOPY 0x08
1590 #define VPROT_GUARD 0x10
1591 #define VPROT_NOCACHE 0x20
1592 #define VPROT_COMMITTED 0x40
1593 #define VPROT_WRITEWATCH 0x80
1594 /* per-mapping protection flags */
1595 #define VPROT_IMAGE 0x0100 /* mapping for an exe image */
1596 #define VPROT_SYSTEM 0x0200 /* system view (underlying mmap not under our control) */
1597 #define VPROT_VALLOC 0x0400 /* allocated by VirtualAlloc */
1598 #define VPROT_NOEXEC 0x0800 /* don't force exec permission */
1601 /* Open a mapping */
1602 @REQ(open_mapping)
1603 unsigned int access; /* wanted access rights */
1604 unsigned int attributes; /* object attributes */
1605 obj_handle_t rootdir; /* root directory */
1606 VARARG(name,unicode_str); /* object name */
1607 @REPLY
1608 obj_handle_t handle; /* handle to the mapping */
1609 @END
1612 /* Get information about a file mapping */
1613 @REQ(get_mapping_info)
1614 obj_handle_t handle; /* handle to the mapping */
1615 unsigned int access; /* wanted access rights */
1616 @REPLY
1617 mem_size_t size; /* mapping size */
1618 int protect; /* protection flags */
1619 int header_size; /* header size (for VPROT_IMAGE mapping) */
1620 client_ptr_t base; /* default base addr (for VPROT_IMAGE mapping) */
1621 obj_handle_t mapping; /* duplicate mapping handle unless removable */
1622 obj_handle_t shared_file; /* shared mapping file handle */
1623 @END
1626 /* Get a range of committed pages in a file mapping */
1627 @REQ(get_mapping_committed_range)
1628 obj_handle_t handle; /* handle to the mapping */
1629 file_pos_t offset; /* starting offset (page-aligned, in bytes) */
1630 @REPLY
1631 mem_size_t size; /* size of range starting at offset (page-aligned, in bytes) */
1632 int committed; /* whether it is a committed range */
1633 @END
1636 /* Add a range to the committed pages in a file mapping */
1637 @REQ(add_mapping_committed_range)
1638 obj_handle_t handle; /* handle to the mapping */
1639 file_pos_t offset; /* starting offset (page-aligned, in bytes) */
1640 mem_size_t size; /* size to set (page-aligned, in bytes) or 0 if only retrieving */
1641 @END
1644 #define SNAP_PROCESS 0x00000001
1645 #define SNAP_THREAD 0x00000002
1646 /* Create a snapshot */
1647 @REQ(create_snapshot)
1648 unsigned int attributes; /* object attributes */
1649 unsigned int flags; /* snapshot flags (SNAP_*) */
1650 @REPLY
1651 obj_handle_t handle; /* handle to the snapshot */
1652 @END
1655 /* Get the next process from a snapshot */
1656 @REQ(next_process)
1657 obj_handle_t handle; /* handle to the snapshot */
1658 int reset; /* reset snapshot position? */
1659 @REPLY
1660 int count; /* process usage count */
1661 process_id_t pid; /* process id */
1662 process_id_t ppid; /* parent process id */
1663 int threads; /* number of threads */
1664 int priority; /* process priority */
1665 int handles; /* number of handles */
1666 int unix_pid; /* Unix pid */
1667 VARARG(filename,unicode_str); /* file name of main exe */
1668 @END
1671 /* Get the next thread from a snapshot */
1672 @REQ(next_thread)
1673 obj_handle_t handle; /* handle to the snapshot */
1674 int reset; /* reset snapshot position? */
1675 @REPLY
1676 int count; /* thread usage count */
1677 process_id_t pid; /* process id */
1678 thread_id_t tid; /* thread id */
1679 int base_pri; /* base priority */
1680 int delta_pri; /* delta priority */
1681 @END
1684 /* Wait for a debug event */
1685 @REQ(wait_debug_event)
1686 int get_handle; /* should we alloc a handle for waiting? */
1687 @REPLY
1688 process_id_t pid; /* process id */
1689 thread_id_t tid; /* thread id */
1690 obj_handle_t wait; /* wait handle if no event ready */
1691 VARARG(event,debug_event); /* debug event data */
1692 @END
1695 /* Queue an exception event */
1696 @REQ(queue_exception_event)
1697 int first; /* first chance exception? */
1698 unsigned int code; /* exception code */
1699 unsigned int flags; /* exception flags */
1700 client_ptr_t record; /* exception record */
1701 client_ptr_t address; /* exception address */
1702 data_size_t len; /* size of parameters */
1703 VARARG(params,uints64,len);/* exception parameters */
1704 VARARG(context,context); /* thread context */
1705 @REPLY
1706 obj_handle_t handle; /* handle to the queued event */
1707 @END
1710 /* Retrieve the status of an exception event */
1711 @REQ(get_exception_status)
1712 obj_handle_t handle; /* handle to the queued event */
1713 @REPLY
1714 VARARG(context,context); /* modified thread context */
1715 @END
1718 /* Continue a debug event */
1719 @REQ(continue_debug_event)
1720 process_id_t pid; /* process id to continue */
1721 thread_id_t tid; /* thread id to continue */
1722 int status; /* continuation status */
1723 @END
1726 /* Start/stop debugging an existing process */
1727 @REQ(debug_process)
1728 process_id_t pid; /* id of the process to debug */
1729 int attach; /* 1=attaching / 0=detaching from the process */
1730 @END
1733 /* Simulate a breakpoint in a process */
1734 @REQ(debug_break)
1735 obj_handle_t handle; /* process handle */
1736 @REPLY
1737 int self; /* was it the caller itself? */
1738 @END
1741 /* Set debugger kill on exit flag */
1742 @REQ(set_debugger_kill_on_exit)
1743 int kill_on_exit; /* 0=detach/1=kill debuggee when debugger dies */
1744 @END
1747 /* Read data from a process address space */
1748 @REQ(read_process_memory)
1749 obj_handle_t handle; /* process handle */
1750 client_ptr_t addr; /* addr to read from */
1751 @REPLY
1752 VARARG(data,bytes); /* result data */
1753 @END
1756 /* Write data to a process address space */
1757 @REQ(write_process_memory)
1758 obj_handle_t handle; /* process handle */
1759 client_ptr_t addr; /* addr to write to */
1760 VARARG(data,bytes); /* data to write */
1761 @END
1764 /* Create a registry key */
1765 @REQ(create_key)
1766 obj_handle_t parent; /* handle to the parent key */
1767 unsigned int access; /* desired access rights */
1768 unsigned int attributes; /* object attributes */
1769 unsigned int options; /* creation options */
1770 data_size_t namelen; /* length of key name in bytes */
1771 VARARG(name,unicode_str,namelen); /* key name */
1772 VARARG(class,unicode_str); /* class name */
1773 @REPLY
1774 obj_handle_t hkey; /* handle to the created key */
1775 int created; /* has it been newly created? */
1776 @END
1778 /* Open a registry key */
1779 @REQ(open_key)
1780 obj_handle_t parent; /* handle to the parent key */
1781 unsigned int access; /* desired access rights */
1782 unsigned int attributes; /* object attributes */
1783 VARARG(name,unicode_str); /* key name */
1784 @REPLY
1785 obj_handle_t hkey; /* handle to the open key */
1786 @END
1789 /* Delete a registry key */
1790 @REQ(delete_key)
1791 obj_handle_t hkey; /* handle to the key */
1792 @END
1795 /* Flush a registry key */
1796 @REQ(flush_key)
1797 obj_handle_t hkey; /* handle to the key */
1798 @END
1801 /* Enumerate registry subkeys */
1802 @REQ(enum_key)
1803 obj_handle_t hkey; /* handle to registry key */
1804 int index; /* index of subkey (or -1 for current key) */
1805 int info_class; /* requested information class */
1806 @REPLY
1807 int subkeys; /* number of subkeys */
1808 int max_subkey; /* longest subkey name */
1809 int max_class; /* longest class name */
1810 int values; /* number of values */
1811 int max_value; /* longest value name */
1812 int max_data; /* longest value data */
1813 timeout_t modif; /* last modification time */
1814 data_size_t total; /* total length needed for full name and class */
1815 data_size_t namelen; /* length of key name in bytes */
1816 VARARG(name,unicode_str,namelen); /* key name */
1817 VARARG(class,unicode_str); /* class name */
1818 @END
1821 /* Set a value of a registry key */
1822 @REQ(set_key_value)
1823 obj_handle_t hkey; /* handle to registry key */
1824 int type; /* value type */
1825 data_size_t namelen; /* length of value name in bytes */
1826 VARARG(name,unicode_str,namelen); /* value name */
1827 VARARG(data,bytes); /* value data */
1828 @END
1831 /* Retrieve the value of a registry key */
1832 @REQ(get_key_value)
1833 obj_handle_t hkey; /* handle to registry key */
1834 VARARG(name,unicode_str); /* value name */
1835 @REPLY
1836 int type; /* value type */
1837 data_size_t total; /* total length needed for data */
1838 VARARG(data,bytes); /* value data */
1839 @END
1842 /* Enumerate a value of a registry key */
1843 @REQ(enum_key_value)
1844 obj_handle_t hkey; /* handle to registry key */
1845 int index; /* value index */
1846 int info_class; /* requested information class */
1847 @REPLY
1848 int type; /* value type */
1849 data_size_t total; /* total length needed for full name and data */
1850 data_size_t namelen; /* length of value name in bytes */
1851 VARARG(name,unicode_str,namelen); /* value name */
1852 VARARG(data,bytes); /* value data */
1853 @END
1856 /* Delete a value of a registry key */
1857 @REQ(delete_key_value)
1858 obj_handle_t hkey; /* handle to registry key */
1859 VARARG(name,unicode_str); /* value name */
1860 @END
1863 /* Load a registry branch from a file */
1864 @REQ(load_registry)
1865 obj_handle_t hkey; /* root key to load to */
1866 obj_handle_t file; /* file to load from */
1867 VARARG(name,unicode_str); /* subkey name */
1868 @END
1871 /* UnLoad a registry branch from a file */
1872 @REQ(unload_registry)
1873 obj_handle_t hkey; /* root key to unload to */
1874 @END
1877 /* Save a registry branch to a file */
1878 @REQ(save_registry)
1879 obj_handle_t hkey; /* key to save */
1880 obj_handle_t file; /* file to save to */
1881 @END
1884 /* Add a registry key change notification */
1885 @REQ(set_registry_notification)
1886 obj_handle_t hkey; /* key to watch for changes */
1887 obj_handle_t event; /* event to set */
1888 int subtree; /* should we watch the whole subtree? */
1889 unsigned int filter; /* things to watch */
1890 @END
1893 /* Create a waitable timer */
1894 @REQ(create_timer)
1895 unsigned int access; /* wanted access rights */
1896 unsigned int attributes; /* object attributes */
1897 obj_handle_t rootdir; /* root directory */
1898 int manual; /* manual reset */
1899 VARARG(name,unicode_str); /* object name */
1900 @REPLY
1901 obj_handle_t handle; /* handle to the timer */
1902 @END
1905 /* Open a waitable timer */
1906 @REQ(open_timer)
1907 unsigned int access; /* wanted access rights */
1908 unsigned int attributes; /* object attributes */
1909 obj_handle_t rootdir; /* root directory */
1910 VARARG(name,unicode_str); /* object name */
1911 @REPLY
1912 obj_handle_t handle; /* handle to the timer */
1913 @END
1915 /* Set a waitable timer */
1916 @REQ(set_timer)
1917 obj_handle_t handle; /* handle to the timer */
1918 timeout_t expire; /* next expiration absolute time */
1919 client_ptr_t callback; /* callback function */
1920 client_ptr_t arg; /* callback argument */
1921 int period; /* timer period in ms */
1922 @REPLY
1923 int signaled; /* was the timer signaled before this call ? */
1924 @END
1926 /* Cancel a waitable timer */
1927 @REQ(cancel_timer)
1928 obj_handle_t handle; /* handle to the timer */
1929 @REPLY
1930 int signaled; /* was the timer signaled before this calltime ? */
1931 @END
1933 /* Get information on a waitable timer */
1934 @REQ(get_timer_info)
1935 obj_handle_t handle; /* handle to the timer */
1936 @REPLY
1937 timeout_t when; /* absolute time when the timer next expires */
1938 int signaled; /* is the timer signaled? */
1939 @END
1942 /* Retrieve the current context of a thread */
1943 @REQ(get_thread_context)
1944 obj_handle_t handle; /* thread handle */
1945 unsigned int flags; /* context flags */
1946 int suspend; /* suspend the thread if needed */
1947 @REPLY
1948 int self; /* was it a handle to the current thread? */
1949 VARARG(context,context); /* thread context */
1950 @END
1953 /* Set the current context of a thread */
1954 @REQ(set_thread_context)
1955 obj_handle_t handle; /* thread handle */
1956 int suspend; /* suspend the thread if needed */
1957 VARARG(context,context); /* thread context */
1958 @REPLY
1959 int self; /* was it a handle to the current thread? */
1960 @END
1963 /* Fetch a selector entry for a thread */
1964 @REQ(get_selector_entry)
1965 obj_handle_t handle; /* thread handle */
1966 int entry; /* LDT entry */
1967 @REPLY
1968 unsigned int base; /* selector base */
1969 unsigned int limit; /* selector limit */
1970 unsigned char flags; /* selector flags */
1971 @END
1974 /* Add an atom */
1975 @REQ(add_atom)
1976 obj_handle_t table; /* which table to add atom to */
1977 VARARG(name,unicode_str); /* atom name */
1978 @REPLY
1979 atom_t atom; /* resulting atom */
1980 @END
1983 /* Delete an atom */
1984 @REQ(delete_atom)
1985 obj_handle_t table; /* which table to delete atom from */
1986 atom_t atom; /* atom handle */
1987 @END
1990 /* Find an atom */
1991 @REQ(find_atom)
1992 obj_handle_t table; /* which table to find atom from */
1993 VARARG(name,unicode_str); /* atom name */
1994 @REPLY
1995 atom_t atom; /* atom handle */
1996 @END
1999 /* Get information about an atom */
2000 @REQ(get_atom_information)
2001 obj_handle_t table; /* which table to find atom from */
2002 atom_t atom; /* atom handle */
2003 @REPLY
2004 int count; /* atom lock count */
2005 int pinned; /* whether the atom has been pinned */
2006 data_size_t total; /* actual length of atom name */
2007 VARARG(name,unicode_str); /* atom name */
2008 @END
2011 /* Set information about an atom */
2012 @REQ(set_atom_information)
2013 obj_handle_t table; /* which table to find atom from */
2014 atom_t atom; /* atom handle */
2015 int pinned; /* whether to bump atom information */
2016 @END
2019 /* Empty an atom table */
2020 @REQ(empty_atom_table)
2021 obj_handle_t table; /* which table to find atom from */
2022 int if_pinned; /* whether to delete pinned atoms */
2023 @END
2026 /* Init an atom table */
2027 @REQ(init_atom_table)
2028 int entries; /* number of entries (only for local) */
2029 @REPLY
2030 obj_handle_t table; /* handle to the atom table */
2031 @END
2034 /* Get the message queue of the current thread */
2035 @REQ(get_msg_queue)
2036 @REPLY
2037 obj_handle_t handle; /* handle to the queue */
2038 @END
2041 /* Set the file descriptor associated to the current thread queue */
2042 @REQ(set_queue_fd)
2043 obj_handle_t handle; /* handle to the file descriptor */
2044 @END
2047 /* Set the current message queue wakeup mask */
2048 @REQ(set_queue_mask)
2049 unsigned int wake_mask; /* wakeup bits mask */
2050 unsigned int changed_mask; /* changed bits mask */
2051 int skip_wait; /* will we skip waiting if signaled? */
2052 @REPLY
2053 unsigned int wake_bits; /* current wake bits */
2054 unsigned int changed_bits; /* current changed bits */
2055 @END
2058 /* Get the current message queue status */
2059 @REQ(get_queue_status)
2060 unsigned int clear_bits; /* should we clear the change bits? */
2061 @REPLY
2062 unsigned int wake_bits; /* wake bits */
2063 unsigned int changed_bits; /* changed bits since last time */
2064 @END
2067 /* Retrieve the process idle event */
2068 @REQ(get_process_idle_event)
2069 obj_handle_t handle; /* process handle */
2070 @REPLY
2071 obj_handle_t event; /* handle to idle event */
2072 @END
2075 /* Send a message to a thread queue */
2076 @REQ(send_message)
2077 thread_id_t id; /* thread id */
2078 int type; /* message type (see below) */
2079 int flags; /* message flags (see below) */
2080 user_handle_t win; /* window handle */
2081 unsigned int msg; /* message code */
2082 lparam_t wparam; /* parameters */
2083 lparam_t lparam; /* parameters */
2084 timeout_t timeout; /* timeout for reply */
2085 VARARG(data,message_data); /* message data for sent messages */
2086 @END
2088 @REQ(post_quit_message)
2089 int exit_code; /* exit code to return */
2090 @END
2092 enum message_type
2094 MSG_ASCII, /* Ascii message (from SendMessageA) */
2095 MSG_UNICODE, /* Unicode message (from SendMessageW) */
2096 MSG_NOTIFY, /* notify message (from SendNotifyMessageW), always Unicode */
2097 MSG_CALLBACK, /* callback message (from SendMessageCallbackW), always Unicode */
2098 MSG_CALLBACK_RESULT,/* result of a callback message */
2099 MSG_OTHER_PROCESS, /* sent from other process, may include vararg data, always Unicode */
2100 MSG_POSTED, /* posted message (from PostMessageW), always Unicode */
2101 MSG_HARDWARE, /* hardware message */
2102 MSG_WINEVENT, /* winevent message */
2103 MSG_HOOK_LL /* low-level hardware hook */
2105 #define SEND_MSG_ABORT_IF_HUNG 0x01
2108 /* Send a hardware message to a thread queue */
2109 @REQ(send_hardware_message)
2110 user_handle_t win; /* window handle */
2111 hw_input_t input; /* input data */
2112 unsigned int flags; /* flags (see below) */
2113 @REPLY
2114 int wait; /* do we need to wait for a reply? */
2115 int prev_x; /* previous cursor position */
2116 int prev_y;
2117 int new_x; /* new cursor position */
2118 int new_y;
2119 VARARG(keystate,bytes); /* global state array for all the keys */
2120 @END
2121 #define SEND_HWMSG_INJECTED 0x01
2124 /* Get a message from the current queue */
2125 @REQ(get_message)
2126 unsigned int flags; /* PM_* flags */
2127 user_handle_t get_win; /* window handle to get */
2128 unsigned int get_first; /* first message code to get */
2129 unsigned int get_last; /* last message code to get */
2130 unsigned int hw_id; /* id of the previous hardware message (or 0) */
2131 unsigned int wake_mask; /* wakeup bits mask */
2132 unsigned int changed_mask; /* changed bits mask */
2133 @REPLY
2134 user_handle_t win; /* window handle */
2135 unsigned int msg; /* message code */
2136 lparam_t wparam; /* parameters */
2137 lparam_t lparam; /* parameters */
2138 int type; /* message type */
2139 int x; /* message x position */
2140 int y; /* message y position */
2141 unsigned int time; /* message time */
2142 unsigned int active_hooks; /* active hooks bitmap */
2143 data_size_t total; /* total size of extra data */
2144 VARARG(data,message_data); /* message data for sent messages */
2145 @END
2148 /* Reply to a sent message */
2149 @REQ(reply_message)
2150 int remove; /* should we remove the message? */
2151 lparam_t result; /* message result */
2152 VARARG(data,bytes); /* message data for sent messages */
2153 @END
2156 /* Accept the current hardware message */
2157 @REQ(accept_hardware_message)
2158 unsigned int hw_id; /* id of the hardware message */
2159 int remove; /* should we remove the message? */
2160 @END
2163 /* Retrieve the reply for the last message sent */
2164 @REQ(get_message_reply)
2165 int cancel; /* cancel message if not ready? */
2166 @REPLY
2167 lparam_t result; /* message result */
2168 VARARG(data,bytes); /* message data for sent messages */
2169 @END
2172 /* Set a window timer */
2173 @REQ(set_win_timer)
2174 user_handle_t win; /* window handle */
2175 unsigned int msg; /* message to post */
2176 unsigned int rate; /* timer rate in ms */
2177 lparam_t id; /* timer id */
2178 lparam_t lparam; /* message lparam (callback proc) */
2179 @REPLY
2180 lparam_t id; /* timer id */
2181 @END
2184 /* Kill a window timer */
2185 @REQ(kill_win_timer)
2186 user_handle_t win; /* window handle */
2187 lparam_t id; /* timer id */
2188 unsigned int msg; /* message to post */
2189 @END
2192 /* check if the thread owning the window is hung */
2193 @REQ(is_window_hung)
2194 user_handle_t win; /* window handle */
2195 @REPLY
2196 int is_hung;
2197 @END
2200 /* Retrieve info about a serial port */
2201 @REQ(get_serial_info)
2202 obj_handle_t handle; /* handle to comm port */
2203 int flags;
2204 @REPLY
2205 unsigned int readinterval;
2206 unsigned int readconst;
2207 unsigned int readmult;
2208 unsigned int writeconst;
2209 unsigned int writemult;
2210 unsigned int eventmask;
2211 unsigned int cookie;
2212 unsigned int pending_write;
2213 @END
2216 /* Set info about a serial port */
2217 @REQ(set_serial_info)
2218 obj_handle_t handle; /* handle to comm port */
2219 int flags; /* bitmask to set values (see below) */
2220 unsigned int readinterval;
2221 unsigned int readconst;
2222 unsigned int readmult;
2223 unsigned int writeconst;
2224 unsigned int writemult;
2225 unsigned int eventmask;
2226 @END
2227 #define SERIALINFO_SET_TIMEOUTS 0x01
2228 #define SERIALINFO_SET_MASK 0x02
2229 #define SERIALINFO_PENDING_WRITE 0x04
2230 #define SERIALINFO_PENDING_WAIT 0x08
2233 /* Create an async I/O */
2234 @REQ(register_async)
2235 int type; /* type of queue to look after */
2236 async_data_t async; /* async I/O parameters */
2237 int count; /* count - usually # of bytes to be read/written */
2238 @END
2239 #define ASYNC_TYPE_READ 0x01
2240 #define ASYNC_TYPE_WRITE 0x02
2241 #define ASYNC_TYPE_WAIT 0x03
2244 /* Cancel all async op on a fd */
2245 @REQ(cancel_async)
2246 obj_handle_t handle; /* handle to comm port, socket or file */
2247 client_ptr_t iosb; /* I/O status block (NULL=all) */
2248 int only_thread; /* cancel matching this thread */
2249 @END
2252 /* Perform an ioctl on a file */
2253 @REQ(ioctl)
2254 ioctl_code_t code; /* ioctl code */
2255 async_data_t async; /* async I/O parameters */
2256 int blocking; /* whether it's a blocking ioctl */
2257 VARARG(in_data,bytes); /* ioctl input data */
2258 @REPLY
2259 obj_handle_t wait; /* handle to wait on for blocking ioctl */
2260 unsigned int options; /* device open options */
2261 VARARG(out_data,bytes); /* ioctl output data */
2262 @END
2265 /* Store results of an async irp */
2266 @REQ(set_irp_result)
2267 obj_handle_t manager; /* handle to the device manager */
2268 obj_handle_t handle; /* handle to the irp */
2269 unsigned int status; /* status of the irp */
2270 VARARG(data,bytes); /* output data of the irp */
2271 @END
2274 /* Retrieve results of an async irp */
2275 @REQ(get_irp_result)
2276 obj_handle_t handle; /* handle to the device */
2277 client_ptr_t user_arg; /* user arg used to identify the request */
2278 @REPLY
2279 VARARG(out_data,bytes); /* irp output data */
2280 @END
2283 /* Create a named pipe */
2284 @REQ(create_named_pipe)
2285 unsigned int access;
2286 unsigned int attributes; /* object attributes */
2287 unsigned int options;
2288 unsigned int sharing;
2289 unsigned int maxinstances;
2290 unsigned int outsize;
2291 unsigned int insize;
2292 timeout_t timeout;
2293 unsigned int flags;
2294 VARARG(objattr,object_attributes); /* object attributes */
2295 @REPLY
2296 obj_handle_t handle; /* handle to the pipe */
2297 @END
2299 /* flags in create_named_pipe and get_named_pipe_info */
2300 #define NAMED_PIPE_MESSAGE_STREAM_WRITE 0x0001
2301 #define NAMED_PIPE_MESSAGE_STREAM_READ 0x0002
2302 #define NAMED_PIPE_NONBLOCKING_MODE 0x0004
2303 #define NAMED_PIPE_SERVER_END 0x8000
2305 /* Get named pipe information by handle */
2306 @REQ(get_named_pipe_info)
2307 obj_handle_t handle;
2308 @REPLY
2309 unsigned int flags;
2310 unsigned int sharing;
2311 unsigned int maxinstances;
2312 unsigned int instances;
2313 unsigned int outsize;
2314 unsigned int insize;
2315 @END
2317 /* Set named pipe information by handle */
2318 @REQ(set_named_pipe_info)
2319 obj_handle_t handle;
2320 unsigned int flags;
2321 @END
2323 /* Create a window */
2324 @REQ(create_window)
2325 user_handle_t parent; /* parent window */
2326 user_handle_t owner; /* owner window */
2327 atom_t atom; /* class atom */
2328 mod_handle_t instance; /* module instance */
2329 VARARG(class,unicode_str); /* class name */
2330 @REPLY
2331 user_handle_t handle; /* created window */
2332 user_handle_t parent; /* full handle of parent */
2333 user_handle_t owner; /* full handle of owner */
2334 int extra; /* number of extra bytes */
2335 client_ptr_t class_ptr; /* pointer to class in client address space */
2336 @END
2339 /* Destroy a window */
2340 @REQ(destroy_window)
2341 user_handle_t handle; /* handle to the window */
2342 @END
2345 /* Retrieve the desktop window for the current thread */
2346 @REQ(get_desktop_window)
2347 int force; /* force creation if it doesn't exist */
2348 @REPLY
2349 user_handle_t top_window; /* handle to the desktop window */
2350 user_handle_t msg_window; /* handle to the top-level HWND_MESSAGE parent */
2351 @END
2354 /* Set a window owner */
2355 @REQ(set_window_owner)
2356 user_handle_t handle; /* handle to the window */
2357 user_handle_t owner; /* new owner */
2358 @REPLY
2359 user_handle_t full_owner; /* full handle of new owner */
2360 user_handle_t prev_owner; /* full handle of previous owner */
2361 @END
2364 /* Get information from a window handle */
2365 @REQ(get_window_info)
2366 user_handle_t handle; /* handle to the window */
2367 @REPLY
2368 user_handle_t full_handle; /* full 32-bit handle */
2369 user_handle_t last_active; /* last active popup */
2370 process_id_t pid; /* process owning the window */
2371 thread_id_t tid; /* thread owning the window */
2372 atom_t atom; /* class atom */
2373 int is_unicode; /* ANSI or unicode */
2374 @END
2377 /* Set some information in a window */
2378 @REQ(set_window_info)
2379 unsigned short flags; /* flags for fields to set (see below) */
2380 short int is_unicode; /* ANSI or unicode */
2381 user_handle_t handle; /* handle to the window */
2382 unsigned int style; /* window style */
2383 unsigned int ex_style; /* window extended style */
2384 unsigned int id; /* window id */
2385 mod_handle_t instance; /* creator instance */
2386 lparam_t user_data; /* user-specific data */
2387 int extra_offset; /* offset to set in extra bytes */
2388 data_size_t extra_size; /* size to set in extra bytes */
2389 lparam_t extra_value; /* value to set in extra bytes */
2390 @REPLY
2391 unsigned int old_style; /* old window style */
2392 unsigned int old_ex_style; /* old window extended style */
2393 mod_handle_t old_instance; /* old creator instance */
2394 lparam_t old_user_data; /* old user-specific data */
2395 lparam_t old_extra_value; /* old value in extra bytes */
2396 unsigned int old_id; /* old window id */
2397 @END
2398 #define SET_WIN_STYLE 0x01
2399 #define SET_WIN_EXSTYLE 0x02
2400 #define SET_WIN_ID 0x04
2401 #define SET_WIN_INSTANCE 0x08
2402 #define SET_WIN_USERDATA 0x10
2403 #define SET_WIN_EXTRA 0x20
2404 #define SET_WIN_UNICODE 0x40
2407 /* Set the parent of a window */
2408 @REQ(set_parent)
2409 user_handle_t handle; /* handle to the window */
2410 user_handle_t parent; /* handle to the parent */
2411 @REPLY
2412 user_handle_t old_parent; /* old parent window */
2413 user_handle_t full_parent; /* full handle of new parent */
2414 @END
2417 /* Get a list of the window parents, up to the root of the tree */
2418 @REQ(get_window_parents)
2419 user_handle_t handle; /* handle to the window */
2420 @REPLY
2421 int count; /* total count of parents */
2422 VARARG(parents,user_handles); /* parent handles */
2423 @END
2426 /* Get a list of the window children */
2427 @REQ(get_window_children)
2428 obj_handle_t desktop; /* handle to desktop */
2429 user_handle_t parent; /* parent window */
2430 atom_t atom; /* class atom for the listed children */
2431 thread_id_t tid; /* thread owning the listed children */
2432 VARARG(class,unicode_str); /* class name */
2433 @REPLY
2434 int count; /* total count of children */
2435 VARARG(children,user_handles); /* children handles */
2436 @END
2439 /* Get a list of the window children that contain a given point */
2440 @REQ(get_window_children_from_point)
2441 user_handle_t parent; /* parent window */
2442 int x; /* point in parent coordinates */
2443 int y;
2444 @REPLY
2445 int count; /* total count of children */
2446 VARARG(children,user_handles); /* children handles */
2447 @END
2450 /* Get window tree information from a window handle */
2451 @REQ(get_window_tree)
2452 user_handle_t handle; /* handle to the window */
2453 @REPLY
2454 user_handle_t parent; /* parent window */
2455 user_handle_t owner; /* owner window */
2456 user_handle_t next_sibling; /* next sibling in Z-order */
2457 user_handle_t prev_sibling; /* prev sibling in Z-order */
2458 user_handle_t first_sibling; /* first sibling in Z-order */
2459 user_handle_t last_sibling; /* last sibling in Z-order */
2460 user_handle_t first_child; /* first child */
2461 user_handle_t last_child; /* last child */
2462 @END
2464 /* Set the position and Z order of a window */
2465 @REQ(set_window_pos)
2466 unsigned short swp_flags; /* SWP_* flags */
2467 unsigned short paint_flags; /* paint flags (see below) */
2468 user_handle_t handle; /* handle to the window */
2469 user_handle_t previous; /* previous window in Z order */
2470 rectangle_t window; /* window rectangle (in parent coords) */
2471 rectangle_t client; /* client rectangle (in parent coords) */
2472 VARARG(valid,rectangles); /* valid rectangles from WM_NCCALCSIZE (in parent coords) */
2473 @REPLY
2474 unsigned int new_style; /* new window style */
2475 unsigned int new_ex_style; /* new window extended style */
2476 user_handle_t surface_win; /* window that needs a surface update */
2477 @END
2478 #define SET_WINPOS_PAINT_SURFACE 0x01 /* window has a paintable surface */
2479 #define SET_WINPOS_PIXEL_FORMAT 0x02 /* window has a custom pixel format */
2481 /* Get the window and client rectangles of a window */
2482 @REQ(get_window_rectangles)
2483 user_handle_t handle; /* handle to the window */
2484 int relative; /* coords relative to (see below) */
2485 @REPLY
2486 rectangle_t window; /* window rectangle */
2487 rectangle_t visible; /* visible part of the window rectangle */
2488 rectangle_t client; /* client rectangle */
2489 @END
2490 enum coords_relative
2492 COORDS_CLIENT, /* relative to client area */
2493 COORDS_WINDOW, /* relative to whole window area */
2494 COORDS_PARENT, /* relative to parent's client area */
2495 COORDS_SCREEN /* relative to screen origin */
2499 /* Get the window text */
2500 @REQ(get_window_text)
2501 user_handle_t handle; /* handle to the window */
2502 @REPLY
2503 VARARG(text,unicode_str); /* window text */
2504 @END
2507 /* Set the window text */
2508 @REQ(set_window_text)
2509 user_handle_t handle; /* handle to the window */
2510 VARARG(text,unicode_str); /* window text */
2511 @END
2514 /* Get the coordinates offset between two windows */
2515 @REQ(get_windows_offset)
2516 user_handle_t from; /* handle to the first window */
2517 user_handle_t to; /* handle to the second window */
2518 @REPLY
2519 int x; /* x coordinate offset */
2520 int y; /* y coordinate offset */
2521 int mirror; /* whether to mirror the x coordinate */
2522 @END
2525 /* Get the visible region of a window */
2526 @REQ(get_visible_region)
2527 user_handle_t window; /* handle to the window */
2528 unsigned int flags; /* DCX flags */
2529 @REPLY
2530 user_handle_t top_win; /* top window to clip against */
2531 rectangle_t top_rect; /* top window visible rect with screen coords */
2532 rectangle_t win_rect; /* window rect in screen coords */
2533 unsigned int paint_flags; /* paint flags (from SET_WINPOS_* flags) */
2534 data_size_t total_size; /* total size of the resulting region */
2535 VARARG(region,rectangles); /* list of rectangles for the region (in screen coords) */
2536 @END
2539 /* Get the visible surface region of a window */
2540 @REQ(get_surface_region)
2541 user_handle_t window; /* handle to the window */
2542 @REPLY
2543 rectangle_t visible_rect; /* window visible rect in screen coords */
2544 data_size_t total_size; /* total size of the resulting region */
2545 VARARG(region,rectangles); /* list of rectangles for the region (in screen coords) */
2546 @END
2549 /* Get the window region */
2550 @REQ(get_window_region)
2551 user_handle_t window; /* handle to the window */
2552 @REPLY
2553 data_size_t total_size; /* total size of the resulting region */
2554 VARARG(region,rectangles); /* list of rectangles for the region (in window coords) */
2555 @END
2558 /* Set the window region */
2559 @REQ(set_window_region)
2560 user_handle_t window; /* handle to the window */
2561 int redraw; /* redraw the window? */
2562 VARARG(region,rectangles); /* list of rectangles for the region (in window coords) */
2563 @END
2566 /* Get the window update region */
2567 @REQ(get_update_region)
2568 user_handle_t window; /* handle to the window */
2569 user_handle_t from_child; /* child to start searching from */
2570 unsigned int flags; /* update flags (see below) */
2571 @REPLY
2572 user_handle_t child; /* child to repaint (or window itself) */
2573 unsigned int flags; /* resulting update flags (see below) */
2574 data_size_t total_size; /* total size of the resulting region */
2575 VARARG(region,rectangles); /* list of rectangles for the region (in screen coords) */
2576 @END
2577 #define UPDATE_NONCLIENT 0x01 /* get region for repainting non-client area */
2578 #define UPDATE_ERASE 0x02 /* get region for erasing client area */
2579 #define UPDATE_PAINT 0x04 /* get region for painting client area */
2580 #define UPDATE_INTERNALPAINT 0x08 /* get region if internal paint is pending */
2581 #define UPDATE_ALLCHILDREN 0x10 /* force repaint of all children */
2582 #define UPDATE_NOCHILDREN 0x20 /* don't try to repaint any children */
2583 #define UPDATE_NOREGION 0x40 /* don't return a region, only the flags */
2584 #define UPDATE_DELAYED_ERASE 0x80 /* still needs erase after BeginPaint */
2587 /* Update the z order of a window so that a given rectangle is fully visible */
2588 @REQ(update_window_zorder)
2589 user_handle_t window; /* handle to the window */
2590 rectangle_t rect; /* rectangle that must be visible (in client coords) */
2591 @END
2594 /* Mark parts of a window as needing a redraw */
2595 @REQ(redraw_window)
2596 user_handle_t window; /* handle to the window */
2597 unsigned int flags; /* RDW_* flags */
2598 VARARG(region,rectangles); /* list of rectangles for the region (in window coords) */
2599 @END
2602 /* Set a window property */
2603 @REQ(set_window_property)
2604 user_handle_t window; /* handle to the window */
2605 lparam_t data; /* data to store */
2606 atom_t atom; /* property atom (if no name specified) */
2607 VARARG(name,unicode_str); /* property name */
2608 @END
2611 /* Remove a window property */
2612 @REQ(remove_window_property)
2613 user_handle_t window; /* handle to the window */
2614 atom_t atom; /* property atom (if no name specified) */
2615 VARARG(name,unicode_str); /* property name */
2616 @REPLY
2617 lparam_t data; /* data stored in property */
2618 @END
2621 /* Get a window property */
2622 @REQ(get_window_property)
2623 user_handle_t window; /* handle to the window */
2624 atom_t atom; /* property atom (if no name specified) */
2625 VARARG(name,unicode_str); /* property name */
2626 @REPLY
2627 lparam_t data; /* data stored in property */
2628 @END
2631 /* Get the list of properties of a window */
2632 @REQ(get_window_properties)
2633 user_handle_t window; /* handle to the window */
2634 @REPLY
2635 int total; /* total number of properties */
2636 VARARG(props,properties); /* list of properties */
2637 @END
2640 /* Create a window station */
2641 @REQ(create_winstation)
2642 unsigned int flags; /* window station flags */
2643 unsigned int access; /* wanted access rights */
2644 unsigned int attributes; /* object attributes */
2645 VARARG(name,unicode_str); /* object name */
2646 @REPLY
2647 obj_handle_t handle; /* handle to the window station */
2648 @END
2651 /* Open a handle to a window station */
2652 @REQ(open_winstation)
2653 unsigned int access; /* wanted access rights */
2654 unsigned int attributes; /* object attributes */
2655 VARARG(name,unicode_str); /* object name */
2656 @REPLY
2657 obj_handle_t handle; /* handle to the window station */
2658 @END
2661 /* Close a window station */
2662 @REQ(close_winstation)
2663 obj_handle_t handle; /* handle to the window station */
2664 @END
2667 /* Get the process current window station */
2668 @REQ(get_process_winstation)
2669 @REPLY
2670 obj_handle_t handle; /* handle to the window station */
2671 @END
2674 /* Set the process current window station */
2675 @REQ(set_process_winstation)
2676 obj_handle_t handle; /* handle to the window station */
2677 @END
2680 /* Enumerate window stations */
2681 @REQ(enum_winstation)
2682 unsigned int index; /* current index */
2683 @REPLY
2684 unsigned int next; /* next index */
2685 VARARG(name,unicode_str); /* window station name */
2686 @END
2689 /* Create a desktop */
2690 @REQ(create_desktop)
2691 unsigned int flags; /* desktop flags */
2692 unsigned int access; /* wanted access rights */
2693 unsigned int attributes; /* object attributes */
2694 VARARG(name,unicode_str); /* object name */
2695 @REPLY
2696 obj_handle_t handle; /* handle to the desktop */
2697 @END
2700 /* Open a handle to a desktop */
2701 @REQ(open_desktop)
2702 obj_handle_t winsta; /* window station to open (null allowed) */
2703 unsigned int flags; /* desktop flags */
2704 unsigned int access; /* wanted access rights */
2705 unsigned int attributes; /* object attributes */
2706 VARARG(name,unicode_str); /* object name */
2707 @REPLY
2708 obj_handle_t handle; /* handle to the desktop */
2709 @END
2712 /* Open a handle to current input desktop */
2713 @REQ(open_input_desktop)
2714 unsigned int flags; /* desktop flags */
2715 unsigned int access; /* wanted access rights */
2716 unsigned int attributes; /* object attributes */
2717 @REPLY
2718 obj_handle_t handle; /* handle to the desktop */
2719 @END
2722 /* Close a desktop */
2723 @REQ(close_desktop)
2724 obj_handle_t handle; /* handle to the desktop */
2725 @END
2728 /* Get the thread current desktop */
2729 @REQ(get_thread_desktop)
2730 thread_id_t tid; /* thread id */
2731 @REPLY
2732 obj_handle_t handle; /* handle to the desktop */
2733 @END
2736 /* Set the thread current desktop */
2737 @REQ(set_thread_desktop)
2738 obj_handle_t handle; /* handle to the desktop */
2739 @END
2742 /* Enumerate desktops */
2743 @REQ(enum_desktop)
2744 obj_handle_t winstation; /* handle to the window station */
2745 unsigned int index; /* current index */
2746 @REPLY
2747 unsigned int next; /* next index */
2748 VARARG(name,unicode_str); /* window station name */
2749 @END
2752 /* Get/set information about a user object (window station or desktop) */
2753 @REQ(set_user_object_info)
2754 obj_handle_t handle; /* handle to the object */
2755 unsigned int flags; /* information to set */
2756 unsigned int obj_flags; /* new object flags */
2757 @REPLY
2758 int is_desktop; /* is object a desktop? */
2759 unsigned int old_obj_flags; /* old object flags */
2760 VARARG(name,unicode_str); /* object name */
2761 @END
2762 #define SET_USER_OBJECT_FLAGS 1
2765 /* Register a hotkey */
2766 @REQ(register_hotkey)
2767 user_handle_t window; /* handle to the window */
2768 int id; /* hotkey identifier */
2769 unsigned int flags; /* modifier keys */
2770 unsigned int vkey; /* virtual key code */
2771 @REPLY
2772 int replaced; /* did we replace an existing hotkey? */
2773 unsigned int flags; /* flags of replaced hotkey */
2774 unsigned int vkey; /* virtual key code of replaced hotkey */
2775 @END
2778 /* Unregister a hotkey */
2779 @REQ(unregister_hotkey)
2780 user_handle_t window; /* handle to the window */
2781 int id; /* hotkey identifier */
2782 @REPLY
2783 unsigned int flags; /* flags of removed hotkey */
2784 unsigned int vkey; /* virtual key code of removed hotkey */
2785 @END
2788 /* Attach (or detach) thread inputs */
2789 @REQ(attach_thread_input)
2790 thread_id_t tid_from; /* thread to be attached */
2791 thread_id_t tid_to; /* thread to which tid_from should be attached */
2792 int attach; /* is it an attach? */
2793 @END
2796 /* Get input data for a given thread */
2797 @REQ(get_thread_input)
2798 thread_id_t tid; /* id of thread */
2799 @REPLY
2800 user_handle_t focus; /* handle to the focus window */
2801 user_handle_t capture; /* handle to the capture window */
2802 user_handle_t active; /* handle to the active window */
2803 user_handle_t foreground; /* handle to the global foreground window */
2804 user_handle_t menu_owner; /* handle to the menu owner */
2805 user_handle_t move_size; /* handle to the moving/resizing window */
2806 user_handle_t caret; /* handle to the caret window */
2807 user_handle_t cursor; /* handle to the cursor */
2808 int show_count; /* cursor show count */
2809 rectangle_t rect; /* caret rectangle */
2810 @END
2813 /* Get the time of the last input event */
2814 @REQ(get_last_input_time)
2815 @REPLY
2816 unsigned int time;
2817 @END
2820 /* Retrieve queue keyboard state for a given thread */
2821 @REQ(get_key_state)
2822 thread_id_t tid; /* id of thread */
2823 int key; /* optional key code or -1 */
2824 @REPLY
2825 unsigned char state; /* state of specified key */
2826 VARARG(keystate,bytes); /* state array for all the keys */
2827 @END
2829 /* Set queue keyboard state for a given thread */
2830 @REQ(set_key_state)
2831 thread_id_t tid; /* id of thread */
2832 int async; /* whether to change the async state too */
2833 VARARG(keystate,bytes); /* state array for all the keys */
2834 @END
2836 /* Set the system foreground window */
2837 @REQ(set_foreground_window)
2838 user_handle_t handle; /* handle to the foreground window */
2839 @REPLY
2840 user_handle_t previous; /* handle to the previous foreground window */
2841 int send_msg_old; /* whether we have to send a msg to the old window */
2842 int send_msg_new; /* whether we have to send a msg to the new window */
2843 @END
2845 /* Set the current thread focus window */
2846 @REQ(set_focus_window)
2847 user_handle_t handle; /* handle to the focus window */
2848 @REPLY
2849 user_handle_t previous; /* handle to the previous focus window */
2850 @END
2852 /* Set the current thread active window */
2853 @REQ(set_active_window)
2854 user_handle_t handle; /* handle to the active window */
2855 @REPLY
2856 user_handle_t previous; /* handle to the previous active window */
2857 @END
2859 /* Set the current thread capture window */
2860 @REQ(set_capture_window)
2861 user_handle_t handle; /* handle to the capture window */
2862 unsigned int flags; /* capture flags (see below) */
2863 @REPLY
2864 user_handle_t previous; /* handle to the previous capture window */
2865 user_handle_t full_handle; /* full 32-bit handle of new capture window */
2866 @END
2867 #define CAPTURE_MENU 0x01 /* capture is for a menu */
2868 #define CAPTURE_MOVESIZE 0x02 /* capture is for moving/resizing */
2871 /* Set the current thread caret window */
2872 @REQ(set_caret_window)
2873 user_handle_t handle; /* handle to the caret window */
2874 int width; /* caret width */
2875 int height; /* caret height */
2876 @REPLY
2877 user_handle_t previous; /* handle to the previous caret window */
2878 rectangle_t old_rect; /* previous caret rectangle */
2879 int old_hide; /* previous hide count */
2880 int old_state; /* previous caret state (1=on, 0=off) */
2881 @END
2884 /* Set the current thread caret information */
2885 @REQ(set_caret_info)
2886 unsigned int flags; /* caret flags (see below) */
2887 user_handle_t handle; /* handle to the caret window */
2888 int x; /* caret x position */
2889 int y; /* caret y position */
2890 int hide; /* increment for hide count (can be negative to show it) */
2891 int state; /* caret state (1=on, 0=off, -1=toggle current state) */
2892 @REPLY
2893 user_handle_t full_handle; /* handle to the current caret window */
2894 rectangle_t old_rect; /* previous caret rectangle */
2895 int old_hide; /* previous hide count */
2896 int old_state; /* previous caret state (1=on, 0=off) */
2897 @END
2898 #define SET_CARET_POS 0x01 /* set the caret position from x,y */
2899 #define SET_CARET_HIDE 0x02 /* increment the caret hide count */
2900 #define SET_CARET_STATE 0x04 /* set the caret on/off state */
2903 /* Set a window hook */
2904 @REQ(set_hook)
2905 int id; /* id of the hook */
2906 process_id_t pid; /* id of process to set the hook into */
2907 thread_id_t tid; /* id of thread to set the hook into */
2908 int event_min;
2909 int event_max;
2910 client_ptr_t proc; /* hook procedure */
2911 int flags;
2912 int unicode; /* is it a unicode hook? */
2913 VARARG(module,unicode_str); /* module name */
2914 @REPLY
2915 user_handle_t handle; /* handle to the hook */
2916 unsigned int active_hooks; /* active hooks bitmap */
2917 @END
2920 /* Remove a window hook */
2921 @REQ(remove_hook)
2922 user_handle_t handle; /* handle to the hook */
2923 client_ptr_t proc; /* hook procedure if handle is 0 */
2924 int id; /* id of the hook if handle is 0 */
2925 @REPLY
2926 unsigned int active_hooks; /* active hooks bitmap */
2927 @END
2930 /* Start calling a hook chain */
2931 @REQ(start_hook_chain)
2932 int id; /* id of the hook */
2933 int event; /* signalled event */
2934 user_handle_t window; /* handle to the event window */
2935 int object_id; /* object id for out of context winevent */
2936 int child_id; /* child id for out of context winevent */
2937 @REPLY
2938 user_handle_t handle; /* handle to the next hook */
2939 process_id_t pid; /* process id for low-level keyboard/mouse hooks */
2940 thread_id_t tid; /* thread id for low-level keyboard/mouse hooks */
2941 int unicode; /* is it a unicode hook? */
2942 client_ptr_t proc; /* hook procedure */
2943 unsigned int active_hooks; /* active hooks bitmap */
2944 VARARG(module,unicode_str); /* module name */
2945 @END
2948 /* Finished calling a hook chain */
2949 @REQ(finish_hook_chain)
2950 int id; /* id of the hook */
2951 @END
2954 /* Get the hook information */
2955 @REQ(get_hook_info)
2956 user_handle_t handle; /* handle to the current hook */
2957 int get_next; /* do we want info about current or next hook? */
2958 int event; /* signalled event */
2959 user_handle_t window; /* handle to the event window */
2960 int object_id; /* object id for out of context winevent */
2961 int child_id; /* child id for out of context winevent */
2962 @REPLY
2963 user_handle_t handle; /* handle to the hook */
2964 int id; /* id of the hook */
2965 process_id_t pid; /* process id for low-level keyboard/mouse hooks */
2966 thread_id_t tid; /* thread id for low-level keyboard/mouse hooks */
2967 client_ptr_t proc; /* hook procedure */
2968 int unicode; /* is it a unicode hook? */
2969 VARARG(module,unicode_str); /* module name */
2970 @END
2973 /* Create a window class */
2974 @REQ(create_class)
2975 int local; /* is it a local class? */
2976 atom_t atom; /* class atom */
2977 unsigned int style; /* class style */
2978 mod_handle_t instance; /* module instance */
2979 int extra; /* number of extra class bytes */
2980 int win_extra; /* number of window extra bytes */
2981 client_ptr_t client_ptr; /* pointer to class in client address space */
2982 VARARG(name,unicode_str); /* class name */
2983 @REPLY
2984 atom_t atom; /* resulting class atom */
2985 @END
2988 /* Destroy a window class */
2989 @REQ(destroy_class)
2990 atom_t atom; /* class atom */
2991 mod_handle_t instance; /* module instance */
2992 VARARG(name,unicode_str); /* class name */
2993 @REPLY
2994 client_ptr_t client_ptr; /* pointer to class in client address space */
2995 @END
2998 /* Set some information in a class */
2999 @REQ(set_class_info)
3000 user_handle_t window; /* handle to the window */
3001 unsigned int flags; /* flags for info to set (see below) */
3002 atom_t atom; /* class atom */
3003 unsigned int style; /* class style */
3004 int win_extra; /* number of window extra bytes */
3005 mod_handle_t instance; /* module instance */
3006 int extra_offset; /* offset to set in extra bytes */
3007 data_size_t extra_size; /* size to set in extra bytes */
3008 lparam_t extra_value; /* value to set in extra bytes */
3009 @REPLY
3010 atom_t old_atom; /* previous class atom */
3011 unsigned int old_style; /* previous class style */
3012 int old_extra; /* previous number of class extra bytes */
3013 int old_win_extra; /* previous number of window extra bytes */
3014 mod_handle_t old_instance; /* previous module instance */
3015 lparam_t old_extra_value; /* old value in extra bytes */
3016 @END
3017 #define SET_CLASS_ATOM 0x0001
3018 #define SET_CLASS_STYLE 0x0002
3019 #define SET_CLASS_WINEXTRA 0x0004
3020 #define SET_CLASS_INSTANCE 0x0008
3021 #define SET_CLASS_EXTRA 0x0010
3024 /* Set/get clipboard information */
3025 @REQ(set_clipboard_info)
3026 unsigned int flags; /* flags for fields to set (see below) */
3027 user_handle_t clipboard; /* clipboard window */
3028 user_handle_t owner; /* clipboard owner */
3029 user_handle_t viewer; /* first clipboard viewer */
3030 unsigned int seqno; /* change sequence number */
3031 @REPLY
3032 unsigned int flags; /* status flags (see below) */
3033 user_handle_t old_clipboard; /* old clipboard window */
3034 user_handle_t old_owner; /* old clipboard owner */
3035 user_handle_t old_viewer; /* old clipboard viewer */
3036 unsigned int seqno; /* current sequence number */
3037 @END
3039 #define SET_CB_OPEN 0x001
3040 #define SET_CB_OWNER 0x002
3041 #define SET_CB_VIEWER 0x004
3042 #define SET_CB_SEQNO 0x008
3043 #define SET_CB_RELOWNER 0x010
3044 #define SET_CB_CLOSE 0x020
3045 #define CB_OPEN 0x040
3046 #define CB_OWNER 0x080
3047 #define CB_PROCESS 0x100
3050 /* Open a security token */
3051 @REQ(open_token)
3052 obj_handle_t handle; /* handle to the thread or process */
3053 unsigned int access; /* access rights to the new token */
3054 unsigned int attributes;/* object attributes */
3055 unsigned int flags; /* flags (see below) */
3056 @REPLY
3057 obj_handle_t token; /* handle to the token */
3058 @END
3059 #define OPEN_TOKEN_THREAD 1
3060 #define OPEN_TOKEN_AS_SELF 2
3063 /* Set/get the global windows */
3064 @REQ(set_global_windows)
3065 unsigned int flags; /* flags for fields to set (see below) */
3066 user_handle_t shell_window; /* handle to the new shell window */
3067 user_handle_t shell_listview; /* handle to the new shell listview window */
3068 user_handle_t progman_window; /* handle to the new program manager window */
3069 user_handle_t taskman_window; /* handle to the new task manager window */
3070 @REPLY
3071 user_handle_t old_shell_window; /* handle to the shell window */
3072 user_handle_t old_shell_listview; /* handle to the shell listview window */
3073 user_handle_t old_progman_window; /* handle to the new program manager window */
3074 user_handle_t old_taskman_window; /* handle to the new task manager window */
3075 @END
3076 #define SET_GLOBAL_SHELL_WINDOWS 0x01 /* set both main shell and listview windows */
3077 #define SET_GLOBAL_PROGMAN_WINDOW 0x02
3078 #define SET_GLOBAL_TASKMAN_WINDOW 0x04
3080 /* Adjust the privileges held by a token */
3081 @REQ(adjust_token_privileges)
3082 obj_handle_t handle; /* handle to the token */
3083 int disable_all; /* disable all privileges? */
3084 int get_modified_state; /* get modified privileges? */
3085 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges to enable/disable/remove */
3086 @REPLY
3087 unsigned int len; /* total length in bytes required to store token privileges */
3088 VARARG(privileges,LUID_AND_ATTRIBUTES); /* modified privileges */
3089 @END
3091 /* Retrieves the set of privileges held by or available to a token */
3092 @REQ(get_token_privileges)
3093 obj_handle_t handle; /* handle to the token */
3094 @REPLY
3095 unsigned int len; /* total length in bytes required to store token privileges */
3096 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges held by or available to a token */
3097 @END
3099 /* Check the token has the required privileges */
3100 @REQ(check_token_privileges)
3101 obj_handle_t handle; /* handle to the token */
3102 int all_required; /* are all the privileges required for the check to succeed? */
3103 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges to check */
3104 @REPLY
3105 int has_privileges; /* does the token have the required privileges? */
3106 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges held by or available to a token */
3107 @END
3109 @REQ(duplicate_token)
3110 obj_handle_t handle; /* handle to the token to duplicate */
3111 unsigned int access; /* access rights to the new token */
3112 unsigned int attributes; /* object attributes */
3113 int primary; /* is the new token to be a primary one? */
3114 int impersonation_level; /* impersonation level of the new token */
3115 @REPLY
3116 obj_handle_t new_handle; /* duplicated handle */
3117 @END
3119 @REQ(access_check)
3120 obj_handle_t handle; /* handle to the token */
3121 unsigned int desired_access; /* desired access to the object */
3122 unsigned int mapping_read; /* mapping from generic read to specific rights */
3123 unsigned int mapping_write; /* mapping from generic write to specific rights */
3124 unsigned int mapping_execute; /* mapping from generic execute to specific rights */
3125 unsigned int mapping_all; /* mapping from generic all to specific rights */
3126 VARARG(sd,security_descriptor); /* security descriptor to check */
3127 @REPLY
3128 unsigned int access_granted; /* access rights actually granted */
3129 unsigned int access_status; /* was access granted? */
3130 unsigned int privileges_len; /* length needed to store privileges */
3131 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges used during access check */
3132 @END
3134 @REQ(get_token_sid)
3135 obj_handle_t handle; /* handle to the token */
3136 unsigned int which_sid; /* which SID to retrieve from the token */
3137 @REPLY
3138 data_size_t sid_len; /* length needed to store sid */
3139 VARARG(sid,SID); /* the sid specified by which_sid from the token */
3140 @END
3142 @REQ(get_token_groups)
3143 obj_handle_t handle; /* handle to the token */
3144 @REPLY
3145 data_size_t user_len; /* length needed to store user */
3146 VARARG(user,token_groups); /* groups the token's user belongs to */
3147 @END
3149 @REQ(get_token_default_dacl)
3150 obj_handle_t handle; /* handle to the token */
3151 @REPLY
3152 data_size_t acl_len; /* length needed to store access control list */
3153 VARARG(acl,ACL); /* access control list */
3154 @END
3156 @REQ(set_token_default_dacl)
3157 obj_handle_t handle; /* handle to the token */
3158 VARARG(acl,ACL); /* default dacl to set */
3159 @END
3161 @REQ(set_security_object)
3162 obj_handle_t handle; /* handle to the object */
3163 unsigned int security_info; /* which parts of security descriptor to set */
3164 VARARG(sd,security_descriptor); /* security descriptor to set */
3165 @END
3167 @REQ(get_security_object)
3168 obj_handle_t handle; /* handle to the object */
3169 unsigned int security_info; /* which parts of security descriptor to get */
3170 @REPLY
3171 unsigned int sd_len; /* buffer size needed for sd */
3172 VARARG(sd,security_descriptor); /* retrieved security descriptor */
3173 @END
3175 /* Create a mailslot */
3176 @REQ(create_mailslot)
3177 unsigned int access; /* wanted access rights */
3178 unsigned int attributes; /* object attributes */
3179 obj_handle_t rootdir; /* root directory */
3180 timeout_t read_timeout;
3181 unsigned int max_msgsize;
3182 VARARG(name,unicode_str); /* mailslot name */
3183 @REPLY
3184 obj_handle_t handle; /* handle to the mailslot */
3185 @END
3188 /* Set mailslot information */
3189 @REQ(set_mailslot_info)
3190 obj_handle_t handle; /* handle to the mailslot */
3191 timeout_t read_timeout;
3192 unsigned int flags;
3193 @REPLY
3194 timeout_t read_timeout;
3195 unsigned int max_msgsize;
3196 @END
3197 #define MAILSLOT_SET_READ_TIMEOUT 1
3200 /* Create a directory object */
3201 @REQ(create_directory)
3202 unsigned int access; /* access flags */
3203 unsigned int attributes; /* object attributes */
3204 obj_handle_t rootdir; /* root directory */
3205 VARARG(directory_name,unicode_str); /* Directory name */
3206 @REPLY
3207 obj_handle_t handle; /* handle to the directory */
3208 @END
3211 /* Open a directory object */
3212 @REQ(open_directory)
3213 unsigned int access; /* access flags */
3214 unsigned int attributes; /* object attributes */
3215 obj_handle_t rootdir; /* root directory */
3216 VARARG(directory_name,unicode_str); /* Directory name */
3217 @REPLY
3218 obj_handle_t handle; /* handle to the directory */
3219 @END
3222 /* Get a directory entry by index */
3223 @REQ(get_directory_entry)
3224 obj_handle_t handle; /* handle to the directory */
3225 unsigned int index; /* entry index */
3226 @REPLY
3227 data_size_t name_len; /* length of the entry name in bytes */
3228 VARARG(name,unicode_str,name_len); /* entry name */
3229 VARARG(type,unicode_str); /* entry type */
3230 @END
3233 /* Create a symbolic link object */
3234 @REQ(create_symlink)
3235 unsigned int access; /* access flags */
3236 unsigned int attributes; /* object attributes */
3237 obj_handle_t rootdir; /* root directory */
3238 data_size_t name_len; /* length of the symlink name in bytes */
3239 VARARG(name,unicode_str,name_len); /* symlink name */
3240 VARARG(target_name,unicode_str); /* target name */
3241 @REPLY
3242 obj_handle_t handle; /* handle to the symlink */
3243 @END
3246 /* Open a symbolic link object */
3247 @REQ(open_symlink)
3248 unsigned int access; /* access flags */
3249 unsigned int attributes; /* object attributes */
3250 obj_handle_t rootdir; /* root directory */
3251 VARARG(name,unicode_str); /* symlink name */
3252 @REPLY
3253 obj_handle_t handle; /* handle to the symlink */
3254 @END
3257 /* Query a symbolic link object */
3258 @REQ(query_symlink)
3259 obj_handle_t handle; /* handle to the symlink */
3260 @REPLY
3261 data_size_t total; /* total needed size for name */
3262 VARARG(target_name,unicode_str); /* target name */
3263 @END
3266 /* Query basic object information */
3267 @REQ(get_object_info)
3268 obj_handle_t handle; /* handle to the object */
3269 @REPLY
3270 unsigned int access; /* granted access mask */
3271 unsigned int ref_count; /* object ref count */
3272 unsigned int handle_count; /* object handle count */
3273 data_size_t total; /* total needed size for name */
3274 VARARG(name,unicode_str); /* object name */
3275 @END
3278 /* Unlink a named object */
3279 @REQ(unlink_object)
3280 obj_handle_t handle; /* handle to the object */
3281 @END
3284 /* Query the impersonation level of an impersonation token */
3285 @REQ(get_token_impersonation_level)
3286 obj_handle_t handle; /* handle to the object */
3287 @REPLY
3288 int impersonation_level; /* impersonation level of the impersonation token */
3289 @END
3291 /* Allocate a locally-unique identifier */
3292 @REQ(allocate_locally_unique_id)
3293 @REPLY
3294 luid_t luid;
3295 @END
3298 /* Create a device manager */
3299 @REQ(create_device_manager)
3300 unsigned int access; /* wanted access rights */
3301 unsigned int attributes; /* object attributes */
3302 @REPLY
3303 obj_handle_t handle; /* handle to the device */
3304 @END
3307 /* Create a device */
3308 @REQ(create_device)
3309 unsigned int access; /* wanted access rights */
3310 unsigned int attributes; /* object attributes */
3311 obj_handle_t rootdir; /* root directory */
3312 client_ptr_t user_ptr; /* opaque ptr for use by client */
3313 obj_handle_t manager; /* device manager */
3314 VARARG(name,unicode_str); /* object name */
3315 @REPLY
3316 obj_handle_t handle; /* handle to the device */
3317 @END
3320 /* Delete a device */
3321 @REQ(delete_device)
3322 obj_handle_t handle; /* handle to the device */
3323 @END
3326 /* Retrieve the next pending device irp request */
3327 @REQ(get_next_device_request)
3328 obj_handle_t manager; /* handle to the device manager */
3329 obj_handle_t prev; /* handle to the previous irp */
3330 unsigned int status; /* status of the previous irp */
3331 @REPLY
3332 obj_handle_t next; /* handle to the next irp */
3333 unsigned int type; /* irp type (IRP_MJ_*) */
3334 client_ptr_t user_ptr; /* opaque ptr for the device */
3335 ioctl_code_t code; /* ioctl code */
3336 process_id_t client_pid; /* pid of process calling irp */
3337 thread_id_t client_tid; /* tid of thread calling irp */
3338 data_size_t in_size; /* total needed input size */
3339 data_size_t out_size; /* needed output size */
3340 VARARG(next_data,bytes); /* input data of the next irp */
3341 @END
3344 /* Make the current process a system process */
3345 @REQ(make_process_system)
3346 @REPLY
3347 obj_handle_t event; /* event signaled when all user processes have exited */
3348 @END
3351 /* Get detailed fixed-size information about a token */
3352 @REQ(get_token_statistics)
3353 obj_handle_t handle; /* handle to the object */
3354 @REPLY
3355 luid_t token_id; /* locally-unique identifier of the token */
3356 luid_t modified_id; /* locally-unique identifier of the modified version of the token */
3357 int primary; /* is the token primary or impersonation? */
3358 int impersonation_level; /* level of impersonation */
3359 int group_count; /* the number of groups the token is a member of */
3360 int privilege_count; /* the number of privileges the token has */
3361 @END
3364 /* Create I/O completion port */
3365 @REQ(create_completion)
3366 unsigned int access; /* desired access to a port */
3367 unsigned int attributes; /* object attributes */
3368 unsigned int concurrent; /* max number of concurrent active threads */
3369 obj_handle_t rootdir; /* root directory */
3370 VARARG(filename,unicode_str); /* port name */
3371 @REPLY
3372 obj_handle_t handle; /* port handle */
3373 @END
3376 /* Open I/O completion port */
3377 @REQ(open_completion)
3378 unsigned int access; /* desired access to a port */
3379 unsigned int attributes; /* object attributes */
3380 obj_handle_t rootdir; /* root directory */
3381 VARARG(filename,unicode_str); /* port name */
3382 @REPLY
3383 obj_handle_t handle; /* port handle */
3384 @END
3387 /* add completion to completion port */
3388 @REQ(add_completion)
3389 obj_handle_t handle; /* port handle */
3390 apc_param_t ckey; /* completion key */
3391 apc_param_t cvalue; /* completion value */
3392 apc_param_t information; /* IO_STATUS_BLOCK Information */
3393 unsigned int status; /* completion result */
3394 @END
3397 /* get completion from completion port queue */
3398 @REQ(remove_completion)
3399 obj_handle_t handle; /* port handle */
3400 @REPLY
3401 apc_param_t ckey; /* completion key */
3402 apc_param_t cvalue; /* completion value */
3403 apc_param_t information; /* IO_STATUS_BLOCK Information */
3404 unsigned int status; /* completion result */
3405 @END
3408 /* get completion queue depth */
3409 @REQ(query_completion)
3410 obj_handle_t handle; /* port handle */
3411 @REPLY
3412 unsigned int depth; /* completion queue depth */
3413 @END
3416 /* associate object with completion port */
3417 @REQ(set_completion_info)
3418 obj_handle_t handle; /* object handle */
3419 apc_param_t ckey; /* completion key */
3420 obj_handle_t chandle; /* port handle */
3421 @END
3424 /* check for associated completion and push msg */
3425 @REQ(add_fd_completion)
3426 obj_handle_t handle; /* async' object */
3427 apc_param_t cvalue; /* completion value */
3428 apc_param_t information; /* IO_STATUS_BLOCK Information */
3429 unsigned int status; /* completion status */
3430 @END
3433 /* Retrieve layered info for a window */
3434 @REQ(get_window_layered_info)
3435 user_handle_t handle; /* handle to the window */
3436 @REPLY
3437 unsigned int color_key; /* color key */
3438 unsigned int alpha; /* alpha (0..255) */
3439 unsigned int flags; /* LWA_* flags */
3440 @END
3443 /* Set layered info for a window */
3444 @REQ(set_window_layered_info)
3445 user_handle_t handle; /* handle to the window */
3446 unsigned int color_key; /* color key */
3447 unsigned int alpha; /* alpha (0..255) */
3448 unsigned int flags; /* LWA_* flags */
3449 @END
3452 /* Allocate an arbitrary user handle */
3453 @REQ(alloc_user_handle)
3454 @REPLY
3455 user_handle_t handle; /* allocated handle */
3456 @END
3459 /* Free an arbitrary user handle */
3460 @REQ(free_user_handle)
3461 user_handle_t handle; /* handle to free*/
3462 @END
3465 /* Set/get the current cursor */
3466 @REQ(set_cursor)
3467 unsigned int flags; /* flags for fields to set (see below) */
3468 user_handle_t handle; /* handle to the cursor */
3469 int show_count; /* show count increment/decrement */
3470 int x; /* cursor position */
3471 int y;
3472 rectangle_t clip; /* cursor clip rectangle */
3473 unsigned int clip_msg; /* message to post on cursor clip changes */
3474 @REPLY
3475 user_handle_t prev_handle; /* previous handle */
3476 int prev_count; /* previous show count */
3477 int prev_x; /* previous position */
3478 int prev_y;
3479 int new_x; /* new position */
3480 int new_y;
3481 rectangle_t new_clip; /* new clip rectangle */
3482 unsigned int last_change; /* time of last position change */
3483 @END
3484 #define SET_CURSOR_HANDLE 0x01
3485 #define SET_CURSOR_COUNT 0x02
3486 #define SET_CURSOR_POS 0x04
3487 #define SET_CURSOR_CLIP 0x08
3488 #define SET_CURSOR_NOCLIP 0x10
3491 /* Modify the list of registered rawinput devices */
3492 @REQ(update_rawinput_devices)
3493 VARARG(devices,rawinput_devices);
3494 @END
3497 /* Retrieve the suspended context of a thread */
3498 @REQ(get_suspend_context)
3499 @REPLY
3500 VARARG(context,context); /* thread context */
3501 @END
3504 /* Store the suspend context of a thread */
3505 @REQ(set_suspend_context)
3506 VARARG(context,context); /* thread context */
3507 @END
3510 /* Create a new job object */
3511 @REQ(create_job)
3512 unsigned int access; /* wanted access rights */
3513 unsigned int attributes; /* object attributes */
3514 VARARG(objattr,object_attributes); /* object attributes */
3515 @REPLY
3516 obj_handle_t handle; /* handle to the job */
3517 @END
3520 /* Assign a job object to a process */
3521 @REQ(assign_job)
3522 obj_handle_t job; /* handle to the job */
3523 obj_handle_t process; /* handle to the process */
3524 @END
3527 /* Check if a process is associated with a job */
3528 @REQ(process_in_job)
3529 obj_handle_t job; /* handle to the job */
3530 obj_handle_t process; /* handle to the process */
3531 @END
3534 /* Set limit flags on a job */
3535 @REQ(set_job_limits)
3536 obj_handle_t handle; /* handle to the job */
3537 unsigned int limit_flags; /* new limit flags */
3538 @END
3541 /* Set new completion port for a job */
3542 @REQ(set_job_completion_port)
3543 obj_handle_t job; /* handle to the job */
3544 obj_handle_t port; /* handle to the completion port */
3545 client_ptr_t key; /* key to send with completion messages */
3546 @END
3549 /* Terminate all processes associated with the job */
3550 @REQ(terminate_job)
3551 obj_handle_t handle; /* handle to the job */
3552 int status; /* process exit code */
3553 @END