gdi32: Support MWT_SET in NtGdiModifyWorldTransform.
[wine.git] / server / protocol.def
blob133d6ad055289659274d17e0d7c649e49d735e6c
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; /* DbgExceptionStateChange */
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; /* DbgCreateThreadStateChange */
92 obj_handle_t handle; /* handle to the new thread */
93 client_ptr_t start; /* thread startup routine */
94 } create_thread;
95 struct
97 int code; /* DbgCreateProcessStateChange */
98 obj_handle_t file; /* handle to the process exe file */
99 obj_handle_t process; /* handle to the new process */
100 obj_handle_t thread; /* handle to the new thread */
101 mod_handle_t base; /* base of executable image */
102 int dbg_offset; /* offset of debug info in file */
103 int dbg_size; /* size of debug info */
104 client_ptr_t start; /* thread startup routine */
105 } create_process;
106 struct
108 int code; /* DbgExitThreadStateChange/DbgExitProcessStateChange */
109 int exit_code; /* thread or process exit code */
110 } exit;
111 struct
113 int code; /* DbgLoadDllStateChange */
114 obj_handle_t handle; /* file handle for the dll */
115 mod_handle_t base; /* base address of the dll */
116 int dbg_offset; /* offset of debug info in file */
117 int dbg_size; /* size of debug info */
118 client_ptr_t name; /* image name (optional) */
119 } load_dll;
120 struct
122 int code; /* DbgUnloadDllStateChange */
123 int __pad;
124 mod_handle_t base; /* base address of the dll */
125 } unload_dll;
126 } debug_event_t;
128 /* context data */
129 typedef struct
131 unsigned int machine; /* machine type */
132 unsigned int flags; /* SERVER_CTX_* flags */
133 union
135 struct { unsigned int eip, ebp, esp, eflags, cs, ss; } i386_regs;
136 struct { unsigned __int64 rip, rbp, rsp;
137 unsigned int cs, ss, flags, __pad; } x86_64_regs;
138 struct { unsigned int sp, lr, pc, cpsr; } arm_regs;
139 struct { unsigned __int64 sp, pc, pstate; } arm64_regs;
140 } ctl; /* selected by SERVER_CTX_CONTROL */
141 union
143 struct { unsigned int eax, ebx, ecx, edx, esi, edi; } i386_regs;
144 struct { unsigned __int64 rax,rbx, rcx, rdx, rsi, rdi,
145 r8, r9, r10, r11, r12, r13, r14, r15; } x86_64_regs;
146 struct { unsigned int r[13]; } arm_regs;
147 struct { unsigned __int64 x[31]; } arm64_regs;
148 } integer; /* selected by SERVER_CTX_INTEGER */
149 union
151 struct { unsigned int ds, es, fs, gs; } i386_regs;
152 struct { unsigned int ds, es, fs, gs; } x86_64_regs;
153 } seg; /* selected by SERVER_CTX_SEGMENTS */
154 union
156 struct { unsigned int ctrl, status, tag, err_off, err_sel, data_off, data_sel, cr0npx;
157 unsigned char regs[80]; } i386_regs;
158 struct { struct { unsigned __int64 low, high; } fpregs[32]; } x86_64_regs;
159 struct { unsigned __int64 d[32]; unsigned int fpscr; } arm_regs;
160 struct { struct { unsigned __int64 low, high; } q[32]; unsigned int fpcr, fpsr; } arm64_regs;
161 } fp; /* selected by SERVER_CTX_FLOATING_POINT */
162 union
164 struct { unsigned int dr0, dr1, dr2, dr3, dr6, dr7; } i386_regs;
165 struct { unsigned __int64 dr0, dr1, dr2, dr3, dr6, dr7; } x86_64_regs;
166 struct { unsigned int bvr[8], bcr[8], wvr[1], wcr[1]; } arm_regs;
167 struct { unsigned __int64 bvr[8], wvr[2]; unsigned int bcr[8], wcr[2]; } arm64_regs;
168 } debug; /* selected by SERVER_CTX_DEBUG_REGISTERS */
169 union
171 unsigned char i386_regs[512];
172 } ext; /* selected by SERVER_CTX_EXTENDED_REGISTERS */
173 union
175 struct { struct { unsigned __int64 low, high; } ymm_high[16]; } regs;
176 } ymm; /* selected by SERVER_CTX_YMM_REGISTERS */
177 } context_t;
179 #define SERVER_CTX_CONTROL 0x01
180 #define SERVER_CTX_INTEGER 0x02
181 #define SERVER_CTX_SEGMENTS 0x04
182 #define SERVER_CTX_FLOATING_POINT 0x08
183 #define SERVER_CTX_DEBUG_REGISTERS 0x10
184 #define SERVER_CTX_EXTENDED_REGISTERS 0x20
185 #define SERVER_CTX_YMM_REGISTERS 0x40
187 /* structure used in sending an fd from client to server */
188 struct send_fd
190 thread_id_t tid; /* thread id */
191 int fd; /* file descriptor on client-side */
194 /* structure sent by the server on the wait fifo */
195 struct wake_up_reply
197 client_ptr_t cookie; /* magic cookie that was passed in select_request */
198 int signaled; /* wait result */
199 int __pad;
202 /* NT-style timeout, in 100ns units, negative means relative timeout */
203 typedef __int64 timeout_t;
204 #define TIMEOUT_INFINITE (((timeout_t)0x7fffffff) << 32 | 0xffffffff)
206 /* absolute timeout, negative means that monotonic clock is used */
207 typedef __int64 abstime_t;
209 /* structure for process startup info */
210 typedef struct
212 unsigned int debug_flags;
213 unsigned int console_flags;
214 obj_handle_t console;
215 obj_handle_t hstdin;
216 obj_handle_t hstdout;
217 obj_handle_t hstderr;
218 unsigned int x;
219 unsigned int y;
220 unsigned int xsize;
221 unsigned int ysize;
222 unsigned int xchars;
223 unsigned int ychars;
224 unsigned int attribute;
225 unsigned int flags;
226 unsigned int show;
227 data_size_t curdir_len;
228 data_size_t dllpath_len;
229 data_size_t imagepath_len;
230 data_size_t cmdline_len;
231 data_size_t title_len;
232 data_size_t desktop_len;
233 data_size_t shellinfo_len;
234 data_size_t runtime_len;
235 /* VARARG(curdir,unicode_str,curdir_len); */
236 /* VARARG(dllpath,unicode_str,dllpath_len); */
237 /* VARARG(imagepath,unicode_str,imagepath_len); */
238 /* VARARG(cmdline,unicode_str,cmdline_len); */
239 /* VARARG(title,unicode_str,title_len); */
240 /* VARARG(desktop,unicode_str,desktop_len); */
241 /* VARARG(shellinfo,unicode_str,shellinfo_len); */
242 /* VARARG(runtime,unicode_str,runtime_len); */
243 } startup_info_t;
245 /* structure returned in the list of window properties */
246 typedef struct
248 atom_t atom; /* property atom */
249 int string; /* was atom a string originally? */
250 lparam_t data; /* data stored in property */
251 } property_data_t;
253 /* structure to specify window rectangles */
254 typedef struct
256 int left;
257 int top;
258 int right;
259 int bottom;
260 } rectangle_t;
262 /* structure for parameters of async I/O calls */
263 typedef struct
265 obj_handle_t handle; /* object to perform I/O on */
266 obj_handle_t event; /* event to signal when done */
267 client_ptr_t iosb; /* I/O status block in client addr space */
268 client_ptr_t user; /* opaque user data containing callback pointer and async-specific data */
269 client_ptr_t apc; /* user APC to call */
270 apc_param_t apc_context; /* user APC context or completion value */
271 } async_data_t;
273 /* structures for extra message data */
275 struct hw_msg_source
277 unsigned int device; /* source device (IMDT_* values) */
278 unsigned int origin; /* source origin (IMO_* values) */
281 union rawinput
283 int type;
284 struct
286 int type; /* RIM_TYPEKEYBOARD */
287 unsigned int message; /* message generated by this rawinput event */
288 unsigned short vkey; /* virtual key code */
289 unsigned short scan; /* scan code */
290 } kbd;
291 struct
293 int type; /* RIM_TYPEMOUSE */
294 int x; /* x coordinate */
295 int y; /* y coordinate */
296 unsigned int data; /* mouse data */
297 } mouse;
298 struct
300 int type; /* RIM_TYPEHID */
301 unsigned int device; /* rawinput device index */
302 unsigned int param; /* rawinput message param */
303 unsigned short usage_page;/* HID usage page */
304 unsigned short usage; /* HID usage */
305 unsigned int count; /* HID report count */
306 unsigned int length; /* HID report length */
307 } hid;
310 struct hardware_msg_data
312 lparam_t info; /* extra info */
313 data_size_t size; /* size of hardware message data */
314 int __pad;
315 unsigned int hw_id; /* unique id */
316 unsigned int flags; /* hook flags */
317 struct hw_msg_source source; /* message source */
318 union rawinput rawinput; /* rawinput message data */
321 struct callback_msg_data
323 client_ptr_t callback; /* callback function */
324 lparam_t data; /* user data for callback */
325 lparam_t result; /* message result */
328 struct winevent_msg_data
330 user_handle_t hook; /* hook handle */
331 thread_id_t tid; /* thread id */
332 client_ptr_t hook_proc; /* hook proc address */
333 /* followed by module name if any */
336 typedef union
338 int type;
339 struct
341 int type; /* INPUT_KEYBOARD */
342 unsigned short vkey; /* virtual key code */
343 unsigned short scan; /* scan code */
344 unsigned int flags; /* event flags */
345 unsigned int time; /* event time */
346 lparam_t info; /* extra info */
347 } kbd;
348 struct
350 int type; /* INPUT_MOUSE */
351 int x; /* coordinates */
352 int y;
353 unsigned int data; /* mouse data */
354 unsigned int flags; /* event flags */
355 unsigned int time; /* event time */
356 lparam_t info; /* extra info */
357 } mouse;
358 struct
360 int type; /* INPUT_HARDWARE */
361 unsigned int msg; /* message code */
362 lparam_t lparam; /* message param */
363 union rawinput rawinput;/* rawinput message data */
364 } hw;
365 } hw_input_t;
367 typedef union
369 unsigned char bytes[1]; /* raw data for sent messages */
370 struct hardware_msg_data hardware;
371 struct callback_msg_data callback;
372 struct winevent_msg_data winevent;
373 } message_data_t;
375 /* structure returned in filesystem events */
376 struct filesystem_event
378 int action;
379 data_size_t len;
380 char name[1];
383 typedef struct
385 unsigned int low_part;
386 int high_part;
387 } luid_t;
389 typedef struct
391 unsigned int read;
392 unsigned int write;
393 unsigned int exec;
394 unsigned int all;
395 } generic_map_t;
397 #define MAX_ACL_LEN 65535
399 struct security_descriptor
401 unsigned int control; /* SE_ flags */
402 data_size_t owner_len;
403 data_size_t group_len;
404 data_size_t sacl_len;
405 data_size_t dacl_len;
406 /* VARARG(owner,SID); */
407 /* VARARG(group,SID); */
408 /* VARARG(sacl,ACL); */
409 /* VARARG(dacl,ACL); */
412 struct object_attributes
414 obj_handle_t rootdir; /* root directory */
415 unsigned int attributes; /* object attributes */
416 data_size_t sd_len; /* length of security_descriptor data. may be 0 */
417 data_size_t name_len; /* length of the name string. may be 0 */
418 /* VARARG(sd,security_descriptor); */
419 /* VARARG(name,unicode_str); */
422 struct object_type_info
424 data_size_t name_len; /* length of the name string */
425 unsigned int index; /* type index in global table */
426 unsigned int obj_count; /* count of objects of this type */
427 unsigned int handle_count; /* count of handles of this type */
428 unsigned int obj_max; /* max count of objects of this type */
429 unsigned int handle_max; /* max count of handles of this type */
430 unsigned int valid_access; /* mask for valid access bits */
431 generic_map_t mapping; /* generic access mappings */
432 /* VARARG(name,unicode_str); */
435 struct token_groups
437 unsigned int count;
438 /* unsigned int attributes[count]; */
439 /* VARARG(sids,SID); */
442 enum select_op
444 SELECT_NONE,
445 SELECT_WAIT,
446 SELECT_WAIT_ALL,
447 SELECT_SIGNAL_AND_WAIT,
448 SELECT_KEYED_EVENT_WAIT,
449 SELECT_KEYED_EVENT_RELEASE
452 typedef union
454 enum select_op op;
455 struct
457 enum select_op op; /* SELECT_WAIT or SELECT_WAIT_ALL */
458 obj_handle_t handles[MAXIMUM_WAIT_OBJECTS];
459 } wait;
460 struct
462 enum select_op op; /* SELECT_SIGNAL_AND_WAIT */
463 obj_handle_t wait;
464 obj_handle_t signal; /* must be last in the structure so we can remove it on retries */
465 } signal_and_wait;
466 struct
468 enum select_op op; /* SELECT_KEYED_EVENT_WAIT or SELECT_KEYED_EVENT_RELEASE */
469 obj_handle_t handle;
470 client_ptr_t key;
471 } keyed_event;
472 } select_op_t;
474 enum apc_type
476 APC_NONE,
477 APC_USER,
478 APC_ASYNC_IO,
479 APC_VIRTUAL_ALLOC,
480 APC_VIRTUAL_FREE,
481 APC_VIRTUAL_QUERY,
482 APC_VIRTUAL_PROTECT,
483 APC_VIRTUAL_FLUSH,
484 APC_VIRTUAL_LOCK,
485 APC_VIRTUAL_UNLOCK,
486 APC_MAP_VIEW,
487 APC_UNMAP_VIEW,
488 APC_CREATE_THREAD,
489 APC_DUP_HANDLE,
490 APC_BREAK_PROCESS
493 typedef struct
495 enum apc_type type; /* APC_USER */
496 int __pad;
497 client_ptr_t func; /* void (__stdcall *func)(ULONG_PTR,ULONG_PTR,ULONG_PTR); */
498 apc_param_t args[3]; /* arguments for user function */
499 } user_apc_t;
501 typedef union
503 enum apc_type type;
504 user_apc_t user;
505 struct
507 enum apc_type type; /* APC_ASYNC_IO */
508 unsigned int status; /* I/O status */
509 client_ptr_t user; /* user pointer */
510 client_ptr_t sb; /* status block */
511 } async_io;
512 struct
514 enum apc_type type; /* APC_VIRTUAL_ALLOC */
515 unsigned int op_type; /* type of operation */
516 client_ptr_t addr; /* requested address */
517 mem_size_t size; /* allocation size */
518 mem_size_t zero_bits; /* number of zero high bits */
519 unsigned int prot; /* memory protection flags */
520 } virtual_alloc;
521 struct
523 enum apc_type type; /* APC_VIRTUAL_FREE */
524 unsigned int op_type; /* type of operation */
525 client_ptr_t addr; /* requested address */
526 mem_size_t size; /* allocation size */
527 } virtual_free;
528 struct
530 enum apc_type type; /* APC_VIRTUAL_QUERY */
531 int __pad;
532 client_ptr_t addr; /* requested address */
533 } virtual_query;
534 struct
536 enum apc_type type; /* APC_VIRTUAL_PROTECT */
537 unsigned int prot; /* new protection flags */
538 client_ptr_t addr; /* requested address */
539 mem_size_t size; /* requested size */
540 } virtual_protect;
541 struct
543 enum apc_type type; /* APC_VIRTUAL_FLUSH */
544 int __pad;
545 client_ptr_t addr; /* requested address */
546 mem_size_t size; /* requested size */
547 } virtual_flush;
548 struct
550 enum apc_type type; /* APC_VIRTUAL_LOCK */
551 int __pad;
552 client_ptr_t addr; /* requested address */
553 mem_size_t size; /* requested size */
554 } virtual_lock;
555 struct
557 enum apc_type type; /* APC_VIRTUAL_UNLOCK */
558 int __pad;
559 client_ptr_t addr; /* requested address */
560 mem_size_t size; /* requested size */
561 } virtual_unlock;
562 struct
564 enum apc_type type; /* APC_MAP_VIEW */
565 obj_handle_t handle; /* mapping handle */
566 client_ptr_t addr; /* requested address */
567 mem_size_t size; /* allocation size */
568 file_pos_t offset; /* file offset */
569 mem_size_t zero_bits; /* number of zero high bits */
570 unsigned int alloc_type; /* allocation type */
571 unsigned int prot; /* memory protection flags */
572 } map_view;
573 struct
575 enum apc_type type; /* APC_UNMAP_VIEW */
576 int __pad;
577 client_ptr_t addr; /* view address */
578 } unmap_view;
579 struct
581 enum apc_type type; /* APC_CREATE_THREAD */
582 unsigned int flags; /* creation flags */
583 client_ptr_t func; /* void (__stdcall *func)(void*); start function */
584 client_ptr_t arg; /* argument for start function */
585 mem_size_t zero_bits; /* number of zero high bits for thread stack */
586 mem_size_t reserve; /* reserve size for thread stack */
587 mem_size_t commit; /* commit size for thread stack */
588 } create_thread;
589 struct
591 enum apc_type type; /* APC_DUP_HANDLE */
592 obj_handle_t src_handle; /* src handle to duplicate */
593 obj_handle_t dst_process; /* dst process handle */
594 unsigned int access; /* wanted access rights */
595 unsigned int attributes; /* object attributes */
596 unsigned int options; /* duplicate options */
597 } dup_handle;
598 } apc_call_t;
600 typedef union
602 enum apc_type type;
603 struct
605 enum apc_type type; /* APC_ASYNC_IO */
606 unsigned int status; /* new status of async operation */
607 unsigned int total; /* bytes transferred */
608 } async_io;
609 struct
611 enum apc_type type; /* APC_VIRTUAL_ALLOC */
612 unsigned int status; /* status returned by call */
613 client_ptr_t addr; /* resulting address */
614 mem_size_t size; /* resulting size */
615 } virtual_alloc;
616 struct
618 enum apc_type type; /* APC_VIRTUAL_FREE */
619 unsigned int status; /* status returned by call */
620 client_ptr_t addr; /* resulting address */
621 mem_size_t size; /* resulting size */
622 } virtual_free;
623 struct
625 enum apc_type type; /* APC_VIRTUAL_QUERY */
626 unsigned int status; /* status returned by call */
627 client_ptr_t base; /* resulting base address */
628 client_ptr_t alloc_base;/* resulting allocation base */
629 mem_size_t size; /* resulting region size */
630 unsigned short state; /* resulting region state */
631 unsigned short prot; /* resulting region protection */
632 unsigned short alloc_prot;/* resulting allocation protection */
633 unsigned short alloc_type;/* resulting region allocation type */
634 } virtual_query;
635 struct
637 enum apc_type type; /* APC_VIRTUAL_PROTECT */
638 unsigned int status; /* status returned by call */
639 client_ptr_t addr; /* resulting address */
640 mem_size_t size; /* resulting size */
641 unsigned int prot; /* old protection flags */
642 } virtual_protect;
643 struct
645 enum apc_type type; /* APC_VIRTUAL_FLUSH */
646 unsigned int status; /* status returned by call */
647 client_ptr_t addr; /* resulting address */
648 mem_size_t size; /* resulting size */
649 } virtual_flush;
650 struct
652 enum apc_type type; /* APC_VIRTUAL_LOCK */
653 unsigned int status; /* status returned by call */
654 client_ptr_t addr; /* resulting address */
655 mem_size_t size; /* resulting size */
656 } virtual_lock;
657 struct
659 enum apc_type type; /* APC_VIRTUAL_UNLOCK */
660 unsigned int status; /* status returned by call */
661 client_ptr_t addr; /* resulting address */
662 mem_size_t size; /* resulting size */
663 } virtual_unlock;
664 struct
666 enum apc_type type; /* APC_MAP_VIEW */
667 unsigned int status; /* status returned by call */
668 client_ptr_t addr; /* resulting address */
669 mem_size_t size; /* resulting size */
670 } map_view;
671 struct
673 enum apc_type type; /* APC_UNMAP_VIEW */
674 unsigned int status; /* status returned by call */
675 } unmap_view;
676 struct
678 enum apc_type type; /* APC_CREATE_THREAD */
679 unsigned int status; /* status returned by call */
680 process_id_t pid; /* process id */
681 thread_id_t tid; /* thread id */
682 client_ptr_t teb; /* thread teb (in process address space) */
683 obj_handle_t handle; /* handle to new thread */
684 } create_thread;
685 struct
687 enum apc_type type; /* APC_DUP_HANDLE */
688 unsigned int status; /* status returned by call */
689 obj_handle_t handle; /* duplicated handle in dst process */
690 } dup_handle;
691 struct
693 enum apc_type type; /* APC_BREAK_PROCESS */
694 unsigned int status; /* status returned by call */
695 } break_process;
696 } apc_result_t;
698 enum irp_type
700 IRP_CALL_NONE,
701 IRP_CALL_CREATE,
702 IRP_CALL_CLOSE,
703 IRP_CALL_READ,
704 IRP_CALL_WRITE,
705 IRP_CALL_FLUSH,
706 IRP_CALL_IOCTL,
707 IRP_CALL_VOLUME,
708 IRP_CALL_FREE,
709 IRP_CALL_CANCEL
712 typedef union
714 enum irp_type type; /* irp call type */
715 struct
717 enum irp_type type; /* IRP_CALL_CREATE */
718 unsigned int access; /* access rights */
719 unsigned int sharing; /* sharing flags */
720 unsigned int options; /* file options */
721 client_ptr_t device; /* opaque ptr for the device */
722 obj_handle_t file; /* file handle */
723 } create;
724 struct
726 enum irp_type type; /* IRP_CALL_CLOSE */
727 int __pad;
728 client_ptr_t file; /* opaque ptr for the file object */
729 } close;
730 struct
732 enum irp_type type; /* IRP_CALL_READ */
733 unsigned int key; /* driver key */
734 data_size_t out_size; /* needed output size */
735 int __pad;
736 client_ptr_t file; /* opaque ptr for the file object */
737 file_pos_t pos; /* file position */
738 } read;
739 struct
741 enum irp_type type; /* IRP_CALL_WRITE */
742 unsigned int key; /* driver key */
743 client_ptr_t file; /* opaque ptr for the file object */
744 file_pos_t pos; /* file position */
745 } write;
746 struct
748 enum irp_type type; /* IRP_CALL_FLUSH */
749 int __pad;
750 client_ptr_t file; /* opaque ptr for the file object */
751 } flush;
752 struct
754 enum irp_type type; /* IRP_CALL_IOCTL */
755 ioctl_code_t code; /* ioctl code */
756 data_size_t out_size; /* needed output size */
757 int __pad;
758 client_ptr_t file; /* opaque ptr for the file object */
759 } ioctl;
760 struct
762 enum irp_type type; /* IRP_CALL_VOLUME */
763 unsigned int info_class;/* information class */
764 data_size_t out_size; /* needed output size */
765 int __pad;
766 client_ptr_t file; /* opaque ptr for the file object */
767 } volume;
768 struct
770 enum irp_type type; /* IRP_CALL_FREE */
771 int __pad;
772 client_ptr_t obj; /* opaque ptr for the freed object */
773 } free;
774 struct
776 enum irp_type type; /* IRP_CALL_CANCEL */
777 int __pad;
778 client_ptr_t irp; /* opaque ptr for canceled irp */
779 } cancel;
780 } irp_params_t;
782 /* information about a PE image mapping, roughly equivalent to SECTION_IMAGE_INFORMATION */
783 typedef struct
785 client_ptr_t base;
786 mem_size_t stack_size;
787 mem_size_t stack_commit;
788 unsigned int entry_point;
789 unsigned int map_size;
790 unsigned int zerobits;
791 unsigned int subsystem;
792 unsigned short subsystem_minor;
793 unsigned short subsystem_major;
794 unsigned short osversion_major;
795 unsigned short osversion_minor;
796 unsigned short image_charact;
797 unsigned short dll_charact;
798 unsigned short machine;
799 unsigned char contains_code;
800 unsigned char image_flags;
801 unsigned int loader_flags;
802 unsigned int header_size;
803 unsigned int file_size;
804 unsigned int checksum;
805 unsigned int dbg_offset;
806 unsigned int dbg_size;
807 } pe_image_info_t;
808 #define IMAGE_FLAGS_ComPlusNativeReady 0x01
809 #define IMAGE_FLAGS_ComPlusILOnly 0x02
810 #define IMAGE_FLAGS_ImageDynamicallyRelocated 0x04
811 #define IMAGE_FLAGS_ImageMappedFlat 0x08
812 #define IMAGE_FLAGS_BaseBelow4gb 0x10
813 #define IMAGE_FLAGS_ComPlusPrefer32bit 0x20
814 #define IMAGE_FLAGS_WineBuiltin 0x40
815 #define IMAGE_FLAGS_WineFakeDll 0x80
817 struct rawinput_device
819 unsigned short usage_page;
820 unsigned short usage;
821 unsigned int flags;
822 user_handle_t target;
825 typedef struct
827 int x;
828 int y;
829 unsigned int time;
830 int __pad;
831 lparam_t info;
832 } cursor_pos_t;
834 /****************************************************************/
835 /* Request declarations */
837 /* Create a new process from the context of the parent */
838 @REQ(new_process)
839 obj_handle_t token; /* process token */
840 obj_handle_t debug; /* process debug object */
841 obj_handle_t parent_process; /* parent process */
842 unsigned int flags; /* process creation flags */
843 int socket_fd; /* file descriptor for process socket */
844 unsigned int access; /* access rights for process object */
845 unsigned short machine; /* architecture that the new process will use */
846 data_size_t info_size; /* size of startup info */
847 data_size_t handles_size; /* length of explicit handles list */
848 data_size_t jobs_size; /* length of jobs list */
849 VARARG(objattr,object_attributes); /* object attributes */
850 VARARG(handles,uints,handles_size); /* handles list */
851 VARARG(jobs,uints,jobs_size); /* jobs list */
852 VARARG(info,startup_info,info_size); /* startup information */
853 VARARG(env,unicode_str); /* environment for new process */
854 @REPLY
855 obj_handle_t info; /* new process info handle */
856 process_id_t pid; /* process id */
857 obj_handle_t handle; /* process handle (in the current process) */
858 @END
861 /* Retrieve information about a newly started process */
862 @REQ(get_new_process_info)
863 obj_handle_t info; /* info handle returned from new_process_request */
864 @REPLY
865 int success; /* did the process start successfully? */
866 int exit_code; /* process exit code if failed */
867 @END
870 /* Create a new thread */
871 @REQ(new_thread)
872 obj_handle_t process; /* process in which to create thread */
873 unsigned int access; /* wanted access rights */
874 int suspend; /* new thread should be suspended on creation */
875 int request_fd; /* fd for request pipe */
876 VARARG(objattr,object_attributes); /* object attributes */
877 @REPLY
878 thread_id_t tid; /* thread id */
879 obj_handle_t handle; /* thread handle (in the current process) */
880 @END
883 /* Retrieve the new process startup info */
884 @REQ(get_startup_info)
885 @REPLY
886 data_size_t info_size; /* size of startup info */
887 VARARG(info,startup_info,info_size); /* startup information */
888 VARARG(env,unicode_str); /* environment */
889 @END
892 /* Signal the end of the process initialization */
893 @REQ(init_process_done)
894 client_ptr_t teb; /* TEB of new thread (in process address space) */
895 client_ptr_t peb; /* PEB of new process (in process address space) */
896 client_ptr_t ldt_copy; /* address of LDT copy (in process address space) */
897 @REPLY
898 client_ptr_t entry; /* process entry point */
899 int suspend; /* is process suspended? */
900 @END
903 /* Initialize the first thread of a new process */
904 @REQ(init_first_thread)
905 int unix_pid; /* Unix pid of new process */
906 int unix_tid; /* Unix tid of new thread */
907 int debug_level; /* new debug level */
908 int reply_fd; /* fd for reply pipe */
909 int wait_fd; /* fd for blocking calls pipe */
910 @REPLY
911 process_id_t pid; /* process id of the new thread's process */
912 thread_id_t tid; /* thread id of the new thread */
913 timeout_t server_start; /* server start time */
914 unsigned int session_id; /* process session id */
915 data_size_t info_size; /* total size of startup info */
916 VARARG(machines,ushorts); /* array of supported machines */
917 @END
920 /* Initialize a new thread; called from the child after pthread_create() */
921 @REQ(init_thread)
922 int unix_tid; /* Unix tid of new thread */
923 int reply_fd; /* fd for reply pipe */
924 int wait_fd; /* fd for blocking calls pipe */
925 client_ptr_t teb; /* TEB of new thread (in thread address space) */
926 client_ptr_t entry; /* entry point (in thread address space) */
927 @REPLY
928 int suspend; /* is thread suspended? */
929 @END
932 /* Terminate a process */
933 @REQ(terminate_process)
934 obj_handle_t handle; /* process handle to terminate */
935 int exit_code; /* process exit code */
936 @REPLY
937 int self; /* suicide? */
938 @END
941 /* Terminate a thread */
942 @REQ(terminate_thread)
943 obj_handle_t handle; /* thread handle to terminate */
944 int exit_code; /* thread exit code */
945 @REPLY
946 int self; /* suicide? */
947 @END
950 /* Retrieve information about a process */
951 @REQ(get_process_info)
952 obj_handle_t handle; /* process handle */
953 @REPLY
954 process_id_t pid; /* server process id */
955 process_id_t ppid; /* server process id of parent */
956 affinity_t affinity; /* process affinity mask */
957 client_ptr_t peb; /* PEB address in process address space */
958 timeout_t start_time; /* process start time */
959 timeout_t end_time; /* process end time */
960 unsigned int session_id; /* process session id */
961 int exit_code; /* process exit code */
962 int priority; /* priority class */
963 unsigned short machine; /* process architecture */
964 VARARG(image,pe_image_info); /* image info for main exe */
965 @END
968 /* Retrieve debug information about a process */
969 @REQ(get_process_debug_info)
970 obj_handle_t handle; /* process handle */
971 @REPLY
972 obj_handle_t debug; /* handle to debug port */
973 int debug_children; /* inherit debugger to child processes */
974 VARARG(image,pe_image_info); /* image info for main exe */
975 @END
978 /* Fetch the name of the process image */
979 @REQ(get_process_image_name)
980 obj_handle_t handle; /* process handle */
981 int win32; /* return a win32 filename? */
982 @REPLY
983 data_size_t len; /* len in bytes required to store filename */
984 VARARG(name,unicode_str); /* image name for main exe */
985 @END
988 /* Retrieve information about a process memory usage */
989 @REQ(get_process_vm_counters)
990 obj_handle_t handle; /* process handle */
991 @REPLY
992 mem_size_t peak_virtual_size; /* peak virtual memory in bytes */
993 mem_size_t virtual_size; /* virtual memory in bytes */
994 mem_size_t peak_working_set_size; /* peak real memory in bytes */
995 mem_size_t working_set_size; /* real memory in bytes */
996 mem_size_t pagefile_usage; /* commit charge in bytes */
997 mem_size_t peak_pagefile_usage; /* peak commit charge in bytes */
998 @END
1001 /* Set a process information */
1002 @REQ(set_process_info)
1003 obj_handle_t handle; /* process handle */
1004 int mask; /* setting mask (see below) */
1005 int priority; /* priority class */
1006 affinity_t affinity; /* affinity mask */
1007 @END
1008 #define SET_PROCESS_INFO_PRIORITY 0x01
1009 #define SET_PROCESS_INFO_AFFINITY 0x02
1012 /* Retrieve information about a thread */
1013 @REQ(get_thread_info)
1014 obj_handle_t handle; /* thread handle */
1015 unsigned int access; /* required access rights */
1016 @REPLY
1017 process_id_t pid; /* server process id */
1018 thread_id_t tid; /* server thread id */
1019 client_ptr_t teb; /* thread teb pointer */
1020 client_ptr_t entry_point; /* thread entry point */
1021 affinity_t affinity; /* thread affinity mask */
1022 int exit_code; /* thread exit code */
1023 int priority; /* thread priority level */
1024 int last; /* last thread in process */
1025 int suspend_count; /* thread suspend count */
1026 int dbg_hidden; /* thread hidden from debugger */
1027 data_size_t desc_len; /* description length in bytes */
1028 VARARG(desc,unicode_str); /* description string */
1029 @END
1032 /* Retrieve information about thread times */
1033 @REQ(get_thread_times)
1034 obj_handle_t handle; /* thread handle */
1035 @REPLY
1036 timeout_t creation_time; /* thread creation time */
1037 timeout_t exit_time; /* thread exit time */
1038 int unix_pid; /* thread native pid */
1039 int unix_tid; /* thread native pid */
1040 @END
1043 /* Set a thread information */
1044 @REQ(set_thread_info)
1045 obj_handle_t handle; /* thread handle */
1046 int mask; /* setting mask (see below) */
1047 int priority; /* priority class */
1048 affinity_t affinity; /* affinity mask */
1049 client_ptr_t entry_point; /* thread entry point */
1050 obj_handle_t token; /* impersonation token */
1051 VARARG(desc,unicode_str); /* description string */
1052 @END
1053 #define SET_THREAD_INFO_PRIORITY 0x01
1054 #define SET_THREAD_INFO_AFFINITY 0x02
1055 #define SET_THREAD_INFO_TOKEN 0x04
1056 #define SET_THREAD_INFO_ENTRYPOINT 0x08
1057 #define SET_THREAD_INFO_DESCRIPTION 0x10
1058 #define SET_THREAD_INFO_DBG_HIDDEN 0x20
1061 /* Suspend a thread */
1062 @REQ(suspend_thread)
1063 obj_handle_t handle; /* thread handle */
1064 @REPLY
1065 int count; /* new suspend count */
1066 @END
1069 /* Resume a thread */
1070 @REQ(resume_thread)
1071 obj_handle_t handle; /* thread handle */
1072 @REPLY
1073 int count; /* new suspend count */
1074 @END
1077 /* Queue an APC for a thread or process */
1078 @REQ(queue_apc)
1079 obj_handle_t handle; /* thread or process handle */
1080 apc_call_t call; /* call arguments */
1081 @REPLY
1082 obj_handle_t handle; /* APC handle */
1083 int self; /* run APC in caller itself? */
1084 @END
1087 /* Get the result of an APC call */
1088 @REQ(get_apc_result)
1089 obj_handle_t handle; /* handle to the APC */
1090 @REPLY
1091 apc_result_t result; /* result of the APC */
1092 @END
1095 /* Close a handle for the current process */
1096 @REQ(close_handle)
1097 obj_handle_t handle; /* handle to close */
1098 @END
1101 /* Set a handle information */
1102 @REQ(set_handle_info)
1103 obj_handle_t handle; /* handle we are interested in */
1104 int flags; /* new handle flags */
1105 int mask; /* mask for flags to set */
1106 @REPLY
1107 int old_flags; /* old flag value */
1108 @END
1111 /* Duplicate a handle */
1112 @REQ(dup_handle)
1113 obj_handle_t src_process; /* src process handle */
1114 obj_handle_t src_handle; /* src handle to duplicate */
1115 obj_handle_t dst_process; /* dst process handle */
1116 unsigned int access; /* wanted access rights */
1117 unsigned int attributes; /* object attributes */
1118 unsigned int options; /* duplicate options */
1119 @REPLY
1120 obj_handle_t handle; /* duplicated handle in dst process */
1121 @END
1124 /* Make an object temporary */
1125 @REQ(make_temporary)
1126 obj_handle_t handle; /* handle to the object */
1127 @END
1130 /* Open a handle to a process */
1131 @REQ(open_process)
1132 process_id_t pid; /* process id to open */
1133 unsigned int access; /* wanted access rights */
1134 unsigned int attributes; /* object attributes */
1135 @REPLY
1136 obj_handle_t handle; /* handle to the process */
1137 @END
1140 /* Open a handle to a thread */
1141 @REQ(open_thread)
1142 thread_id_t tid; /* thread id to open */
1143 unsigned int access; /* wanted access rights */
1144 unsigned int attributes; /* object attributes */
1145 @REPLY
1146 obj_handle_t handle; /* handle to the thread */
1147 @END
1150 /* Wait for handles */
1151 @REQ(select)
1152 int flags; /* wait flags (see below) */
1153 client_ptr_t cookie; /* magic cookie to return to client */
1154 abstime_t timeout; /* timeout */
1155 data_size_t size; /* size of select_op */
1156 obj_handle_t prev_apc; /* handle to previous APC */
1157 VARARG(result,apc_result); /* result of previous APC */
1158 VARARG(data,select_op,size); /* operation-specific data */
1159 VARARG(contexts,contexts); /* suspend context(s) */
1160 @REPLY
1161 apc_call_t call; /* APC call arguments */
1162 obj_handle_t apc_handle; /* handle to next APC */
1163 int signaled; /* were the handles immediately signaled? */
1164 VARARG(contexts,contexts); /* suspend context(s) */
1165 @END
1166 #define SELECT_ALERTABLE 1
1167 #define SELECT_INTERRUPTIBLE 2
1170 /* Create an event */
1171 @REQ(create_event)
1172 unsigned int access; /* wanted access rights */
1173 int manual_reset; /* manual reset event */
1174 int initial_state; /* initial state of the event */
1175 VARARG(objattr,object_attributes); /* object attributes */
1176 @REPLY
1177 obj_handle_t handle; /* handle to the event */
1178 @END
1180 /* Event operation */
1181 @REQ(event_op)
1182 obj_handle_t handle; /* handle to event */
1183 int op; /* event operation (see below) */
1184 @REPLY
1185 int state; /* previous state */
1186 @END
1187 enum event_op { PULSE_EVENT, SET_EVENT, RESET_EVENT };
1189 @REQ(query_event)
1190 obj_handle_t handle; /* handle to event */
1191 @REPLY
1192 int manual_reset; /* manual reset event */
1193 int state; /* current state of the event */
1194 @END
1196 /* Open an event */
1197 @REQ(open_event)
1198 unsigned int access; /* wanted access rights */
1199 unsigned int attributes; /* object attributes */
1200 obj_handle_t rootdir; /* root directory */
1201 VARARG(name,unicode_str); /* object name */
1202 @REPLY
1203 obj_handle_t handle; /* handle to the event */
1204 @END
1207 /* Create a keyed event */
1208 @REQ(create_keyed_event)
1209 unsigned int access; /* wanted access rights */
1210 VARARG(objattr,object_attributes); /* object attributes */
1211 @REPLY
1212 obj_handle_t handle; /* handle to the event */
1213 @END
1215 /* Open a keyed event */
1216 @REQ(open_keyed_event)
1217 unsigned int access; /* wanted access rights */
1218 unsigned int attributes; /* object attributes */
1219 obj_handle_t rootdir; /* root directory */
1220 VARARG(name,unicode_str); /* object name */
1221 @REPLY
1222 obj_handle_t handle; /* handle to the event */
1223 @END
1226 /* Create a mutex */
1227 @REQ(create_mutex)
1228 unsigned int access; /* wanted access rights */
1229 int owned; /* initially owned? */
1230 VARARG(objattr,object_attributes); /* object attributes */
1231 @REPLY
1232 obj_handle_t handle; /* handle to the mutex */
1233 @END
1236 /* Release a mutex */
1237 @REQ(release_mutex)
1238 obj_handle_t handle; /* handle to the mutex */
1239 @REPLY
1240 unsigned int prev_count; /* value of internal counter, before release */
1241 @END
1244 /* Open a mutex */
1245 @REQ(open_mutex)
1246 unsigned int access; /* wanted access rights */
1247 unsigned int attributes; /* object attributes */
1248 obj_handle_t rootdir; /* root directory */
1249 VARARG(name,unicode_str); /* object name */
1250 @REPLY
1251 obj_handle_t handle; /* handle to the mutex */
1252 @END
1255 /* Query a mutex */
1256 @REQ(query_mutex)
1257 obj_handle_t handle; /* handle to mutex */
1258 @REPLY
1259 unsigned int count; /* current count of mutex */
1260 int owned; /* true if owned by current thread */
1261 int abandoned; /* true if abandoned */
1262 @END
1265 /* Create a semaphore */
1266 @REQ(create_semaphore)
1267 unsigned int access; /* wanted access rights */
1268 unsigned int initial; /* initial count */
1269 unsigned int max; /* maximum count */
1270 VARARG(objattr,object_attributes); /* object attributes */
1271 @REPLY
1272 obj_handle_t handle; /* handle to the semaphore */
1273 @END
1276 /* Release a semaphore */
1277 @REQ(release_semaphore)
1278 obj_handle_t handle; /* handle to the semaphore */
1279 unsigned int count; /* count to add to semaphore */
1280 @REPLY
1281 unsigned int prev_count; /* previous semaphore count */
1282 @END
1284 @REQ(query_semaphore)
1285 obj_handle_t handle; /* handle to the semaphore */
1286 @REPLY
1287 unsigned int current; /* current count */
1288 unsigned int max; /* maximum count */
1289 @END
1291 /* Open a semaphore */
1292 @REQ(open_semaphore)
1293 unsigned int access; /* wanted access rights */
1294 unsigned int attributes; /* object attributes */
1295 obj_handle_t rootdir; /* root directory */
1296 VARARG(name,unicode_str); /* object name */
1297 @REPLY
1298 obj_handle_t handle; /* handle to the semaphore */
1299 @END
1302 /* Create a file */
1303 @REQ(create_file)
1304 unsigned int access; /* wanted access rights */
1305 unsigned int sharing; /* sharing flags */
1306 int create; /* file create action */
1307 unsigned int options; /* file options */
1308 unsigned int attrs; /* file attributes for creation */
1309 VARARG(objattr,object_attributes); /* object attributes */
1310 VARARG(filename,string); /* file name */
1311 @REPLY
1312 obj_handle_t handle; /* handle to the file */
1313 @END
1316 /* Open a file object */
1317 @REQ(open_file_object)
1318 unsigned int access; /* wanted access rights */
1319 unsigned int attributes; /* open attributes */
1320 obj_handle_t rootdir; /* root directory */
1321 unsigned int sharing; /* sharing flags */
1322 unsigned int options; /* file options */
1323 VARARG(filename,unicode_str); /* file name */
1324 @REPLY
1325 obj_handle_t handle; /* handle to the file */
1326 @END
1329 /* Allocate a file handle for a Unix fd */
1330 @REQ(alloc_file_handle)
1331 unsigned int access; /* wanted access rights */
1332 unsigned int attributes; /* object attributes */
1333 int fd; /* file descriptor on the client side */
1334 @REPLY
1335 obj_handle_t handle; /* handle to the file */
1336 @END
1339 /* Get the Unix name from a file handle */
1340 @REQ(get_handle_unix_name)
1341 obj_handle_t handle; /* file handle */
1342 @REPLY
1343 data_size_t name_len; /* unix name length */
1344 VARARG(name,string); /* unix name */
1345 @END
1348 /* Get a Unix fd to access a file */
1349 @REQ(get_handle_fd)
1350 obj_handle_t handle; /* handle to the file */
1351 @REPLY
1352 int type; /* file type (see below) */
1353 int cacheable; /* can fd be cached in the client? */
1354 unsigned int access; /* file access rights */
1355 unsigned int options; /* file open options */
1356 @END
1357 enum server_fd_type
1359 FD_TYPE_INVALID, /* invalid file (no associated fd) */
1360 FD_TYPE_FILE, /* regular file */
1361 FD_TYPE_DIR, /* directory */
1362 FD_TYPE_SOCKET, /* socket */
1363 FD_TYPE_SERIAL, /* serial port */
1364 FD_TYPE_PIPE, /* named pipe */
1365 FD_TYPE_MAILSLOT, /* mailslot */
1366 FD_TYPE_CHAR, /* unspecified char device */
1367 FD_TYPE_DEVICE, /* Windows device file */
1368 FD_TYPE_NB_TYPES
1372 /* Retrieve (or allocate) the client-side directory cache entry */
1373 @REQ(get_directory_cache_entry)
1374 obj_handle_t handle; /* handle to the directory */
1375 @REPLY
1376 int entry; /* cache entry on the client side */
1377 VARARG(free,ints); /* entries that can be freed */
1378 @END
1381 /* Flush a file buffers */
1382 @REQ(flush)
1383 async_data_t async; /* async I/O parameters */
1384 @REPLY
1385 obj_handle_t event; /* event set when finished */
1386 @END
1388 /* Query file information */
1389 @REQ(get_file_info)
1390 obj_handle_t handle; /* handle to the file */
1391 unsigned int info_class; /* queried information class */
1392 @REPLY
1393 VARARG(data,bytes); /* file info data */
1394 @END
1396 /* Query volume information */
1397 @REQ(get_volume_info)
1398 obj_handle_t handle; /* handle to the file */
1399 async_data_t async; /* async I/O parameters */
1400 unsigned int info_class; /* queried information class */
1401 @REPLY
1402 obj_handle_t wait; /* handle to wait on for blocking read */
1403 VARARG(data,bytes); /* volume info data */
1404 @END
1406 /* Lock a region of a file */
1407 @REQ(lock_file)
1408 obj_handle_t handle; /* handle to the file */
1409 file_pos_t offset; /* offset of start of lock */
1410 file_pos_t count; /* count of bytes to lock */
1411 int shared; /* shared or exclusive lock? */
1412 int wait; /* do we want to wait? */
1413 @REPLY
1414 obj_handle_t handle; /* handle to wait on */
1415 int overlapped; /* is it an overlapped I/O handle? */
1416 @END
1419 /* Unlock a region of a file */
1420 @REQ(unlock_file)
1421 obj_handle_t handle; /* handle to the file */
1422 file_pos_t offset; /* offset of start of unlock */
1423 file_pos_t count; /* count of bytes to unlock */
1424 @END
1427 /* Perform a recv on a socket */
1428 @REQ(recv_socket)
1429 int oob; /* are we receiving OOB data? */
1430 async_data_t async; /* async I/O parameters */
1431 unsigned int status; /* status of initial call */
1432 unsigned int total; /* number of bytes already read */
1433 @REPLY
1434 obj_handle_t wait; /* handle to wait on for blocking recv */
1435 unsigned int options; /* device open options */
1436 @END
1439 struct poll_socket_input
1441 obj_handle_t socket; /* socket handle */
1442 int flags; /* events to poll for */
1445 struct poll_socket_output
1447 int flags; /* events signaled */
1448 unsigned int status; /* socket status */
1451 /* Perform an async poll on a socket */
1452 @REQ(poll_socket)
1453 async_data_t async; /* async I/O parameters */
1454 timeout_t timeout; /* timeout */
1455 VARARG(sockets,poll_socket_input); /* list of sockets to poll */
1456 @REPLY
1457 obj_handle_t wait; /* handle to wait on for blocking poll */
1458 unsigned int options; /* file open options */
1459 VARARG(sockets,poll_socket_output); /* data returned */
1460 @END
1463 /* Perform a send on a socket */
1464 @REQ(send_socket)
1465 async_data_t async; /* async I/O parameters */
1466 unsigned int status; /* status of initial call */
1467 unsigned int total; /* number of bytes already sent */
1468 @REPLY
1469 obj_handle_t wait; /* handle to wait on for blocking send */
1470 unsigned int options; /* device open options */
1471 @END
1474 /* Retrieve the next pending console ioctl request */
1475 @REQ(get_next_console_request)
1476 obj_handle_t handle; /* console server handle */
1477 int signal; /* server signal state */
1478 int read; /* 1 if reporting result of blocked read ioctl */
1479 unsigned int status; /* status of previous ioctl */
1480 VARARG(out_data,bytes); /* out_data of previous ioctl */
1481 @REPLY
1482 unsigned int code; /* ioctl code */
1483 unsigned int output; /* output id or 0 for input */
1484 data_size_t out_size; /* ioctl output size */
1485 VARARG(in_data,bytes); /* ioctl in_data */
1486 @END
1489 /* enable directory change notifications */
1490 @REQ(read_directory_changes)
1491 unsigned int filter; /* notification filter */
1492 int subtree; /* watch the subtree? */
1493 int want_data; /* flag indicating whether change data should be collected */
1494 async_data_t async; /* async I/O parameters */
1495 @END
1498 @REQ(read_change)
1499 obj_handle_t handle;
1500 @REPLY
1501 VARARG(events,filesystem_event); /* collected filesystem events */
1502 @END
1505 /* Create a file mapping */
1506 @REQ(create_mapping)
1507 unsigned int access; /* wanted access rights */
1508 unsigned int flags; /* SEC_* flags */
1509 unsigned int file_access; /* file access rights */
1510 mem_size_t size; /* mapping size */
1511 obj_handle_t file_handle; /* file handle */
1512 VARARG(objattr,object_attributes); /* object attributes */
1513 @REPLY
1514 obj_handle_t handle; /* handle to the mapping */
1515 @END
1518 /* Open a mapping */
1519 @REQ(open_mapping)
1520 unsigned int access; /* wanted access rights */
1521 unsigned int attributes; /* object attributes */
1522 obj_handle_t rootdir; /* root directory */
1523 VARARG(name,unicode_str); /* object name */
1524 @REPLY
1525 obj_handle_t handle; /* handle to the mapping */
1526 @END
1529 /* Get information about a file mapping */
1530 @REQ(get_mapping_info)
1531 obj_handle_t handle; /* handle to the mapping */
1532 unsigned int access; /* wanted access rights */
1533 @REPLY
1534 mem_size_t size; /* mapping size */
1535 unsigned int flags; /* SEC_* flags */
1536 obj_handle_t shared_file; /* shared mapping file handle */
1537 data_size_t total; /* total required buffer size in bytes */
1538 VARARG(image,pe_image_info);/* image info for SEC_IMAGE mappings */
1539 VARARG(name,unicode_str); /* filename for SEC_IMAGE mappings */
1540 @END
1543 /* Add a memory view in the current process */
1544 @REQ(map_view)
1545 obj_handle_t mapping; /* file mapping handle, or 0 for .so builtin */
1546 unsigned int access; /* wanted access rights */
1547 client_ptr_t base; /* view base address (page-aligned) */
1548 mem_size_t size; /* view size */
1549 file_pos_t start; /* start offset in mapping */
1550 VARARG(image,pe_image_info);/* image info for .so builtins */
1551 VARARG(name,unicode_str); /* image filename for .so builtins */
1552 @END
1555 /* Unmap a memory view from the current process */
1556 @REQ(unmap_view)
1557 client_ptr_t base; /* view base address */
1558 @END
1561 /* Get a range of committed pages in a file mapping */
1562 @REQ(get_mapping_committed_range)
1563 client_ptr_t base; /* view base address */
1564 file_pos_t offset; /* starting offset (page-aligned, in bytes) */
1565 @REPLY
1566 mem_size_t size; /* size of range starting at offset (page-aligned, in bytes) */
1567 int committed; /* whether it is a committed range */
1568 @END
1571 /* Add a range to the committed pages in a file mapping */
1572 @REQ(add_mapping_committed_range)
1573 client_ptr_t base; /* view base address */
1574 file_pos_t offset; /* starting offset (page-aligned, in bytes) */
1575 mem_size_t size; /* size to set (page-aligned, in bytes) or 0 if only retrieving */
1576 @END
1579 /* Check if two memory maps are for the same file */
1580 @REQ(is_same_mapping)
1581 client_ptr_t base1; /* first view base address */
1582 client_ptr_t base2; /* second view base address */
1583 @END
1586 /* Get the filename of a mapping */
1587 @REQ(get_mapping_filename)
1588 obj_handle_t process; /* process handle */
1589 client_ptr_t addr; /* address inside mapped view (in process address space) */
1590 @REPLY
1591 data_size_t len; /* total filename length in bytes */
1592 VARARG(filename,unicode_str); /* filename in NT format */
1593 @END
1596 struct thread_info
1598 timeout_t start_time;
1599 thread_id_t tid;
1600 int base_priority;
1601 int current_priority;
1602 int unix_tid;
1605 struct process_info
1607 timeout_t start_time;
1608 data_size_t name_len;
1609 int thread_count;
1610 int priority;
1611 process_id_t pid;
1612 process_id_t parent_pid;
1613 unsigned int session_id;
1614 int handle_count;
1615 int unix_pid;
1616 /* VARARG(name,unicode_str,name_len); */
1617 /* VARARG(threads,struct thread_info,thread_count); */
1620 /* Get a list of processes and threads currently running */
1621 @REQ(list_processes)
1622 @REPLY
1623 data_size_t info_size;
1624 int process_count;
1625 VARARG(data,process_info,info_size);
1626 @END
1629 /* Create a debug object */
1630 @REQ(create_debug_obj)
1631 unsigned int access; /* wanted access rights */
1632 unsigned int flags; /* object flags */
1633 VARARG(objattr,object_attributes); /* object attributes */
1634 @REPLY
1635 obj_handle_t handle; /* handle to the debug object */
1636 @END
1639 /* Wait for a debug event */
1640 @REQ(wait_debug_event)
1641 obj_handle_t debug; /* debug object */
1642 @REPLY
1643 process_id_t pid; /* process id */
1644 thread_id_t tid; /* thread id */
1645 VARARG(event,debug_event); /* debug event data */
1646 @END
1649 /* Queue an exception event */
1650 @REQ(queue_exception_event)
1651 int first; /* first chance exception? */
1652 unsigned int code; /* exception code */
1653 unsigned int flags; /* exception flags */
1654 client_ptr_t record; /* exception record */
1655 client_ptr_t address; /* exception address */
1656 data_size_t len; /* size of parameters */
1657 VARARG(params,uints64,len);/* exception parameters */
1658 @REPLY
1659 obj_handle_t handle; /* handle to the queued event */
1660 @END
1663 /* Retrieve the status of an exception event */
1664 @REQ(get_exception_status)
1665 obj_handle_t handle; /* handle to the queued event */
1666 @END
1669 /* Continue a debug event */
1670 @REQ(continue_debug_event)
1671 obj_handle_t debug; /* debug object */
1672 process_id_t pid; /* process id to continue */
1673 thread_id_t tid; /* thread id to continue */
1674 unsigned int status; /* continuation status */
1675 @END
1678 /* Start or stop debugging an existing process */
1679 @REQ(debug_process)
1680 obj_handle_t handle; /* process handle */
1681 obj_handle_t debug; /* debug object to attach to the process */
1682 int attach; /* 1=attaching / 0=detaching from the process */
1683 @END
1686 /* Set debug object information */
1687 @REQ(set_debug_obj_info)
1688 obj_handle_t debug; /* debug object */
1689 unsigned int flags; /* object flags */
1690 @END
1693 /* Read data from a process address space */
1694 @REQ(read_process_memory)
1695 obj_handle_t handle; /* process handle */
1696 client_ptr_t addr; /* addr to read from */
1697 @REPLY
1698 VARARG(data,bytes); /* result data */
1699 @END
1702 /* Write data to a process address space */
1703 @REQ(write_process_memory)
1704 obj_handle_t handle; /* process handle */
1705 client_ptr_t addr; /* addr to write to */
1706 VARARG(data,bytes); /* data to write */
1707 @END
1710 /* Create a registry key */
1711 @REQ(create_key)
1712 unsigned int access; /* desired access rights */
1713 unsigned int options; /* creation options */
1714 VARARG(objattr,object_attributes); /* object attributes */
1715 VARARG(class,unicode_str); /* class name */
1716 @REPLY
1717 obj_handle_t hkey; /* handle to the created key */
1718 int created; /* has it been newly created? */
1719 @END
1721 /* Open a registry key */
1722 @REQ(open_key)
1723 obj_handle_t parent; /* handle to the parent key */
1724 unsigned int access; /* desired access rights */
1725 unsigned int attributes; /* object attributes */
1726 VARARG(name,unicode_str); /* key name */
1727 @REPLY
1728 obj_handle_t hkey; /* handle to the open key */
1729 @END
1732 /* Delete a registry key */
1733 @REQ(delete_key)
1734 obj_handle_t hkey; /* handle to the key */
1735 @END
1738 /* Flush a registry key */
1739 @REQ(flush_key)
1740 obj_handle_t hkey; /* handle to the key */
1741 @END
1744 /* Enumerate registry subkeys */
1745 @REQ(enum_key)
1746 obj_handle_t hkey; /* handle to registry key */
1747 int index; /* index of subkey (or -1 for current key) */
1748 int info_class; /* requested information class */
1749 @REPLY
1750 int subkeys; /* number of subkeys */
1751 int max_subkey; /* longest subkey name */
1752 int max_class; /* longest class name */
1753 int values; /* number of values */
1754 int max_value; /* longest value name */
1755 int max_data; /* longest value data */
1756 timeout_t modif; /* last modification time */
1757 data_size_t total; /* total length needed for full name and class */
1758 data_size_t namelen; /* length of key name in bytes */
1759 VARARG(name,unicode_str,namelen); /* key name */
1760 VARARG(class,unicode_str); /* class name */
1761 @END
1764 /* Set a value of a registry key */
1765 @REQ(set_key_value)
1766 obj_handle_t hkey; /* handle to registry key */
1767 int type; /* value type */
1768 data_size_t namelen; /* length of value name in bytes */
1769 VARARG(name,unicode_str,namelen); /* value name */
1770 VARARG(data,bytes); /* value data */
1771 @END
1774 /* Retrieve the value of a registry key */
1775 @REQ(get_key_value)
1776 obj_handle_t hkey; /* handle to registry key */
1777 VARARG(name,unicode_str); /* value name */
1778 @REPLY
1779 int type; /* value type */
1780 data_size_t total; /* total length needed for data */
1781 VARARG(data,bytes); /* value data */
1782 @END
1785 /* Enumerate a value of a registry key */
1786 @REQ(enum_key_value)
1787 obj_handle_t hkey; /* handle to registry key */
1788 int index; /* value index */
1789 int info_class; /* requested information class */
1790 @REPLY
1791 int type; /* value type */
1792 data_size_t total; /* total length needed for full name and data */
1793 data_size_t namelen; /* length of value name in bytes */
1794 VARARG(name,unicode_str,namelen); /* value name */
1795 VARARG(data,bytes); /* value data */
1796 @END
1799 /* Delete a value of a registry key */
1800 @REQ(delete_key_value)
1801 obj_handle_t hkey; /* handle to registry key */
1802 VARARG(name,unicode_str); /* value name */
1803 @END
1806 /* Load a registry branch from a file */
1807 @REQ(load_registry)
1808 obj_handle_t file; /* file to load from */
1809 VARARG(objattr,object_attributes); /* object attributes */
1810 @END
1813 /* UnLoad a registry branch from a file */
1814 @REQ(unload_registry)
1815 obj_handle_t parent; /* handle to the parent key */
1816 unsigned int attributes; /* object attributes */
1817 VARARG(name,unicode_str); /* key name */
1818 @END
1821 /* Save a registry branch to a file */
1822 @REQ(save_registry)
1823 obj_handle_t hkey; /* key to save */
1824 obj_handle_t file; /* file to save to */
1825 @END
1828 /* Add a registry key change notification */
1829 @REQ(set_registry_notification)
1830 obj_handle_t hkey; /* key to watch for changes */
1831 obj_handle_t event; /* event to set */
1832 int subtree; /* should we watch the whole subtree? */
1833 unsigned int filter; /* things to watch */
1834 @END
1837 /* Create a waitable timer */
1838 @REQ(create_timer)
1839 unsigned int access; /* wanted access rights */
1840 int manual; /* manual reset */
1841 VARARG(objattr,object_attributes); /* object attributes */
1842 @REPLY
1843 obj_handle_t handle; /* handle to the timer */
1844 @END
1847 /* Open a waitable timer */
1848 @REQ(open_timer)
1849 unsigned int access; /* wanted access rights */
1850 unsigned int attributes; /* object attributes */
1851 obj_handle_t rootdir; /* root directory */
1852 VARARG(name,unicode_str); /* object name */
1853 @REPLY
1854 obj_handle_t handle; /* handle to the timer */
1855 @END
1857 /* Set a waitable timer */
1858 @REQ(set_timer)
1859 obj_handle_t handle; /* handle to the timer */
1860 timeout_t expire; /* next expiration absolute time */
1861 client_ptr_t callback; /* callback function */
1862 client_ptr_t arg; /* callback argument */
1863 int period; /* timer period in ms */
1864 @REPLY
1865 int signaled; /* was the timer signaled before this call ? */
1866 @END
1868 /* Cancel a waitable timer */
1869 @REQ(cancel_timer)
1870 obj_handle_t handle; /* handle to the timer */
1871 @REPLY
1872 int signaled; /* was the timer signaled before this calltime ? */
1873 @END
1875 /* Get information on a waitable timer */
1876 @REQ(get_timer_info)
1877 obj_handle_t handle; /* handle to the timer */
1878 @REPLY
1879 timeout_t when; /* absolute time when the timer next expires */
1880 int signaled; /* is the timer signaled? */
1881 @END
1884 /* Retrieve the current context of a thread */
1885 @REQ(get_thread_context)
1886 obj_handle_t handle; /* thread handle */
1887 obj_handle_t context; /* context handle */
1888 unsigned int flags; /* context flags */
1889 unsigned short machine; /* context architecture */
1890 @REPLY
1891 int self; /* was it a handle to the current thread? */
1892 obj_handle_t handle; /* pending context handle */
1893 VARARG(contexts,contexts); /* thread context(s) */
1894 @END
1897 /* Set the current context of a thread */
1898 @REQ(set_thread_context)
1899 obj_handle_t handle; /* thread handle */
1900 VARARG(contexts,contexts); /* thread context(s) */
1901 @REPLY
1902 int self; /* was it a handle to the current thread? */
1903 @END
1906 /* Fetch a selector entry for a thread */
1907 @REQ(get_selector_entry)
1908 obj_handle_t handle; /* thread handle */
1909 int entry; /* LDT entry */
1910 @REPLY
1911 unsigned int base; /* selector base */
1912 unsigned int limit; /* selector limit */
1913 unsigned char flags; /* selector flags */
1914 @END
1917 /* Add an atom */
1918 @REQ(add_atom)
1919 VARARG(name,unicode_str); /* atom name */
1920 @REPLY
1921 atom_t atom; /* resulting atom */
1922 @END
1925 /* Delete an atom */
1926 @REQ(delete_atom)
1927 atom_t atom; /* atom handle */
1928 @END
1931 /* Find an atom */
1932 @REQ(find_atom)
1933 VARARG(name,unicode_str); /* atom name */
1934 @REPLY
1935 atom_t atom; /* atom handle */
1936 @END
1939 /* Get information about an atom */
1940 @REQ(get_atom_information)
1941 atom_t atom; /* atom handle */
1942 @REPLY
1943 int count; /* atom lock count */
1944 int pinned; /* whether the atom has been pinned */
1945 data_size_t total; /* actual length of atom name */
1946 VARARG(name,unicode_str); /* atom name */
1947 @END
1950 /* Get the message queue of the current thread */
1951 @REQ(get_msg_queue)
1952 @REPLY
1953 obj_handle_t handle; /* handle to the queue */
1954 @END
1957 /* Set the file descriptor associated to the current thread queue */
1958 @REQ(set_queue_fd)
1959 obj_handle_t handle; /* handle to the file descriptor */
1960 @END
1963 /* Set the current message queue wakeup mask */
1964 @REQ(set_queue_mask)
1965 unsigned int wake_mask; /* wakeup bits mask */
1966 unsigned int changed_mask; /* changed bits mask */
1967 int skip_wait; /* will we skip waiting if signaled? */
1968 @REPLY
1969 unsigned int wake_bits; /* current wake bits */
1970 unsigned int changed_bits; /* current changed bits */
1971 @END
1974 /* Get the current message queue status */
1975 @REQ(get_queue_status)
1976 unsigned int clear_bits; /* should we clear the change bits? */
1977 @REPLY
1978 unsigned int wake_bits; /* wake bits */
1979 unsigned int changed_bits; /* changed bits since last time */
1980 @END
1983 /* Retrieve the process idle event */
1984 @REQ(get_process_idle_event)
1985 obj_handle_t handle; /* process handle */
1986 @REPLY
1987 obj_handle_t event; /* handle to idle event */
1988 @END
1991 /* Send a message to a thread queue */
1992 @REQ(send_message)
1993 thread_id_t id; /* thread id */
1994 int type; /* message type (see below) */
1995 int flags; /* message flags (see below) */
1996 user_handle_t win; /* window handle */
1997 unsigned int msg; /* message code */
1998 lparam_t wparam; /* parameters */
1999 lparam_t lparam; /* parameters */
2000 timeout_t timeout; /* timeout for reply */
2001 VARARG(data,message_data); /* message data for sent messages */
2002 @END
2004 @REQ(post_quit_message)
2005 int exit_code; /* exit code to return */
2006 @END
2008 enum message_type
2010 MSG_ASCII, /* Ascii message (from SendMessageA) */
2011 MSG_UNICODE, /* Unicode message (from SendMessageW) */
2012 MSG_NOTIFY, /* notify message (from SendNotifyMessageW), always Unicode */
2013 MSG_CALLBACK, /* callback message (from SendMessageCallbackW), always Unicode */
2014 MSG_CALLBACK_RESULT,/* result of a callback message */
2015 MSG_OTHER_PROCESS, /* sent from other process, may include vararg data, always Unicode */
2016 MSG_POSTED, /* posted message (from PostMessageW), always Unicode */
2017 MSG_HARDWARE, /* hardware message */
2018 MSG_WINEVENT, /* winevent message */
2019 MSG_HOOK_LL /* low-level hardware hook */
2021 #define SEND_MSG_ABORT_IF_HUNG 0x01
2024 /* Send a hardware message to a thread queue */
2025 @REQ(send_hardware_message)
2026 user_handle_t win; /* window handle */
2027 hw_input_t input; /* input data */
2028 unsigned int flags; /* flags (see below) */
2029 VARARG(report,bytes); /* HID report data */
2030 @REPLY
2031 int wait; /* do we need to wait for a reply? */
2032 int prev_x; /* previous cursor position */
2033 int prev_y;
2034 int new_x; /* new cursor position */
2035 int new_y;
2036 VARARG(keystate,bytes); /* global state array for all the keys */
2037 @END
2038 #define SEND_HWMSG_INJECTED 0x01
2041 /* Get a message from the current queue */
2042 @REQ(get_message)
2043 unsigned int flags; /* PM_* flags */
2044 user_handle_t get_win; /* window handle to get */
2045 unsigned int get_first; /* first message code to get */
2046 unsigned int get_last; /* last message code to get */
2047 unsigned int hw_id; /* id of the previous hardware message (or 0) */
2048 unsigned int wake_mask; /* wakeup bits mask */
2049 unsigned int changed_mask; /* changed bits mask */
2050 @REPLY
2051 user_handle_t win; /* window handle */
2052 unsigned int msg; /* message code */
2053 lparam_t wparam; /* parameters */
2054 lparam_t lparam; /* parameters */
2055 int type; /* message type */
2056 int x; /* message x position */
2057 int y; /* message y position */
2058 unsigned int time; /* message time */
2059 unsigned int active_hooks; /* active hooks bitmap */
2060 data_size_t total; /* total size of extra data */
2061 VARARG(data,message_data); /* message data for sent messages */
2062 @END
2065 /* Reply to a sent message */
2066 @REQ(reply_message)
2067 int remove; /* should we remove the message? */
2068 lparam_t result; /* message result */
2069 VARARG(data,bytes); /* message data for sent messages */
2070 @END
2073 /* Accept and remove the current hardware message */
2074 @REQ(accept_hardware_message)
2075 unsigned int hw_id; /* id of the hardware message */
2076 @END
2079 /* Retrieve the reply for the last message sent */
2080 @REQ(get_message_reply)
2081 int cancel; /* cancel message if not ready? */
2082 @REPLY
2083 lparam_t result; /* message result */
2084 VARARG(data,bytes); /* message data for sent messages */
2085 @END
2088 /* Set a window timer */
2089 @REQ(set_win_timer)
2090 user_handle_t win; /* window handle */
2091 unsigned int msg; /* message to post */
2092 unsigned int rate; /* timer rate in ms */
2093 lparam_t id; /* timer id */
2094 lparam_t lparam; /* message lparam (callback proc) */
2095 @REPLY
2096 lparam_t id; /* timer id */
2097 @END
2100 /* Kill a window timer */
2101 @REQ(kill_win_timer)
2102 user_handle_t win; /* window handle */
2103 lparam_t id; /* timer id */
2104 unsigned int msg; /* message to post */
2105 @END
2108 /* check if the thread owning the window is hung */
2109 @REQ(is_window_hung)
2110 user_handle_t win; /* window handle */
2111 @REPLY
2112 int is_hung;
2113 @END
2116 /* Retrieve info about a serial port */
2117 @REQ(get_serial_info)
2118 obj_handle_t handle; /* handle to comm port */
2119 int flags;
2120 @REPLY
2121 unsigned int eventmask;
2122 unsigned int cookie;
2123 unsigned int pending_write;
2124 @END
2127 /* Set info about a serial port */
2128 @REQ(set_serial_info)
2129 obj_handle_t handle; /* handle to comm port */
2130 int flags; /* bitmask to set values (see below) */
2131 @END
2132 #define SERIALINFO_PENDING_WRITE 0x04
2133 #define SERIALINFO_PENDING_WAIT 0x08
2136 /* Create an async I/O */
2137 @REQ(register_async)
2138 int type; /* type of queue to look after */
2139 async_data_t async; /* async I/O parameters */
2140 int count; /* count - usually # of bytes to be read/written */
2141 @END
2142 #define ASYNC_TYPE_READ 0x01
2143 #define ASYNC_TYPE_WRITE 0x02
2144 #define ASYNC_TYPE_WAIT 0x03
2147 /* Cancel all async op on a fd */
2148 @REQ(cancel_async)
2149 obj_handle_t handle; /* handle to comm port, socket or file */
2150 client_ptr_t iosb; /* I/O status block (NULL=all) */
2151 int only_thread; /* cancel matching this thread */
2152 @END
2155 /* Retrieve results of an async */
2156 @REQ(get_async_result)
2157 client_ptr_t user_arg; /* user arg used to identify async */
2158 @REPLY
2159 data_size_t size; /* result size (input or output depending on the operation) */
2160 VARARG(out_data,bytes); /* iosb output data */
2161 @END
2164 /* Perform a read on a file object */
2165 @REQ(read)
2166 async_data_t async; /* async I/O parameters */
2167 file_pos_t pos; /* read position */
2168 @REPLY
2169 obj_handle_t wait; /* handle to wait on for blocking read */
2170 unsigned int options; /* device open options */
2171 VARARG(data,bytes); /* read data */
2172 @END
2175 /* Perform a write on a file object */
2176 @REQ(write)
2177 async_data_t async; /* async I/O parameters */
2178 file_pos_t pos; /* write position */
2179 VARARG(data,bytes); /* write data */
2180 @REPLY
2181 obj_handle_t wait; /* handle to wait on for blocking write */
2182 unsigned int options; /* device open options */
2183 data_size_t size; /* size written */
2184 @END
2187 /* Perform an ioctl on a file */
2188 @REQ(ioctl)
2189 ioctl_code_t code; /* ioctl code */
2190 async_data_t async; /* async I/O parameters */
2191 VARARG(in_data,bytes); /* ioctl input data */
2192 @REPLY
2193 obj_handle_t wait; /* handle to wait on for blocking ioctl */
2194 unsigned int options; /* device open options */
2195 VARARG(out_data,bytes); /* ioctl output data */
2196 @END
2199 /* Store results of an async irp */
2200 @REQ(set_irp_result)
2201 obj_handle_t handle; /* handle to the irp */
2202 unsigned int status; /* status of the irp */
2203 data_size_t size; /* result size (input or output depending on the operation) */
2204 VARARG(data,bytes); /* output data of the irp */
2205 @END
2208 /* Create a named pipe */
2209 @REQ(create_named_pipe)
2210 unsigned int access;
2211 unsigned int options;
2212 unsigned int sharing;
2213 unsigned int maxinstances;
2214 unsigned int outsize;
2215 unsigned int insize;
2216 timeout_t timeout;
2217 unsigned int flags;
2218 VARARG(objattr,object_attributes); /* object attributes */
2219 @REPLY
2220 obj_handle_t handle; /* handle to the pipe */
2221 @END
2223 /* flags in create_named_pipe and get_named_pipe_info */
2224 #define NAMED_PIPE_MESSAGE_STREAM_WRITE 0x0001
2225 #define NAMED_PIPE_MESSAGE_STREAM_READ 0x0002
2226 #define NAMED_PIPE_NONBLOCKING_MODE 0x0004
2227 #define NAMED_PIPE_SERVER_END 0x8000
2229 /* Set named pipe information by handle */
2230 @REQ(set_named_pipe_info)
2231 obj_handle_t handle;
2232 unsigned int flags;
2233 @END
2235 /* Create a window */
2236 @REQ(create_window)
2237 user_handle_t parent; /* parent window */
2238 user_handle_t owner; /* owner window */
2239 atom_t atom; /* class atom */
2240 mod_handle_t instance; /* module instance */
2241 int dpi; /* system DPI */
2242 int awareness; /* thread DPI awareness */
2243 VARARG(class,unicode_str); /* class name */
2244 @REPLY
2245 user_handle_t handle; /* created window */
2246 user_handle_t parent; /* full handle of parent */
2247 user_handle_t owner; /* full handle of owner */
2248 int extra; /* number of extra bytes */
2249 client_ptr_t class_ptr; /* pointer to class in client address space */
2250 int dpi; /* window DPI if not per-monitor aware */
2251 int awareness; /* window DPI awareness */
2252 @END
2255 /* Destroy a window */
2256 @REQ(destroy_window)
2257 user_handle_t handle; /* handle to the window */
2258 @END
2261 /* Retrieve the desktop window for the current thread */
2262 @REQ(get_desktop_window)
2263 int force; /* force creation if it doesn't exist */
2264 @REPLY
2265 user_handle_t top_window; /* handle to the desktop window */
2266 user_handle_t msg_window; /* handle to the top-level HWND_MESSAGE parent */
2267 @END
2270 /* Set a window owner */
2271 @REQ(set_window_owner)
2272 user_handle_t handle; /* handle to the window */
2273 user_handle_t owner; /* new owner */
2274 @REPLY
2275 user_handle_t full_owner; /* full handle of new owner */
2276 user_handle_t prev_owner; /* full handle of previous owner */
2277 @END
2280 /* Get information from a window handle */
2281 @REQ(get_window_info)
2282 user_handle_t handle; /* handle to the window */
2283 @REPLY
2284 user_handle_t full_handle; /* full 32-bit handle */
2285 user_handle_t last_active; /* last active popup */
2286 process_id_t pid; /* process owning the window */
2287 thread_id_t tid; /* thread owning the window */
2288 atom_t atom; /* class atom */
2289 int is_unicode; /* ANSI or unicode */
2290 int dpi; /* window DPI */
2291 int awareness; /* DPI awareness */
2292 @END
2295 /* Set some information in a window */
2296 @REQ(set_window_info)
2297 unsigned short flags; /* flags for fields to set (see below) */
2298 short int is_unicode; /* ANSI or unicode */
2299 user_handle_t handle; /* handle to the window */
2300 unsigned int style; /* window style */
2301 unsigned int ex_style; /* window extended style */
2302 unsigned int id; /* window id */
2303 mod_handle_t instance; /* creator instance */
2304 lparam_t user_data; /* user-specific data */
2305 int extra_offset; /* offset to set in extra bytes */
2306 data_size_t extra_size; /* size to set in extra bytes */
2307 lparam_t extra_value; /* value to set in extra bytes */
2308 @REPLY
2309 unsigned int old_style; /* old window style */
2310 unsigned int old_ex_style; /* old window extended style */
2311 mod_handle_t old_instance; /* old creator instance */
2312 lparam_t old_user_data; /* old user-specific data */
2313 lparam_t old_extra_value; /* old value in extra bytes */
2314 unsigned int old_id; /* old window id */
2315 @END
2316 #define SET_WIN_STYLE 0x01
2317 #define SET_WIN_EXSTYLE 0x02
2318 #define SET_WIN_ID 0x04
2319 #define SET_WIN_INSTANCE 0x08
2320 #define SET_WIN_USERDATA 0x10
2321 #define SET_WIN_EXTRA 0x20
2322 #define SET_WIN_UNICODE 0x40
2325 /* Set the parent of a window */
2326 @REQ(set_parent)
2327 user_handle_t handle; /* handle to the window */
2328 user_handle_t parent; /* handle to the parent */
2329 @REPLY
2330 user_handle_t old_parent; /* old parent window */
2331 user_handle_t full_parent; /* full handle of new parent */
2332 int dpi; /* new window DPI if not per-monitor aware */
2333 int awareness; /* new DPI awareness */
2334 @END
2337 /* Get a list of the window parents, up to the root of the tree */
2338 @REQ(get_window_parents)
2339 user_handle_t handle; /* handle to the window */
2340 @REPLY
2341 int count; /* total count of parents */
2342 VARARG(parents,user_handles); /* parent handles */
2343 @END
2346 /* Get a list of the window children */
2347 @REQ(get_window_children)
2348 obj_handle_t desktop; /* handle to desktop */
2349 user_handle_t parent; /* parent window */
2350 atom_t atom; /* class atom for the listed children */
2351 thread_id_t tid; /* thread owning the listed children */
2352 VARARG(class,unicode_str); /* class name */
2353 @REPLY
2354 int count; /* total count of children */
2355 VARARG(children,user_handles); /* children handles */
2356 @END
2359 /* Get a list of the window children that contain a given point */
2360 @REQ(get_window_children_from_point)
2361 user_handle_t parent; /* parent window */
2362 int x; /* point in parent coordinates */
2363 int y;
2364 int dpi; /* dpi for the point coordinates */
2365 @REPLY
2366 int count; /* total count of children */
2367 VARARG(children,user_handles); /* children handles */
2368 @END
2371 /* Get window tree information from a window handle */
2372 @REQ(get_window_tree)
2373 user_handle_t handle; /* handle to the window */
2374 @REPLY
2375 user_handle_t parent; /* parent window */
2376 user_handle_t owner; /* owner window */
2377 user_handle_t next_sibling; /* next sibling in Z-order */
2378 user_handle_t prev_sibling; /* prev sibling in Z-order */
2379 user_handle_t first_sibling; /* first sibling in Z-order */
2380 user_handle_t last_sibling; /* last sibling in Z-order */
2381 user_handle_t first_child; /* first child */
2382 user_handle_t last_child; /* last child */
2383 @END
2385 /* Set the position and Z order of a window */
2386 @REQ(set_window_pos)
2387 unsigned short swp_flags; /* SWP_* flags */
2388 unsigned short paint_flags; /* paint flags (see below) */
2389 user_handle_t handle; /* handle to the window */
2390 user_handle_t previous; /* previous window in Z order */
2391 rectangle_t window; /* window rectangle (in parent coords) */
2392 rectangle_t client; /* client rectangle (in parent coords) */
2393 VARARG(valid,rectangles); /* valid rectangles from WM_NCCALCSIZE (in parent coords) */
2394 @REPLY
2395 unsigned int new_style; /* new window style */
2396 unsigned int new_ex_style; /* new window extended style */
2397 user_handle_t surface_win; /* parent window that holds the surface */
2398 int needs_update; /* whether the surface region needs an update */
2399 @END
2400 #define SET_WINPOS_PAINT_SURFACE 0x01 /* window has a paintable surface */
2401 #define SET_WINPOS_PIXEL_FORMAT 0x02 /* window has a custom pixel format */
2403 /* Get the window and client rectangles of a window */
2404 @REQ(get_window_rectangles)
2405 user_handle_t handle; /* handle to the window */
2406 int relative; /* coords relative to (see below) */
2407 int dpi; /* DPI to map to, or zero for per-monitor DPI */
2408 @REPLY
2409 rectangle_t window; /* window rectangle */
2410 rectangle_t client; /* client rectangle */
2411 @END
2412 enum coords_relative
2414 COORDS_CLIENT, /* relative to client area */
2415 COORDS_WINDOW, /* relative to whole window area */
2416 COORDS_PARENT, /* relative to parent's client area */
2417 COORDS_SCREEN /* relative to screen origin */
2421 /* Get the window text */
2422 @REQ(get_window_text)
2423 user_handle_t handle; /* handle to the window */
2424 @REPLY
2425 data_size_t length; /* total length in WCHARs */
2426 VARARG(text,unicode_str); /* window text */
2427 @END
2430 /* Set the window text */
2431 @REQ(set_window_text)
2432 user_handle_t handle; /* handle to the window */
2433 VARARG(text,unicode_str); /* window text */
2434 @END
2437 /* Get the coordinates offset between two windows */
2438 @REQ(get_windows_offset)
2439 user_handle_t from; /* handle to the first window */
2440 user_handle_t to; /* handle to the second window */
2441 int dpi; /* DPI to map to, or zero for per-monitor DPI */
2442 @REPLY
2443 int x; /* x coordinate offset */
2444 int y; /* y coordinate offset */
2445 int mirror; /* whether to mirror the x coordinate */
2446 @END
2449 /* Get the visible region of a window */
2450 @REQ(get_visible_region)
2451 user_handle_t window; /* handle to the window */
2452 unsigned int flags; /* DCX flags */
2453 @REPLY
2454 user_handle_t top_win; /* top window to clip against */
2455 rectangle_t top_rect; /* top window visible rect with screen coords */
2456 rectangle_t win_rect; /* window rect in screen coords */
2457 unsigned int paint_flags; /* paint flags (from SET_WINPOS_* flags) */
2458 data_size_t total_size; /* total size of the resulting region */
2459 VARARG(region,rectangles); /* list of rectangles for the region (in screen coords) */
2460 @END
2463 /* Get the visible surface region of a window */
2464 @REQ(get_surface_region)
2465 user_handle_t window; /* handle to the window */
2466 @REPLY
2467 rectangle_t visible_rect; /* window visible rect in screen coords */
2468 data_size_t total_size; /* total size of the resulting region */
2469 VARARG(region,rectangles); /* list of rectangles for the region (in screen coords) */
2470 @END
2473 /* Get the window region */
2474 @REQ(get_window_region)
2475 user_handle_t window; /* handle to the window */
2476 @REPLY
2477 data_size_t total_size; /* total size of the resulting region */
2478 VARARG(region,rectangles); /* list of rectangles for the region (in window coords) */
2479 @END
2482 /* Set the window region */
2483 @REQ(set_window_region)
2484 user_handle_t window; /* handle to the window */
2485 int redraw; /* redraw the window? */
2486 VARARG(region,rectangles); /* list of rectangles for the region (in window coords) */
2487 @END
2490 /* Get the window update region */
2491 @REQ(get_update_region)
2492 user_handle_t window; /* handle to the window */
2493 user_handle_t from_child; /* child to start searching from */
2494 unsigned int flags; /* update flags (see below) */
2495 @REPLY
2496 user_handle_t child; /* child to repaint (or window itself) */
2497 unsigned int flags; /* resulting update flags (see below) */
2498 data_size_t total_size; /* total size of the resulting region */
2499 VARARG(region,rectangles); /* list of rectangles for the region (in screen coords) */
2500 @END
2501 #define UPDATE_NONCLIENT 0x001 /* get region for repainting non-client area */
2502 #define UPDATE_ERASE 0x002 /* get region for erasing client area */
2503 #define UPDATE_PAINT 0x004 /* get region for painting client area */
2504 #define UPDATE_INTERNALPAINT 0x008 /* get region if internal paint is pending */
2505 #define UPDATE_ALLCHILDREN 0x010 /* force repaint of all children */
2506 #define UPDATE_NOCHILDREN 0x020 /* don't try to repaint any children */
2507 #define UPDATE_NOREGION 0x040 /* don't return a region, only the flags */
2508 #define UPDATE_DELAYED_ERASE 0x080 /* still needs erase after BeginPaint */
2509 #define UPDATE_CLIPCHILDREN 0x100 /* remove clipped children from the update region */
2512 /* Update the z order of a window so that a given rectangle is fully visible */
2513 @REQ(update_window_zorder)
2514 user_handle_t window; /* handle to the window */
2515 rectangle_t rect; /* rectangle that must be visible (in client coords) */
2516 @END
2519 /* Mark parts of a window as needing a redraw */
2520 @REQ(redraw_window)
2521 user_handle_t window; /* handle to the window */
2522 unsigned int flags; /* RDW_* flags */
2523 VARARG(region,rectangles); /* list of rectangles for the region (in window coords) */
2524 @END
2527 /* Set a window property */
2528 @REQ(set_window_property)
2529 user_handle_t window; /* handle to the window */
2530 lparam_t data; /* data to store */
2531 atom_t atom; /* property atom (if no name specified) */
2532 VARARG(name,unicode_str); /* property name */
2533 @END
2536 /* Remove a window property */
2537 @REQ(remove_window_property)
2538 user_handle_t window; /* handle to the window */
2539 atom_t atom; /* property atom (if no name specified) */
2540 VARARG(name,unicode_str); /* property name */
2541 @REPLY
2542 lparam_t data; /* data stored in property */
2543 @END
2546 /* Get a window property */
2547 @REQ(get_window_property)
2548 user_handle_t window; /* handle to the window */
2549 atom_t atom; /* property atom (if no name specified) */
2550 VARARG(name,unicode_str); /* property name */
2551 @REPLY
2552 lparam_t data; /* data stored in property */
2553 @END
2556 /* Get the list of properties of a window */
2557 @REQ(get_window_properties)
2558 user_handle_t window; /* handle to the window */
2559 @REPLY
2560 int total; /* total number of properties */
2561 VARARG(props,properties); /* list of properties */
2562 @END
2565 /* Create a window station */
2566 @REQ(create_winstation)
2567 unsigned int flags; /* window station flags */
2568 unsigned int access; /* wanted access rights */
2569 unsigned int attributes; /* object attributes */
2570 obj_handle_t rootdir; /* root directory */
2571 VARARG(name,unicode_str); /* object name */
2572 @REPLY
2573 obj_handle_t handle; /* handle to the window station */
2574 @END
2577 /* Open a handle to a window station */
2578 @REQ(open_winstation)
2579 unsigned int access; /* wanted access rights */
2580 unsigned int attributes; /* object attributes */
2581 obj_handle_t rootdir; /* root directory */
2582 VARARG(name,unicode_str); /* object name */
2583 @REPLY
2584 obj_handle_t handle; /* handle to the window station */
2585 @END
2588 /* Close a window station */
2589 @REQ(close_winstation)
2590 obj_handle_t handle; /* handle to the window station */
2591 @END
2594 /* Get the process current window station */
2595 @REQ(get_process_winstation)
2596 @REPLY
2597 obj_handle_t handle; /* handle to the window station */
2598 @END
2601 /* Set the process current window station */
2602 @REQ(set_process_winstation)
2603 obj_handle_t handle; /* handle to the window station */
2604 @END
2607 /* Enumerate window stations */
2608 @REQ(enum_winstation)
2609 unsigned int index; /* current index */
2610 @REPLY
2611 unsigned int next; /* next index */
2612 VARARG(name,unicode_str); /* window station name */
2613 @END
2616 /* Create a desktop */
2617 @REQ(create_desktop)
2618 unsigned int flags; /* desktop flags */
2619 unsigned int access; /* wanted access rights */
2620 unsigned int attributes; /* object attributes */
2621 VARARG(name,unicode_str); /* object name */
2622 @REPLY
2623 obj_handle_t handle; /* handle to the desktop */
2624 @END
2627 /* Open a handle to a desktop */
2628 @REQ(open_desktop)
2629 obj_handle_t winsta; /* window station to open (null allowed) */
2630 unsigned int flags; /* desktop flags */
2631 unsigned int access; /* wanted access rights */
2632 unsigned int attributes; /* object attributes */
2633 VARARG(name,unicode_str); /* object name */
2634 @REPLY
2635 obj_handle_t handle; /* handle to the desktop */
2636 @END
2639 /* Open a handle to current input desktop */
2640 @REQ(open_input_desktop)
2641 unsigned int flags; /* desktop flags */
2642 unsigned int access; /* wanted access rights */
2643 unsigned int attributes; /* object attributes */
2644 @REPLY
2645 obj_handle_t handle; /* handle to the desktop */
2646 @END
2649 /* Close a desktop */
2650 @REQ(close_desktop)
2651 obj_handle_t handle; /* handle to the desktop */
2652 @END
2655 /* Get the thread current desktop */
2656 @REQ(get_thread_desktop)
2657 thread_id_t tid; /* thread id */
2658 @REPLY
2659 obj_handle_t handle; /* handle to the desktop */
2660 @END
2663 /* Set the thread current desktop */
2664 @REQ(set_thread_desktop)
2665 obj_handle_t handle; /* handle to the desktop */
2666 @END
2669 /* Enumerate desktops */
2670 @REQ(enum_desktop)
2671 obj_handle_t winstation; /* handle to the window station */
2672 unsigned int index; /* current index */
2673 @REPLY
2674 unsigned int next; /* next index */
2675 VARARG(name,unicode_str); /* window station name */
2676 @END
2679 /* Get/set information about a user object (window station or desktop) */
2680 @REQ(set_user_object_info)
2681 obj_handle_t handle; /* handle to the object */
2682 unsigned int flags; /* information to set/get */
2683 unsigned int obj_flags; /* new object flags */
2684 @REPLY
2685 int is_desktop; /* is object a desktop? */
2686 unsigned int old_obj_flags; /* old object flags */
2687 VARARG(name,unicode_str); /* object name */
2688 @END
2689 #define SET_USER_OBJECT_SET_FLAGS 1
2690 #define SET_USER_OBJECT_GET_FULL_NAME 2
2693 /* Register a hotkey */
2694 @REQ(register_hotkey)
2695 user_handle_t window; /* handle to the window */
2696 int id; /* hotkey identifier */
2697 unsigned int flags; /* modifier keys */
2698 unsigned int vkey; /* virtual key code */
2699 @REPLY
2700 int replaced; /* did we replace an existing hotkey? */
2701 unsigned int flags; /* flags of replaced hotkey */
2702 unsigned int vkey; /* virtual key code of replaced hotkey */
2703 @END
2706 /* Unregister a hotkey */
2707 @REQ(unregister_hotkey)
2708 user_handle_t window; /* handle to the window */
2709 int id; /* hotkey identifier */
2710 @REPLY
2711 unsigned int flags; /* flags of removed hotkey */
2712 unsigned int vkey; /* virtual key code of removed hotkey */
2713 @END
2716 /* Attach (or detach) thread inputs */
2717 @REQ(attach_thread_input)
2718 thread_id_t tid_from; /* thread to be attached */
2719 thread_id_t tid_to; /* thread to which tid_from should be attached */
2720 int attach; /* is it an attach? */
2721 @END
2724 /* Get input data for a given thread */
2725 @REQ(get_thread_input)
2726 thread_id_t tid; /* id of thread */
2727 @REPLY
2728 user_handle_t focus; /* handle to the focus window */
2729 user_handle_t capture; /* handle to the capture window */
2730 user_handle_t active; /* handle to the active window */
2731 user_handle_t foreground; /* handle to the global foreground window */
2732 user_handle_t menu_owner; /* handle to the menu owner */
2733 user_handle_t move_size; /* handle to the moving/resizing window */
2734 user_handle_t caret; /* handle to the caret window */
2735 user_handle_t cursor; /* handle to the cursor */
2736 int show_count; /* cursor show count */
2737 rectangle_t rect; /* caret rectangle */
2738 @END
2741 /* Get the time of the last input event */
2742 @REQ(get_last_input_time)
2743 @REPLY
2744 unsigned int time;
2745 @END
2748 /* Retrieve queue keyboard state for current thread or global async state */
2749 @REQ(get_key_state)
2750 int async; /* whether to query the async state */
2751 int key; /* optional key code or -1 */
2752 @REPLY
2753 unsigned char state; /* state of specified key */
2754 VARARG(keystate,bytes); /* state array for all the keys */
2755 @END
2757 /* Set queue keyboard state for current thread */
2758 @REQ(set_key_state)
2759 int async; /* whether to change the async state too */
2760 VARARG(keystate,bytes); /* state array for all the keys */
2761 @END
2763 /* Set the system foreground window */
2764 @REQ(set_foreground_window)
2765 user_handle_t handle; /* handle to the foreground window */
2766 @REPLY
2767 user_handle_t previous; /* handle to the previous foreground window */
2768 int send_msg_old; /* whether we have to send a msg to the old window */
2769 int send_msg_new; /* whether we have to send a msg to the new window */
2770 @END
2772 /* Set the current thread focus window */
2773 @REQ(set_focus_window)
2774 user_handle_t handle; /* handle to the focus window */
2775 @REPLY
2776 user_handle_t previous; /* handle to the previous focus window */
2777 @END
2779 /* Set the current thread active window */
2780 @REQ(set_active_window)
2781 user_handle_t handle; /* handle to the active window */
2782 @REPLY
2783 user_handle_t previous; /* handle to the previous active window */
2784 @END
2786 /* Set the current thread capture window */
2787 @REQ(set_capture_window)
2788 user_handle_t handle; /* handle to the capture window */
2789 unsigned int flags; /* capture flags (see below) */
2790 @REPLY
2791 user_handle_t previous; /* handle to the previous capture window */
2792 user_handle_t full_handle; /* full 32-bit handle of new capture window */
2793 @END
2794 #define CAPTURE_MENU 0x01 /* capture is for a menu */
2795 #define CAPTURE_MOVESIZE 0x02 /* capture is for moving/resizing */
2798 /* Set the current thread caret window */
2799 @REQ(set_caret_window)
2800 user_handle_t handle; /* handle to the caret window */
2801 int width; /* caret width */
2802 int height; /* caret height */
2803 @REPLY
2804 user_handle_t previous; /* handle to the previous caret window */
2805 rectangle_t old_rect; /* previous caret rectangle */
2806 int old_hide; /* previous hide count */
2807 int old_state; /* previous caret state (1=on, 0=off) */
2808 @END
2811 /* Set the current thread caret information */
2812 @REQ(set_caret_info)
2813 unsigned int flags; /* caret flags (see below) */
2814 user_handle_t handle; /* handle to the caret window */
2815 int x; /* caret x position */
2816 int y; /* caret y position */
2817 int hide; /* increment for hide count (can be negative to show it) */
2818 int state; /* caret state (see below) */
2819 @REPLY
2820 user_handle_t full_handle; /* handle to the current caret window */
2821 rectangle_t old_rect; /* previous caret rectangle */
2822 int old_hide; /* previous hide count */
2823 int old_state; /* previous caret state (1=on, 0=off) */
2824 @END
2825 #define SET_CARET_POS 0x01 /* set the caret position from x,y */
2826 #define SET_CARET_HIDE 0x02 /* increment the caret hide count */
2827 #define SET_CARET_STATE 0x04 /* set the caret on/off state */
2828 enum caret_state
2830 CARET_STATE_OFF, /* off */
2831 CARET_STATE_ON, /* on */
2832 CARET_STATE_TOGGLE, /* toggle current state */
2833 CARET_STATE_ON_IF_MOVED /* on if the position differs, unchanged otherwise */
2837 /* Set a window hook */
2838 @REQ(set_hook)
2839 int id; /* id of the hook */
2840 process_id_t pid; /* id of process to set the hook into */
2841 thread_id_t tid; /* id of thread to set the hook into */
2842 int event_min;
2843 int event_max;
2844 client_ptr_t proc; /* hook procedure */
2845 int flags;
2846 int unicode; /* is it a unicode hook? */
2847 VARARG(module,unicode_str); /* module name */
2848 @REPLY
2849 user_handle_t handle; /* handle to the hook */
2850 unsigned int active_hooks; /* active hooks bitmap */
2851 @END
2854 /* Remove a window hook */
2855 @REQ(remove_hook)
2856 user_handle_t handle; /* handle to the hook */
2857 client_ptr_t proc; /* hook procedure if handle is 0 */
2858 int id; /* id of the hook if handle is 0 */
2859 @REPLY
2860 unsigned int active_hooks; /* active hooks bitmap */
2861 @END
2864 /* Start calling a hook chain */
2865 @REQ(start_hook_chain)
2866 int id; /* id of the hook */
2867 int event; /* signalled event */
2868 user_handle_t window; /* handle to the event window */
2869 int object_id; /* object id for out of context winevent */
2870 int child_id; /* child id for out of context winevent */
2871 @REPLY
2872 user_handle_t handle; /* handle to the next hook */
2873 process_id_t pid; /* process id for low-level keyboard/mouse hooks */
2874 thread_id_t tid; /* thread id for low-level keyboard/mouse hooks */
2875 int unicode; /* is it a unicode hook? */
2876 client_ptr_t proc; /* hook procedure */
2877 unsigned int active_hooks; /* active hooks bitmap */
2878 VARARG(module,unicode_str); /* module name */
2879 @END
2882 /* Finished calling a hook chain */
2883 @REQ(finish_hook_chain)
2884 int id; /* id of the hook */
2885 @END
2888 /* Get the hook information */
2889 @REQ(get_hook_info)
2890 user_handle_t handle; /* handle to the current hook */
2891 int get_next; /* do we want info about current or next hook? */
2892 int event; /* signalled event */
2893 user_handle_t window; /* handle to the event window */
2894 int object_id; /* object id for out of context winevent */
2895 int child_id; /* child id for out of context winevent */
2896 @REPLY
2897 user_handle_t handle; /* handle to the hook */
2898 int id; /* id of the hook */
2899 process_id_t pid; /* process id for low-level keyboard/mouse hooks */
2900 thread_id_t tid; /* thread id for low-level keyboard/mouse hooks */
2901 client_ptr_t proc; /* hook procedure */
2902 int unicode; /* is it a unicode hook? */
2903 VARARG(module,unicode_str); /* module name */
2904 @END
2907 /* Create a window class */
2908 @REQ(create_class)
2909 int local; /* is it a local class? */
2910 atom_t atom; /* class atom */
2911 unsigned int style; /* class style */
2912 mod_handle_t instance; /* module instance */
2913 int extra; /* number of extra class bytes */
2914 int win_extra; /* number of window extra bytes */
2915 client_ptr_t client_ptr; /* pointer to class in client address space */
2916 data_size_t name_offset; /* base class name offset for specified atom */
2917 VARARG(name,unicode_str); /* class name */
2918 @REPLY
2919 atom_t atom; /* resulting class atom */
2920 @END
2923 /* Destroy a window class */
2924 @REQ(destroy_class)
2925 atom_t atom; /* class atom */
2926 mod_handle_t instance; /* module instance */
2927 VARARG(name,unicode_str); /* class name */
2928 @REPLY
2929 client_ptr_t client_ptr; /* pointer to class in client address space */
2930 @END
2933 /* Set some information in a class */
2934 @REQ(set_class_info)
2935 user_handle_t window; /* handle to the window */
2936 unsigned int flags; /* flags for info to set (see below) */
2937 atom_t atom; /* class atom */
2938 unsigned int style; /* class style */
2939 int win_extra; /* number of window extra bytes */
2940 mod_handle_t instance; /* module instance */
2941 int extra_offset; /* offset to set in extra bytes */
2942 data_size_t extra_size; /* size to set in extra bytes */
2943 lparam_t extra_value; /* value to set in extra bytes */
2944 @REPLY
2945 atom_t old_atom; /* previous class atom */
2946 atom_t base_atom; /* base class atom */
2947 mod_handle_t old_instance; /* previous module instance */
2948 lparam_t old_extra_value; /* old value in extra bytes */
2949 unsigned int old_style; /* previous class style */
2950 int old_extra; /* previous number of class extra bytes */
2951 int old_win_extra; /* previous number of window extra bytes */
2952 @END
2953 #define SET_CLASS_ATOM 0x0001
2954 #define SET_CLASS_STYLE 0x0002
2955 #define SET_CLASS_WINEXTRA 0x0004
2956 #define SET_CLASS_INSTANCE 0x0008
2957 #define SET_CLASS_EXTRA 0x0010
2960 /* Open the clipboard */
2961 @REQ(open_clipboard)
2962 user_handle_t window; /* clipboard window */
2963 @REPLY
2964 user_handle_t owner; /* current clipboard owner */
2965 @END
2968 /* Close the clipboard */
2969 @REQ(close_clipboard)
2970 @REPLY
2971 user_handle_t viewer; /* first clipboard viewer */
2972 user_handle_t owner; /* current clipboard owner */
2973 @END
2976 /* Empty the clipboard and grab ownership */
2977 @REQ(empty_clipboard)
2978 @END
2981 /* Add a data format to the clipboard */
2982 @REQ(set_clipboard_data)
2983 unsigned int format; /* clipboard format of the data */
2984 unsigned int lcid; /* locale id to use for synthesizing text formats */
2985 VARARG(data,bytes); /* data contents */
2986 @REPLY
2987 unsigned int seqno; /* sequence number for the set data */
2988 @END
2991 /* Fetch a data format from the clipboard */
2992 @REQ(get_clipboard_data)
2993 unsigned int format; /* clipboard format of the data */
2994 int render; /* will we try to render it if missing? */
2995 int cached; /* do we already have it in the client-side cache? */
2996 unsigned int seqno; /* sequence number for the data in the cache */
2997 @REPLY
2998 unsigned int from; /* for synthesized data, format to generate it from */
2999 user_handle_t owner; /* clipboard owner for delayed-rendered formats */
3000 unsigned int seqno; /* sequence number for the originally set data */
3001 data_size_t total; /* total data size */
3002 VARARG(data,bytes); /* data contents */
3003 @END
3006 /* Retrieve a list of available formats */
3007 @REQ(get_clipboard_formats)
3008 unsigned int format; /* specific format to query, return all if 0 */
3009 @REPLY
3010 unsigned int count; /* count of available formats */
3011 VARARG(formats,uints); /* array of available formats */
3012 @END
3015 /* Retrieve the next available format */
3016 @REQ(enum_clipboard_formats)
3017 unsigned int previous; /* previous format, or first if 0 */
3018 @REPLY
3019 unsigned int format; /* next format */
3020 @END
3023 /* Release ownership of the clipboard */
3024 @REQ(release_clipboard)
3025 user_handle_t owner; /* clipboard owner to release */
3026 @REPLY
3027 user_handle_t viewer; /* first clipboard viewer */
3028 user_handle_t owner; /* current clipboard owner */
3029 @END
3032 /* Get clipboard information */
3033 @REQ(get_clipboard_info)
3034 @REPLY
3035 user_handle_t window; /* clipboard window */
3036 user_handle_t owner; /* clipboard owner */
3037 user_handle_t viewer; /* clipboard viewer */
3038 unsigned int seqno; /* current sequence number */
3039 @END
3042 /* Set the clipboard viewer window */
3043 @REQ(set_clipboard_viewer)
3044 user_handle_t viewer; /* clipboard viewer */
3045 user_handle_t previous; /* if non-zero, check that this was the previous viewer */
3046 @REPLY
3047 user_handle_t old_viewer; /* previous clipboard viewer */
3048 user_handle_t owner; /* clipboard owner */
3049 @END
3052 /* Add a clipboard listener window */
3053 @REQ(add_clipboard_listener)
3054 user_handle_t window; /* clipboard listener window */
3055 @END
3058 /* Remove a clipboard listener window */
3059 @REQ(remove_clipboard_listener)
3060 user_handle_t window; /* clipboard listener window */
3061 @END
3064 /* Open a security token */
3065 @REQ(open_token)
3066 obj_handle_t handle; /* handle to the thread or process */
3067 unsigned int access; /* access rights to the new token */
3068 unsigned int attributes;/* object attributes */
3069 unsigned int flags; /* flags (see below) */
3070 @REPLY
3071 obj_handle_t token; /* handle to the token */
3072 @END
3073 #define OPEN_TOKEN_THREAD 1
3074 #define OPEN_TOKEN_AS_SELF 2
3077 /* Set/get the global windows */
3078 @REQ(set_global_windows)
3079 unsigned int flags; /* flags for fields to set (see below) */
3080 user_handle_t shell_window; /* handle to the new shell window */
3081 user_handle_t shell_listview; /* handle to the new shell listview window */
3082 user_handle_t progman_window; /* handle to the new program manager window */
3083 user_handle_t taskman_window; /* handle to the new task manager window */
3084 @REPLY
3085 user_handle_t old_shell_window; /* handle to the shell window */
3086 user_handle_t old_shell_listview; /* handle to the shell listview window */
3087 user_handle_t old_progman_window; /* handle to the new program manager window */
3088 user_handle_t old_taskman_window; /* handle to the new task manager window */
3089 @END
3090 #define SET_GLOBAL_SHELL_WINDOWS 0x01 /* set both main shell and listview windows */
3091 #define SET_GLOBAL_PROGMAN_WINDOW 0x02
3092 #define SET_GLOBAL_TASKMAN_WINDOW 0x04
3094 /* Adjust the privileges held by a token */
3095 @REQ(adjust_token_privileges)
3096 obj_handle_t handle; /* handle to the token */
3097 int disable_all; /* disable all privileges? */
3098 int get_modified_state; /* get modified privileges? */
3099 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges to enable/disable/remove */
3100 @REPLY
3101 unsigned int len; /* total length in bytes required to store token privileges */
3102 VARARG(privileges,LUID_AND_ATTRIBUTES); /* modified privileges */
3103 @END
3105 /* Retrieves the set of privileges held by or available to a token */
3106 @REQ(get_token_privileges)
3107 obj_handle_t handle; /* handle to the token */
3108 @REPLY
3109 unsigned int len; /* total length in bytes required to store token privileges */
3110 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges held by or available to a token */
3111 @END
3113 /* Check the token has the required privileges */
3114 @REQ(check_token_privileges)
3115 obj_handle_t handle; /* handle to the token */
3116 int all_required; /* are all the privileges required for the check to succeed? */
3117 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges to check */
3118 @REPLY
3119 int has_privileges; /* does the token have the required privileges? */
3120 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges held by or available to a token */
3121 @END
3123 @REQ(duplicate_token)
3124 obj_handle_t handle; /* handle to the token to duplicate */
3125 unsigned int access; /* access rights to the new token */
3126 int primary; /* is the new token to be a primary one? */
3127 int impersonation_level; /* impersonation level of the new token */
3128 VARARG(objattr,object_attributes); /* object attributes */
3129 @REPLY
3130 obj_handle_t new_handle; /* duplicated handle */
3131 @END
3133 @REQ(filter_token)
3134 obj_handle_t handle; /* handle to the token to duplicate */
3135 unsigned int flags; /* flags */
3136 data_size_t privileges_size; /* size of privileges */
3137 VARARG(privileges,LUID_AND_ATTRIBUTES,privileges_size); /* privileges to remove from new token */
3138 VARARG(disable_sids,SID); /* array of groups to remove from new token */
3139 @REPLY
3140 obj_handle_t new_handle; /* filtered handle */
3141 @END
3143 @REQ(access_check)
3144 obj_handle_t handle; /* handle to the token */
3145 unsigned int desired_access; /* desired access to the object */
3146 generic_map_t mapping; /* mapping to specific rights */
3147 VARARG(sd,security_descriptor); /* security descriptor to check */
3148 @REPLY
3149 unsigned int access_granted; /* access rights actually granted */
3150 unsigned int access_status; /* was access granted? */
3151 unsigned int privileges_len; /* length needed to store privileges */
3152 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges used during access check */
3153 @END
3155 @REQ(get_token_sid)
3156 obj_handle_t handle; /* handle to the token */
3157 unsigned int which_sid; /* which SID to retrieve from the token */
3158 @REPLY
3159 data_size_t sid_len; /* length needed to store sid */
3160 VARARG(sid,SID); /* the sid specified by which_sid from the token */
3161 @END
3163 @REQ(get_token_groups)
3164 obj_handle_t handle; /* handle to the token */
3165 @REPLY
3166 data_size_t user_len; /* length needed to store user */
3167 VARARG(user,token_groups); /* groups the token's user belongs to */
3168 @END
3170 @REQ(get_token_default_dacl)
3171 obj_handle_t handle; /* handle to the token */
3172 @REPLY
3173 data_size_t acl_len; /* length needed to store access control list */
3174 VARARG(acl,ACL); /* access control list */
3175 @END
3177 @REQ(set_token_default_dacl)
3178 obj_handle_t handle; /* handle to the token */
3179 VARARG(acl,ACL); /* default dacl to set */
3180 @END
3182 @REQ(set_security_object)
3183 obj_handle_t handle; /* handle to the object */
3184 unsigned int security_info; /* which parts of security descriptor to set */
3185 VARARG(sd,security_descriptor); /* security descriptor to set */
3186 @END
3188 @REQ(get_security_object)
3189 obj_handle_t handle; /* handle to the object */
3190 unsigned int security_info; /* which parts of security descriptor to get */
3191 @REPLY
3192 unsigned int sd_len; /* buffer size needed for sd */
3193 VARARG(sd,security_descriptor); /* retrieved security descriptor */
3194 @END
3197 struct handle_info
3199 process_id_t owner;
3200 obj_handle_t handle;
3201 unsigned int access;
3202 unsigned int attributes;
3203 unsigned int type;
3206 /* Return a list of all opened handles */
3207 @REQ(get_system_handles)
3208 @REPLY
3209 unsigned int count; /* number of handles */
3210 VARARG(data,handle_infos); /* array of handle_infos */
3211 @END
3214 /* Create a mailslot */
3215 @REQ(create_mailslot)
3216 unsigned int access; /* wanted access rights */
3217 timeout_t read_timeout;
3218 unsigned int max_msgsize;
3219 VARARG(objattr,object_attributes); /* object attributes */
3220 @REPLY
3221 obj_handle_t handle; /* handle to the mailslot */
3222 @END
3225 /* Set mailslot information */
3226 @REQ(set_mailslot_info)
3227 obj_handle_t handle; /* handle to the mailslot */
3228 timeout_t read_timeout;
3229 unsigned int flags;
3230 @REPLY
3231 timeout_t read_timeout;
3232 unsigned int max_msgsize;
3233 @END
3234 #define MAILSLOT_SET_READ_TIMEOUT 1
3237 /* Create a directory object */
3238 @REQ(create_directory)
3239 unsigned int access; /* access flags */
3240 VARARG(objattr,object_attributes); /* object attributes */
3241 @REPLY
3242 obj_handle_t handle; /* handle to the directory */
3243 @END
3246 /* Open a directory object */
3247 @REQ(open_directory)
3248 unsigned int access; /* access flags */
3249 unsigned int attributes; /* object attributes */
3250 obj_handle_t rootdir; /* root directory */
3251 VARARG(directory_name,unicode_str); /* Directory name */
3252 @REPLY
3253 obj_handle_t handle; /* handle to the directory */
3254 @END
3257 /* Get a directory entry by index */
3258 @REQ(get_directory_entry)
3259 obj_handle_t handle; /* handle to the directory */
3260 unsigned int index; /* entry index */
3261 @REPLY
3262 data_size_t name_len; /* length of the entry name in bytes */
3263 VARARG(name,unicode_str,name_len); /* entry name */
3264 VARARG(type,unicode_str); /* entry type */
3265 @END
3268 /* Create a symbolic link object */
3269 @REQ(create_symlink)
3270 unsigned int access; /* access flags */
3271 VARARG(objattr,object_attributes); /* object attributes */
3272 VARARG(target_name,unicode_str); /* target name */
3273 @REPLY
3274 obj_handle_t handle; /* handle to the symlink */
3275 @END
3278 /* Open a symbolic link object */
3279 @REQ(open_symlink)
3280 unsigned int access; /* access flags */
3281 unsigned int attributes; /* object attributes */
3282 obj_handle_t rootdir; /* root directory */
3283 VARARG(name,unicode_str); /* symlink name */
3284 @REPLY
3285 obj_handle_t handle; /* handle to the symlink */
3286 @END
3289 /* Query a symbolic link object */
3290 @REQ(query_symlink)
3291 obj_handle_t handle; /* handle to the symlink */
3292 @REPLY
3293 data_size_t total; /* total needed size for name */
3294 VARARG(target_name,unicode_str); /* target name */
3295 @END
3298 /* Query basic object information */
3299 @REQ(get_object_info)
3300 obj_handle_t handle; /* handle to the object */
3301 @REPLY
3302 unsigned int access; /* granted access mask */
3303 unsigned int ref_count; /* object ref count */
3304 unsigned int handle_count; /* object handle count */
3305 @END
3308 /* Query the full name of an object */
3309 @REQ(get_object_name)
3310 obj_handle_t handle; /* handle to the object */
3311 @REPLY
3312 data_size_t total; /* total needed size for name */
3313 VARARG(name,unicode_str); /* object name */
3314 @END
3317 /* Query object type name information */
3318 @REQ(get_object_type)
3319 obj_handle_t handle; /* handle to the object */
3320 @REPLY
3321 VARARG(info,object_type_info); /* type information */
3322 @END
3325 /* Query type information for all types */
3326 @REQ(get_object_types)
3327 @REPLY
3328 int count; /* total count of object types */
3329 VARARG(info,object_types_info); /* type information */
3330 @END
3333 /* Allocate a locally-unique identifier */
3334 @REQ(allocate_locally_unique_id)
3335 @REPLY
3336 luid_t luid;
3337 @END
3340 /* Create a device manager */
3341 @REQ(create_device_manager)
3342 unsigned int access; /* wanted access rights */
3343 unsigned int attributes; /* object attributes */
3344 @REPLY
3345 obj_handle_t handle; /* handle to the device */
3346 @END
3349 /* Create a device */
3350 @REQ(create_device)
3351 obj_handle_t rootdir; /* root directory */
3352 client_ptr_t user_ptr; /* opaque ptr for use by client */
3353 obj_handle_t manager; /* device manager */
3354 VARARG(name,unicode_str); /* object name */
3355 @END
3358 /* Delete a device */
3359 @REQ(delete_device)
3360 obj_handle_t manager; /* handle to the device manager */
3361 client_ptr_t device; /* pointer to the device */
3362 @END
3365 /* Retrieve the next pending device irp request */
3366 @REQ(get_next_device_request)
3367 obj_handle_t manager; /* handle to the device manager */
3368 obj_handle_t prev; /* handle to the previous irp */
3369 unsigned int status; /* status of the previous irp */
3370 client_ptr_t user_ptr; /* user pointer of the previous irp */
3371 @REPLY
3372 irp_params_t params; /* irp parameters */
3373 obj_handle_t next; /* handle to the next irp */
3374 thread_id_t client_tid; /* tid of thread calling irp */
3375 client_ptr_t client_thread; /* pointer to thread object of calling irp */
3376 data_size_t in_size; /* total needed input size */
3377 VARARG(next_data,bytes); /* input data of the next irp */
3378 @END
3381 /* Get kernel pointer from server object */
3382 @REQ(get_kernel_object_ptr)
3383 obj_handle_t manager; /* handle to the device manager */
3384 obj_handle_t handle; /* object handle */
3385 @REPLY
3386 client_ptr_t user_ptr; /* kernel object pointer */
3387 @END
3390 /* Associate kernel pointer with server object */
3391 @REQ(set_kernel_object_ptr)
3392 obj_handle_t manager; /* handle to the device manager */
3393 obj_handle_t handle; /* object handle */
3394 client_ptr_t user_ptr; /* kernel object pointer */
3395 @END
3398 /* Grab server object reference from kernel object pointer */
3399 @REQ(grab_kernel_object)
3400 obj_handle_t manager; /* handle to the device manager */
3401 client_ptr_t user_ptr; /* kernel object pointer */
3402 @END
3405 /* Release server object reference from kernel object pointer */
3406 @REQ(release_kernel_object)
3407 obj_handle_t manager; /* handle to the device manager */
3408 client_ptr_t user_ptr; /* kernel object pointer */
3409 @END
3412 /* Get handle from kernel object pointer */
3413 @REQ(get_kernel_object_handle)
3414 obj_handle_t manager; /* handle to the device manager */
3415 client_ptr_t user_ptr; /* kernel object pointer */
3416 unsigned int access; /* wanted access rights */
3417 @REPLY
3418 obj_handle_t handle; /* kernel object handle */
3419 @END
3422 /* Make the current process a system process */
3423 @REQ(make_process_system)
3424 obj_handle_t handle; /* handle to the process */
3425 @REPLY
3426 obj_handle_t event; /* event signaled when all user processes have exited */
3427 @END
3430 /* Get detailed fixed-size information about a token */
3431 @REQ(get_token_info)
3432 obj_handle_t handle; /* handle to the object */
3433 @REPLY
3434 luid_t token_id; /* locally-unique identifier of the token */
3435 luid_t modified_id; /* locally-unique identifier of the modified version of the token */
3436 unsigned int session_id; /* token session id */
3437 int primary; /* is the token primary or impersonation? */
3438 int impersonation_level; /* level of impersonation */
3439 int elevation; /* elevation type */
3440 int group_count; /* the number of groups the token is a member of */
3441 int privilege_count; /* the number of privileges the token has */
3442 @END
3445 /* Create a token which is an elevation counterpart to this token */
3446 @REQ(create_linked_token)
3447 obj_handle_t handle; /* handle to the token */
3448 @REPLY
3449 obj_handle_t linked; /* handle to the linked token */
3450 @END
3453 /* Create I/O completion port */
3454 @REQ(create_completion)
3455 unsigned int access; /* desired access to a port */
3456 unsigned int concurrent; /* max number of concurrent active threads */
3457 VARARG(objattr,object_attributes); /* object attributes */
3458 @REPLY
3459 obj_handle_t handle; /* port handle */
3460 @END
3463 /* Open I/O completion port */
3464 @REQ(open_completion)
3465 unsigned int access; /* desired access to a port */
3466 unsigned int attributes; /* object attributes */
3467 obj_handle_t rootdir; /* root directory */
3468 VARARG(filename,unicode_str); /* port name */
3469 @REPLY
3470 obj_handle_t handle; /* port handle */
3471 @END
3474 /* add completion to completion port */
3475 @REQ(add_completion)
3476 obj_handle_t handle; /* port handle */
3477 apc_param_t ckey; /* completion key */
3478 apc_param_t cvalue; /* completion value */
3479 apc_param_t information; /* IO_STATUS_BLOCK Information */
3480 unsigned int status; /* completion result */
3481 @END
3484 /* get completion from completion port queue */
3485 @REQ(remove_completion)
3486 obj_handle_t handle; /* port handle */
3487 @REPLY
3488 apc_param_t ckey; /* completion key */
3489 apc_param_t cvalue; /* completion value */
3490 apc_param_t information; /* IO_STATUS_BLOCK Information */
3491 unsigned int status; /* completion result */
3492 @END
3495 /* get completion queue depth */
3496 @REQ(query_completion)
3497 obj_handle_t handle; /* port handle */
3498 @REPLY
3499 unsigned int depth; /* completion queue depth */
3500 @END
3503 /* associate object with completion port */
3504 @REQ(set_completion_info)
3505 obj_handle_t handle; /* object handle */
3506 apc_param_t ckey; /* completion key */
3507 obj_handle_t chandle; /* port handle */
3508 @END
3511 /* check for associated completion and push msg */
3512 @REQ(add_fd_completion)
3513 obj_handle_t handle; /* async' object */
3514 apc_param_t cvalue; /* completion value */
3515 apc_param_t information; /* IO_STATUS_BLOCK Information */
3516 unsigned int status; /* completion status */
3517 int async; /* completion is an async result */
3518 @END
3521 /* set fd completion information */
3522 @REQ(set_fd_completion_mode)
3523 obj_handle_t handle; /* handle to a file or directory */
3524 unsigned int flags; /* completion notification flags */
3525 @END
3528 /* set fd disposition information */
3529 @REQ(set_fd_disp_info)
3530 obj_handle_t handle; /* handle to a file or directory */
3531 int unlink; /* whether to unlink file on close */
3532 @END
3535 /* set fd name information */
3536 @REQ(set_fd_name_info)
3537 obj_handle_t handle; /* handle to a file or directory */
3538 obj_handle_t rootdir; /* root directory */
3539 data_size_t namelen; /* length of NT name in bytes */
3540 int link; /* link instead of renaming */
3541 int replace; /* replace an existing file? */
3542 VARARG(name,unicode_str,namelen); /* NT name */
3543 VARARG(filename,string); /* new file name */
3544 @END
3547 /* set fd eof information */
3548 @REQ(set_fd_eof_info)
3549 obj_handle_t handle; /* handle to a file or directory */
3550 file_pos_t eof; /* offset of eof of file */
3551 @END
3554 /* Retrieve layered info for a window */
3555 @REQ(get_window_layered_info)
3556 user_handle_t handle; /* handle to the window */
3557 @REPLY
3558 unsigned int color_key; /* color key */
3559 unsigned int alpha; /* alpha (0..255) */
3560 unsigned int flags; /* LWA_* flags */
3561 @END
3564 /* Set layered info for a window */
3565 @REQ(set_window_layered_info)
3566 user_handle_t handle; /* handle to the window */
3567 unsigned int color_key; /* color key */
3568 unsigned int alpha; /* alpha (0..255) */
3569 unsigned int flags; /* LWA_* flags */
3570 @END
3573 /* Allocate an arbitrary user handle */
3574 @REQ(alloc_user_handle)
3575 @REPLY
3576 user_handle_t handle; /* allocated handle */
3577 @END
3580 /* Free an arbitrary user handle */
3581 @REQ(free_user_handle)
3582 user_handle_t handle; /* handle to free*/
3583 @END
3586 /* Set/get the current cursor */
3587 @REQ(set_cursor)
3588 unsigned int flags; /* flags for fields to set (see below) */
3589 user_handle_t handle; /* handle to the cursor */
3590 int show_count; /* show count increment/decrement */
3591 int x; /* cursor position */
3592 int y;
3593 rectangle_t clip; /* cursor clip rectangle */
3594 unsigned int clip_msg; /* message to post on cursor clip changes */
3595 @REPLY
3596 user_handle_t prev_handle; /* previous handle */
3597 int prev_count; /* previous show count */
3598 int prev_x; /* previous position */
3599 int prev_y;
3600 int new_x; /* new position */
3601 int new_y;
3602 rectangle_t new_clip; /* new clip rectangle */
3603 unsigned int last_change; /* time of last position change */
3604 @END
3605 #define SET_CURSOR_HANDLE 0x01
3606 #define SET_CURSOR_COUNT 0x02
3607 #define SET_CURSOR_POS 0x04
3608 #define SET_CURSOR_CLIP 0x08
3609 #define SET_CURSOR_NOCLIP 0x10
3611 /* Get the history of the 64 last cursor positions */
3612 @REQ(get_cursor_history)
3613 @REPLY
3614 VARARG(history,cursor_positions);
3615 @END
3618 /* Batch read rawinput message data */
3619 @REQ(get_rawinput_buffer)
3620 data_size_t rawinput_size; /* size of RAWINPUT structure */
3621 data_size_t buffer_size; /* size of output buffer */
3622 @REPLY
3623 data_size_t next_size; /* minimum size to get next message data */
3624 unsigned int count;
3625 VARARG(data,bytes);
3626 @END
3628 /* Modify the list of registered rawinput devices */
3629 @REQ(update_rawinput_devices)
3630 VARARG(devices,rawinput_devices);
3631 @END
3633 /* Retrieve the list of registered rawinput devices */
3634 @REQ(get_rawinput_devices)
3635 @REPLY
3636 unsigned int device_count;
3637 VARARG(devices,rawinput_devices);
3638 @END
3640 /* Create a new job object */
3641 @REQ(create_job)
3642 unsigned int access; /* wanted access rights */
3643 VARARG(objattr,object_attributes); /* object attributes */
3644 @REPLY
3645 obj_handle_t handle; /* handle to the job */
3646 @END
3649 /* Open a job object */
3650 @REQ(open_job)
3651 unsigned int access; /* wanted access rights */
3652 unsigned int attributes; /* object attributes */
3653 obj_handle_t rootdir; /* root directory */
3654 VARARG(name,unicode_str); /* object name */
3655 @REPLY
3656 obj_handle_t handle; /* handle to the job */
3657 @END
3660 /* Assign a job object to a process */
3661 @REQ(assign_job)
3662 obj_handle_t job; /* handle to the job */
3663 obj_handle_t process; /* handle to the process */
3664 @END
3667 /* Check if a process is associated with a job */
3668 @REQ(process_in_job)
3669 obj_handle_t job; /* handle to the job */
3670 obj_handle_t process; /* handle to the process */
3671 @END
3674 /* Set limit flags on a job */
3675 @REQ(set_job_limits)
3676 obj_handle_t handle; /* handle to the job */
3677 unsigned int limit_flags; /* new limit flags */
3678 @END
3681 /* Set new completion port for a job */
3682 @REQ(set_job_completion_port)
3683 obj_handle_t job; /* handle to the job */
3684 obj_handle_t port; /* handle to the completion port */
3685 client_ptr_t key; /* key to send with completion messages */
3686 @END
3689 /* Retrieve information about a job */
3690 @REQ(get_job_info)
3691 obj_handle_t handle; /* handle to the job */
3692 @REPLY
3693 int total_processes; /* total count of processes */
3694 int active_processes; /* count of running processes */
3695 @END
3698 /* Terminate all processes associated with the job */
3699 @REQ(terminate_job)
3700 obj_handle_t handle; /* handle to the job */
3701 int status; /* process exit code */
3702 @END
3705 /* Suspend a process */
3706 @REQ(suspend_process)
3707 obj_handle_t handle; /* process handle */
3708 @END
3711 /* Resume a process */
3712 @REQ(resume_process)
3713 obj_handle_t handle; /* process handle */
3714 @END
3717 /* Iterate thread list for process */
3718 @REQ(get_next_thread)
3719 obj_handle_t process; /* process handle */
3720 obj_handle_t last; /* thread handle to start with */
3721 unsigned int access; /* desired access for returned handle */
3722 unsigned int attributes; /* returned handle attributes */
3723 unsigned int flags; /* controls iteration direction */
3724 @REPLY
3725 obj_handle_t handle; /* next thread handle */
3726 @END