wined3d: Don't return the BO address offset if glMapBuffer() fails.
[wine.git] / server / protocol.def
blobc83e6a2ef7c10fc880ca7200b1758be4403a9f03
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
492 typedef struct
494 enum apc_type type; /* APC_USER */
495 int __pad;
496 client_ptr_t func; /* void (__stdcall *func)(ULONG_PTR,ULONG_PTR,ULONG_PTR); */
497 apc_param_t args[3]; /* arguments for user function */
498 } user_apc_t;
500 typedef union
502 enum apc_type type;
503 user_apc_t user;
504 struct
506 enum apc_type type; /* APC_ASYNC_IO */
507 unsigned int status; /* I/O status */
508 client_ptr_t user; /* user pointer */
509 client_ptr_t sb; /* status block */
510 data_size_t result; /* result size */
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 /* Test if two handles refer to the same object */
1125 @REQ(compare_objects)
1126 obj_handle_t first; /* first object handle */
1127 obj_handle_t second; /* second object handle */
1128 @END
1131 /* Make an object temporary */
1132 @REQ(make_temporary)
1133 obj_handle_t handle; /* handle to the object */
1134 @END
1137 /* Open a handle to a process */
1138 @REQ(open_process)
1139 process_id_t pid; /* process id to open */
1140 unsigned int access; /* wanted access rights */
1141 unsigned int attributes; /* object attributes */
1142 @REPLY
1143 obj_handle_t handle; /* handle to the process */
1144 @END
1147 /* Open a handle to a thread */
1148 @REQ(open_thread)
1149 thread_id_t tid; /* thread id to open */
1150 unsigned int access; /* wanted access rights */
1151 unsigned int attributes; /* object attributes */
1152 @REPLY
1153 obj_handle_t handle; /* handle to the thread */
1154 @END
1157 /* Wait for handles */
1158 @REQ(select)
1159 int flags; /* wait flags (see below) */
1160 client_ptr_t cookie; /* magic cookie to return to client */
1161 abstime_t timeout; /* timeout */
1162 data_size_t size; /* size of select_op */
1163 obj_handle_t prev_apc; /* handle to previous APC */
1164 VARARG(result,apc_result); /* result of previous APC */
1165 VARARG(data,select_op,size); /* operation-specific data */
1166 VARARG(contexts,contexts); /* suspend context(s) */
1167 @REPLY
1168 apc_call_t call; /* APC call arguments */
1169 obj_handle_t apc_handle; /* handle to next APC */
1170 int signaled; /* were the handles immediately signaled? */
1171 VARARG(contexts,contexts); /* suspend context(s) */
1172 @END
1173 #define SELECT_ALERTABLE 1
1174 #define SELECT_INTERRUPTIBLE 2
1177 /* Create an event */
1178 @REQ(create_event)
1179 unsigned int access; /* wanted access rights */
1180 int manual_reset; /* manual reset event */
1181 int initial_state; /* initial state of the event */
1182 VARARG(objattr,object_attributes); /* object attributes */
1183 @REPLY
1184 obj_handle_t handle; /* handle to the event */
1185 @END
1187 /* Event operation */
1188 @REQ(event_op)
1189 obj_handle_t handle; /* handle to event */
1190 int op; /* event operation (see below) */
1191 @REPLY
1192 int state; /* previous state */
1193 @END
1194 enum event_op { PULSE_EVENT, SET_EVENT, RESET_EVENT };
1196 @REQ(query_event)
1197 obj_handle_t handle; /* handle to event */
1198 @REPLY
1199 int manual_reset; /* manual reset event */
1200 int state; /* current state of the event */
1201 @END
1203 /* Open an event */
1204 @REQ(open_event)
1205 unsigned int access; /* wanted access rights */
1206 unsigned int attributes; /* object attributes */
1207 obj_handle_t rootdir; /* root directory */
1208 VARARG(name,unicode_str); /* object name */
1209 @REPLY
1210 obj_handle_t handle; /* handle to the event */
1211 @END
1214 /* Create a keyed event */
1215 @REQ(create_keyed_event)
1216 unsigned int access; /* wanted access rights */
1217 VARARG(objattr,object_attributes); /* object attributes */
1218 @REPLY
1219 obj_handle_t handle; /* handle to the event */
1220 @END
1222 /* Open a keyed event */
1223 @REQ(open_keyed_event)
1224 unsigned int access; /* wanted access rights */
1225 unsigned int attributes; /* object attributes */
1226 obj_handle_t rootdir; /* root directory */
1227 VARARG(name,unicode_str); /* object name */
1228 @REPLY
1229 obj_handle_t handle; /* handle to the event */
1230 @END
1233 /* Create a mutex */
1234 @REQ(create_mutex)
1235 unsigned int access; /* wanted access rights */
1236 int owned; /* initially owned? */
1237 VARARG(objattr,object_attributes); /* object attributes */
1238 @REPLY
1239 obj_handle_t handle; /* handle to the mutex */
1240 @END
1243 /* Release a mutex */
1244 @REQ(release_mutex)
1245 obj_handle_t handle; /* handle to the mutex */
1246 @REPLY
1247 unsigned int prev_count; /* value of internal counter, before release */
1248 @END
1251 /* Open a mutex */
1252 @REQ(open_mutex)
1253 unsigned int access; /* wanted access rights */
1254 unsigned int attributes; /* object attributes */
1255 obj_handle_t rootdir; /* root directory */
1256 VARARG(name,unicode_str); /* object name */
1257 @REPLY
1258 obj_handle_t handle; /* handle to the mutex */
1259 @END
1262 /* Query a mutex */
1263 @REQ(query_mutex)
1264 obj_handle_t handle; /* handle to mutex */
1265 @REPLY
1266 unsigned int count; /* current count of mutex */
1267 int owned; /* true if owned by current thread */
1268 int abandoned; /* true if abandoned */
1269 @END
1272 /* Create a semaphore */
1273 @REQ(create_semaphore)
1274 unsigned int access; /* wanted access rights */
1275 unsigned int initial; /* initial count */
1276 unsigned int max; /* maximum count */
1277 VARARG(objattr,object_attributes); /* object attributes */
1278 @REPLY
1279 obj_handle_t handle; /* handle to the semaphore */
1280 @END
1283 /* Release a semaphore */
1284 @REQ(release_semaphore)
1285 obj_handle_t handle; /* handle to the semaphore */
1286 unsigned int count; /* count to add to semaphore */
1287 @REPLY
1288 unsigned int prev_count; /* previous semaphore count */
1289 @END
1291 @REQ(query_semaphore)
1292 obj_handle_t handle; /* handle to the semaphore */
1293 @REPLY
1294 unsigned int current; /* current count */
1295 unsigned int max; /* maximum count */
1296 @END
1298 /* Open a semaphore */
1299 @REQ(open_semaphore)
1300 unsigned int access; /* wanted access rights */
1301 unsigned int attributes; /* object attributes */
1302 obj_handle_t rootdir; /* root directory */
1303 VARARG(name,unicode_str); /* object name */
1304 @REPLY
1305 obj_handle_t handle; /* handle to the semaphore */
1306 @END
1309 /* Create a file */
1310 @REQ(create_file)
1311 unsigned int access; /* wanted access rights */
1312 unsigned int sharing; /* sharing flags */
1313 int create; /* file create action */
1314 unsigned int options; /* file options */
1315 unsigned int attrs; /* file attributes for creation */
1316 VARARG(objattr,object_attributes); /* object attributes */
1317 VARARG(filename,string); /* file name */
1318 @REPLY
1319 obj_handle_t handle; /* handle to the file */
1320 @END
1323 /* Open a file object */
1324 @REQ(open_file_object)
1325 unsigned int access; /* wanted access rights */
1326 unsigned int attributes; /* open attributes */
1327 obj_handle_t rootdir; /* root directory */
1328 unsigned int sharing; /* sharing flags */
1329 unsigned int options; /* file options */
1330 VARARG(filename,unicode_str); /* file name */
1331 @REPLY
1332 obj_handle_t handle; /* handle to the file */
1333 @END
1336 /* Allocate a file handle for a Unix fd */
1337 @REQ(alloc_file_handle)
1338 unsigned int access; /* wanted access rights */
1339 unsigned int attributes; /* object attributes */
1340 int fd; /* file descriptor on the client side */
1341 @REPLY
1342 obj_handle_t handle; /* handle to the file */
1343 @END
1346 /* Get the Unix name from a file handle */
1347 @REQ(get_handle_unix_name)
1348 obj_handle_t handle; /* file handle */
1349 @REPLY
1350 data_size_t name_len; /* unix name length */
1351 VARARG(name,string); /* unix name */
1352 @END
1355 /* Get a Unix fd to access a file */
1356 @REQ(get_handle_fd)
1357 obj_handle_t handle; /* handle to the file */
1358 @REPLY
1359 int type; /* file type (see below) */
1360 int cacheable; /* can fd be cached in the client? */
1361 unsigned int access; /* file access rights */
1362 unsigned int options; /* file open options */
1363 @END
1364 enum server_fd_type
1366 FD_TYPE_INVALID, /* invalid file (no associated fd) */
1367 FD_TYPE_FILE, /* regular file */
1368 FD_TYPE_DIR, /* directory */
1369 FD_TYPE_SOCKET, /* socket */
1370 FD_TYPE_SERIAL, /* serial port */
1371 FD_TYPE_PIPE, /* named pipe */
1372 FD_TYPE_MAILSLOT, /* mailslot */
1373 FD_TYPE_CHAR, /* unspecified char device */
1374 FD_TYPE_DEVICE, /* Windows device file */
1375 FD_TYPE_NB_TYPES
1379 /* Retrieve (or allocate) the client-side directory cache entry */
1380 @REQ(get_directory_cache_entry)
1381 obj_handle_t handle; /* handle to the directory */
1382 @REPLY
1383 int entry; /* cache entry on the client side */
1384 VARARG(free,ints); /* entries that can be freed */
1385 @END
1388 /* Flush a file buffers */
1389 @REQ(flush)
1390 async_data_t async; /* async I/O parameters */
1391 @REPLY
1392 obj_handle_t event; /* event set when finished */
1393 @END
1395 /* Query file information */
1396 @REQ(get_file_info)
1397 obj_handle_t handle; /* handle to the file */
1398 unsigned int info_class; /* queried information class */
1399 @REPLY
1400 VARARG(data,bytes); /* file info data */
1401 @END
1403 /* Query volume information */
1404 @REQ(get_volume_info)
1405 obj_handle_t handle; /* handle to the file */
1406 async_data_t async; /* async I/O parameters */
1407 unsigned int info_class; /* queried information class */
1408 @REPLY
1409 obj_handle_t wait; /* handle to wait on for blocking read */
1410 VARARG(data,bytes); /* volume info data */
1411 @END
1413 /* Lock a region of a file */
1414 @REQ(lock_file)
1415 obj_handle_t handle; /* handle to the file */
1416 file_pos_t offset; /* offset of start of lock */
1417 file_pos_t count; /* count of bytes to lock */
1418 int shared; /* shared or exclusive lock? */
1419 int wait; /* do we want to wait? */
1420 @REPLY
1421 obj_handle_t handle; /* handle to wait on */
1422 int overlapped; /* is it an overlapped I/O handle? */
1423 @END
1426 /* Unlock a region of a file */
1427 @REQ(unlock_file)
1428 obj_handle_t handle; /* handle to the file */
1429 file_pos_t offset; /* offset of start of unlock */
1430 file_pos_t count; /* count of bytes to unlock */
1431 @END
1434 /* Perform a recv on a socket */
1435 @REQ(recv_socket)
1436 int oob; /* are we receiving OOB data? */
1437 async_data_t async; /* async I/O parameters */
1438 unsigned int status; /* status of initial call */
1439 unsigned int total; /* number of bytes already read */
1440 @REPLY
1441 obj_handle_t wait; /* handle to wait on for blocking recv */
1442 unsigned int options; /* device open options */
1443 @END
1446 struct poll_socket_input
1448 obj_handle_t socket; /* socket handle */
1449 int flags; /* events to poll for */
1452 struct poll_socket_output
1454 int flags; /* events signaled */
1455 unsigned int status; /* socket status */
1458 /* Perform an async poll on a socket */
1459 @REQ(poll_socket)
1460 int exclusive; /* is the poll exclusive? */
1461 async_data_t async; /* async I/O parameters */
1462 timeout_t timeout; /* timeout */
1463 VARARG(sockets,poll_socket_input); /* list of sockets to poll */
1464 @REPLY
1465 obj_handle_t wait; /* handle to wait on for blocking poll */
1466 unsigned int options; /* file open options */
1467 VARARG(sockets,poll_socket_output); /* data returned */
1468 @END
1471 /* Perform a send on a socket */
1472 @REQ(send_socket)
1473 async_data_t async; /* async I/O parameters */
1474 unsigned int status; /* status of initial call */
1475 unsigned int total; /* number of bytes already sent */
1476 @REPLY
1477 obj_handle_t wait; /* handle to wait on for blocking send */
1478 unsigned int options; /* device open options */
1479 @END
1482 /* Retrieve the next pending console ioctl request */
1483 @REQ(get_next_console_request)
1484 obj_handle_t handle; /* console server handle */
1485 int signal; /* server signal state */
1486 int read; /* 1 if reporting result of blocked read ioctl */
1487 unsigned int status; /* status of previous ioctl */
1488 VARARG(out_data,bytes); /* out_data of previous ioctl */
1489 @REPLY
1490 unsigned int code; /* ioctl code */
1491 unsigned int output; /* output id or 0 for input */
1492 data_size_t out_size; /* ioctl output size */
1493 VARARG(in_data,bytes); /* ioctl in_data */
1494 @END
1497 /* enable directory change notifications */
1498 @REQ(read_directory_changes)
1499 unsigned int filter; /* notification filter */
1500 int subtree; /* watch the subtree? */
1501 int want_data; /* flag indicating whether change data should be collected */
1502 async_data_t async; /* async I/O parameters */
1503 @END
1506 @REQ(read_change)
1507 obj_handle_t handle;
1508 @REPLY
1509 VARARG(events,filesystem_event); /* collected filesystem events */
1510 @END
1513 /* Create a file mapping */
1514 @REQ(create_mapping)
1515 unsigned int access; /* wanted access rights */
1516 unsigned int flags; /* SEC_* flags */
1517 unsigned int file_access; /* file access rights */
1518 mem_size_t size; /* mapping size */
1519 obj_handle_t file_handle; /* file handle */
1520 VARARG(objattr,object_attributes); /* object attributes */
1521 @REPLY
1522 obj_handle_t handle; /* handle to the mapping */
1523 @END
1526 /* Open a mapping */
1527 @REQ(open_mapping)
1528 unsigned int access; /* wanted access rights */
1529 unsigned int attributes; /* object attributes */
1530 obj_handle_t rootdir; /* root directory */
1531 VARARG(name,unicode_str); /* object name */
1532 @REPLY
1533 obj_handle_t handle; /* handle to the mapping */
1534 @END
1537 /* Get information about a file mapping */
1538 @REQ(get_mapping_info)
1539 obj_handle_t handle; /* handle to the mapping */
1540 unsigned int access; /* wanted access rights */
1541 @REPLY
1542 mem_size_t size; /* mapping size */
1543 unsigned int flags; /* SEC_* flags */
1544 obj_handle_t shared_file; /* shared mapping file handle */
1545 data_size_t total; /* total required buffer size in bytes */
1546 VARARG(image,pe_image_info);/* image info for SEC_IMAGE mappings */
1547 VARARG(name,unicode_str); /* filename for SEC_IMAGE mappings */
1548 @END
1551 /* Add a memory view in the current process */
1552 @REQ(map_view)
1553 obj_handle_t mapping; /* file mapping handle, or 0 for .so builtin */
1554 unsigned int access; /* wanted access rights */
1555 client_ptr_t base; /* view base address (page-aligned) */
1556 mem_size_t size; /* view size */
1557 file_pos_t start; /* start offset in mapping */
1558 VARARG(image,pe_image_info);/* image info for .so builtins */
1559 VARARG(name,unicode_str); /* image filename for .so builtins */
1560 @END
1563 /* Unmap a memory view from the current process */
1564 @REQ(unmap_view)
1565 client_ptr_t base; /* view base address */
1566 @END
1569 /* Get a range of committed pages in a file mapping */
1570 @REQ(get_mapping_committed_range)
1571 client_ptr_t base; /* view base address */
1572 file_pos_t offset; /* starting offset (page-aligned, in bytes) */
1573 @REPLY
1574 mem_size_t size; /* size of range starting at offset (page-aligned, in bytes) */
1575 int committed; /* whether it is a committed range */
1576 @END
1579 /* Add a range to the committed pages in a file mapping */
1580 @REQ(add_mapping_committed_range)
1581 client_ptr_t base; /* view base address */
1582 file_pos_t offset; /* starting offset (page-aligned, in bytes) */
1583 mem_size_t size; /* size to set (page-aligned, in bytes) or 0 if only retrieving */
1584 @END
1587 /* Check if two memory maps are for the same file */
1588 @REQ(is_same_mapping)
1589 client_ptr_t base1; /* first view base address */
1590 client_ptr_t base2; /* second view base address */
1591 @END
1594 /* Get the filename of a mapping */
1595 @REQ(get_mapping_filename)
1596 obj_handle_t process; /* process handle */
1597 client_ptr_t addr; /* address inside mapped view (in process address space) */
1598 @REPLY
1599 data_size_t len; /* total filename length in bytes */
1600 VARARG(filename,unicode_str); /* filename in NT format */
1601 @END
1604 struct thread_info
1606 timeout_t start_time;
1607 thread_id_t tid;
1608 int base_priority;
1609 int current_priority;
1610 int unix_tid;
1611 client_ptr_t teb;
1612 client_ptr_t entry_point;
1615 struct process_info
1617 timeout_t start_time;
1618 data_size_t name_len;
1619 int thread_count;
1620 int priority;
1621 process_id_t pid;
1622 process_id_t parent_pid;
1623 unsigned int session_id;
1624 int handle_count;
1625 int unix_pid;
1626 /* VARARG(name,unicode_str,name_len); */
1627 /* VARARG(threads,struct thread_info,thread_count); */
1630 /* Get a list of processes and threads currently running */
1631 @REQ(list_processes)
1632 @REPLY
1633 data_size_t info_size;
1634 int process_count;
1635 int total_thread_count;
1636 data_size_t total_name_len;
1637 VARARG(data,process_info,info_size);
1638 @END
1641 /* Create a debug object */
1642 @REQ(create_debug_obj)
1643 unsigned int access; /* wanted access rights */
1644 unsigned int flags; /* object flags */
1645 VARARG(objattr,object_attributes); /* object attributes */
1646 @REPLY
1647 obj_handle_t handle; /* handle to the debug object */
1648 @END
1651 /* Wait for a debug event */
1652 @REQ(wait_debug_event)
1653 obj_handle_t debug; /* debug object */
1654 @REPLY
1655 process_id_t pid; /* process id */
1656 thread_id_t tid; /* thread id */
1657 VARARG(event,debug_event); /* debug event data */
1658 @END
1661 /* Queue an exception event */
1662 @REQ(queue_exception_event)
1663 int first; /* first chance exception? */
1664 unsigned int code; /* exception code */
1665 unsigned int flags; /* exception flags */
1666 client_ptr_t record; /* exception record */
1667 client_ptr_t address; /* exception address */
1668 data_size_t len; /* size of parameters */
1669 VARARG(params,uints64,len);/* exception parameters */
1670 @REPLY
1671 obj_handle_t handle; /* handle to the queued event */
1672 @END
1675 /* Retrieve the status of an exception event */
1676 @REQ(get_exception_status)
1677 obj_handle_t handle; /* handle to the queued event */
1678 @END
1681 /* Continue a debug event */
1682 @REQ(continue_debug_event)
1683 obj_handle_t debug; /* debug object */
1684 process_id_t pid; /* process id to continue */
1685 thread_id_t tid; /* thread id to continue */
1686 unsigned int status; /* continuation status */
1687 @END
1690 /* Start or stop debugging an existing process */
1691 @REQ(debug_process)
1692 obj_handle_t handle; /* process handle */
1693 obj_handle_t debug; /* debug object to attach to the process */
1694 int attach; /* 1=attaching / 0=detaching from the process */
1695 @END
1698 /* Set debug object information */
1699 @REQ(set_debug_obj_info)
1700 obj_handle_t debug; /* debug object */
1701 unsigned int flags; /* object flags */
1702 @END
1705 /* Read data from a process address space */
1706 @REQ(read_process_memory)
1707 obj_handle_t handle; /* process handle */
1708 client_ptr_t addr; /* addr to read from */
1709 @REPLY
1710 VARARG(data,bytes); /* result data */
1711 @END
1714 /* Write data to a process address space */
1715 @REQ(write_process_memory)
1716 obj_handle_t handle; /* process handle */
1717 client_ptr_t addr; /* addr to write to */
1718 VARARG(data,bytes); /* data to write */
1719 @END
1722 /* Create a registry key */
1723 @REQ(create_key)
1724 unsigned int access; /* desired access rights */
1725 unsigned int options; /* creation options */
1726 VARARG(objattr,object_attributes); /* object attributes */
1727 VARARG(class,unicode_str); /* class name */
1728 @REPLY
1729 obj_handle_t hkey; /* handle to the created key */
1730 int created; /* has it been newly created? */
1731 @END
1733 /* Open a registry key */
1734 @REQ(open_key)
1735 obj_handle_t parent; /* handle to the parent key */
1736 unsigned int access; /* desired access rights */
1737 unsigned int attributes; /* object attributes */
1738 VARARG(name,unicode_str); /* key name */
1739 @REPLY
1740 obj_handle_t hkey; /* handle to the open key */
1741 @END
1744 /* Delete a registry key */
1745 @REQ(delete_key)
1746 obj_handle_t hkey; /* handle to the key */
1747 @END
1750 /* Flush a registry key */
1751 @REQ(flush_key)
1752 obj_handle_t hkey; /* handle to the key */
1753 @END
1756 /* Enumerate registry subkeys */
1757 @REQ(enum_key)
1758 obj_handle_t hkey; /* handle to registry key */
1759 int index; /* index of subkey (or -1 for current key) */
1760 int info_class; /* requested information class */
1761 @REPLY
1762 int subkeys; /* number of subkeys */
1763 int max_subkey; /* longest subkey name */
1764 int max_class; /* longest class name */
1765 int values; /* number of values */
1766 int max_value; /* longest value name */
1767 int max_data; /* longest value data */
1768 timeout_t modif; /* last modification time */
1769 data_size_t total; /* total length needed for full name and class */
1770 data_size_t namelen; /* length of key name in bytes */
1771 VARARG(name,unicode_str,namelen); /* key name */
1772 VARARG(class,unicode_str); /* class name */
1773 @END
1776 /* Set a value of a registry key */
1777 @REQ(set_key_value)
1778 obj_handle_t hkey; /* handle to registry key */
1779 int type; /* value type */
1780 data_size_t namelen; /* length of value name in bytes */
1781 VARARG(name,unicode_str,namelen); /* value name */
1782 VARARG(data,bytes); /* value data */
1783 @END
1786 /* Retrieve the value of a registry key */
1787 @REQ(get_key_value)
1788 obj_handle_t hkey; /* handle to registry key */
1789 VARARG(name,unicode_str); /* value name */
1790 @REPLY
1791 int type; /* value type */
1792 data_size_t total; /* total length needed for data */
1793 VARARG(data,bytes); /* value data */
1794 @END
1797 /* Enumerate a value of a registry key */
1798 @REQ(enum_key_value)
1799 obj_handle_t hkey; /* handle to registry key */
1800 int index; /* value index */
1801 int info_class; /* requested information class */
1802 @REPLY
1803 int type; /* value type */
1804 data_size_t total; /* total length needed for full name and data */
1805 data_size_t namelen; /* length of value name in bytes */
1806 VARARG(name,unicode_str,namelen); /* value name */
1807 VARARG(data,bytes); /* value data */
1808 @END
1811 /* Delete a value of a registry key */
1812 @REQ(delete_key_value)
1813 obj_handle_t hkey; /* handle to registry key */
1814 VARARG(name,unicode_str); /* value name */
1815 @END
1818 /* Load a registry branch from a file */
1819 @REQ(load_registry)
1820 obj_handle_t file; /* file to load from */
1821 VARARG(objattr,object_attributes); /* object attributes */
1822 @END
1825 /* UnLoad a registry branch from a file */
1826 @REQ(unload_registry)
1827 obj_handle_t parent; /* handle to the parent key */
1828 unsigned int attributes; /* object attributes */
1829 VARARG(name,unicode_str); /* key name */
1830 @END
1833 /* Save a registry branch to a file */
1834 @REQ(save_registry)
1835 obj_handle_t hkey; /* key to save */
1836 obj_handle_t file; /* file to save to */
1837 @END
1840 /* Add a registry key change notification */
1841 @REQ(set_registry_notification)
1842 obj_handle_t hkey; /* key to watch for changes */
1843 obj_handle_t event; /* event to set */
1844 int subtree; /* should we watch the whole subtree? */
1845 unsigned int filter; /* things to watch */
1846 @END
1849 /* Create a waitable timer */
1850 @REQ(create_timer)
1851 unsigned int access; /* wanted access rights */
1852 int manual; /* manual reset */
1853 VARARG(objattr,object_attributes); /* object attributes */
1854 @REPLY
1855 obj_handle_t handle; /* handle to the timer */
1856 @END
1859 /* Open a waitable timer */
1860 @REQ(open_timer)
1861 unsigned int access; /* wanted access rights */
1862 unsigned int attributes; /* object attributes */
1863 obj_handle_t rootdir; /* root directory */
1864 VARARG(name,unicode_str); /* object name */
1865 @REPLY
1866 obj_handle_t handle; /* handle to the timer */
1867 @END
1869 /* Set a waitable timer */
1870 @REQ(set_timer)
1871 obj_handle_t handle; /* handle to the timer */
1872 timeout_t expire; /* next expiration absolute time */
1873 client_ptr_t callback; /* callback function */
1874 client_ptr_t arg; /* callback argument */
1875 int period; /* timer period in ms */
1876 @REPLY
1877 int signaled; /* was the timer signaled before this call ? */
1878 @END
1880 /* Cancel a waitable timer */
1881 @REQ(cancel_timer)
1882 obj_handle_t handle; /* handle to the timer */
1883 @REPLY
1884 int signaled; /* was the timer signaled before this calltime ? */
1885 @END
1887 /* Get information on a waitable timer */
1888 @REQ(get_timer_info)
1889 obj_handle_t handle; /* handle to the timer */
1890 @REPLY
1891 timeout_t when; /* absolute time when the timer next expires */
1892 int signaled; /* is the timer signaled? */
1893 @END
1896 /* Retrieve the current context of a thread */
1897 @REQ(get_thread_context)
1898 obj_handle_t handle; /* thread handle */
1899 obj_handle_t context; /* context handle */
1900 unsigned int flags; /* context flags */
1901 unsigned short machine; /* context architecture */
1902 @REPLY
1903 int self; /* was it a handle to the current thread? */
1904 obj_handle_t handle; /* pending context handle */
1905 VARARG(contexts,contexts); /* thread context(s) */
1906 @END
1909 /* Set the current context of a thread */
1910 @REQ(set_thread_context)
1911 obj_handle_t handle; /* thread handle */
1912 VARARG(contexts,contexts); /* thread context(s) */
1913 @REPLY
1914 int self; /* was it a handle to the current thread? */
1915 @END
1918 /* Fetch a selector entry for a thread */
1919 @REQ(get_selector_entry)
1920 obj_handle_t handle; /* thread handle */
1921 int entry; /* LDT entry */
1922 @REPLY
1923 unsigned int base; /* selector base */
1924 unsigned int limit; /* selector limit */
1925 unsigned char flags; /* selector flags */
1926 @END
1929 /* Add an atom */
1930 @REQ(add_atom)
1931 VARARG(name,unicode_str); /* atom name */
1932 @REPLY
1933 atom_t atom; /* resulting atom */
1934 @END
1937 /* Delete an atom */
1938 @REQ(delete_atom)
1939 atom_t atom; /* atom handle */
1940 @END
1943 /* Find an atom */
1944 @REQ(find_atom)
1945 VARARG(name,unicode_str); /* atom name */
1946 @REPLY
1947 atom_t atom; /* atom handle */
1948 @END
1951 /* Get information about an atom */
1952 @REQ(get_atom_information)
1953 atom_t atom; /* atom handle */
1954 @REPLY
1955 int count; /* atom lock count */
1956 int pinned; /* whether the atom has been pinned */
1957 data_size_t total; /* actual length of atom name */
1958 VARARG(name,unicode_str); /* atom name */
1959 @END
1962 /* Get the message queue of the current thread */
1963 @REQ(get_msg_queue)
1964 @REPLY
1965 obj_handle_t handle; /* handle to the queue */
1966 @END
1969 /* Set the file descriptor associated to the current thread queue */
1970 @REQ(set_queue_fd)
1971 obj_handle_t handle; /* handle to the file descriptor */
1972 @END
1975 /* Set the current message queue wakeup mask */
1976 @REQ(set_queue_mask)
1977 unsigned int wake_mask; /* wakeup bits mask */
1978 unsigned int changed_mask; /* changed bits mask */
1979 int skip_wait; /* will we skip waiting if signaled? */
1980 @REPLY
1981 unsigned int wake_bits; /* current wake bits */
1982 unsigned int changed_bits; /* current changed bits */
1983 @END
1986 /* Get the current message queue status */
1987 @REQ(get_queue_status)
1988 unsigned int clear_bits; /* should we clear the change bits? */
1989 @REPLY
1990 unsigned int wake_bits; /* wake bits */
1991 unsigned int changed_bits; /* changed bits since last time */
1992 @END
1995 /* Retrieve the process idle event */
1996 @REQ(get_process_idle_event)
1997 obj_handle_t handle; /* process handle */
1998 @REPLY
1999 obj_handle_t event; /* handle to idle event */
2000 @END
2003 /* Send a message to a thread queue */
2004 @REQ(send_message)
2005 thread_id_t id; /* thread id */
2006 int type; /* message type (see below) */
2007 int flags; /* message flags (see below) */
2008 user_handle_t win; /* window handle */
2009 unsigned int msg; /* message code */
2010 lparam_t wparam; /* parameters */
2011 lparam_t lparam; /* parameters */
2012 timeout_t timeout; /* timeout for reply */
2013 VARARG(data,message_data); /* message data for sent messages */
2014 @END
2016 @REQ(post_quit_message)
2017 int exit_code; /* exit code to return */
2018 @END
2020 enum message_type
2022 MSG_ASCII, /* Ascii message (from SendMessageA) */
2023 MSG_UNICODE, /* Unicode message (from SendMessageW) */
2024 MSG_NOTIFY, /* notify message (from SendNotifyMessageW), always Unicode */
2025 MSG_CALLBACK, /* callback message (from SendMessageCallbackW), always Unicode */
2026 MSG_CALLBACK_RESULT,/* result of a callback message */
2027 MSG_OTHER_PROCESS, /* sent from other process, may include vararg data, always Unicode */
2028 MSG_POSTED, /* posted message (from PostMessageW), always Unicode */
2029 MSG_HARDWARE, /* hardware message */
2030 MSG_WINEVENT, /* winevent message */
2031 MSG_HOOK_LL /* low-level hardware hook */
2033 #define SEND_MSG_ABORT_IF_HUNG 0x01
2036 /* Send a hardware message to a thread queue */
2037 @REQ(send_hardware_message)
2038 user_handle_t win; /* window handle */
2039 hw_input_t input; /* input data */
2040 unsigned int flags; /* flags (see below) */
2041 VARARG(report,bytes); /* HID report data */
2042 @REPLY
2043 int wait; /* do we need to wait for a reply? */
2044 int prev_x; /* previous cursor position */
2045 int prev_y;
2046 int new_x; /* new cursor position */
2047 int new_y;
2048 VARARG(keystate,bytes); /* global state array for all the keys */
2049 @END
2050 #define SEND_HWMSG_INJECTED 0x01
2053 /* Get a message from the current queue */
2054 @REQ(get_message)
2055 unsigned int flags; /* PM_* flags */
2056 user_handle_t get_win; /* window handle to get */
2057 unsigned int get_first; /* first message code to get */
2058 unsigned int get_last; /* last message code to get */
2059 unsigned int hw_id; /* id of the previous hardware message (or 0) */
2060 unsigned int wake_mask; /* wakeup bits mask */
2061 unsigned int changed_mask; /* changed bits mask */
2062 @REPLY
2063 user_handle_t win; /* window handle */
2064 unsigned int msg; /* message code */
2065 lparam_t wparam; /* parameters */
2066 lparam_t lparam; /* parameters */
2067 int type; /* message type */
2068 int x; /* message x position */
2069 int y; /* message y position */
2070 unsigned int time; /* message time */
2071 unsigned int active_hooks; /* active hooks bitmap */
2072 data_size_t total; /* total size of extra data */
2073 VARARG(data,message_data); /* message data for sent messages */
2074 @END
2077 /* Reply to a sent message */
2078 @REQ(reply_message)
2079 int remove; /* should we remove the message? */
2080 lparam_t result; /* message result */
2081 VARARG(data,bytes); /* message data for sent messages */
2082 @END
2085 /* Accept and remove the current hardware message */
2086 @REQ(accept_hardware_message)
2087 unsigned int hw_id; /* id of the hardware message */
2088 @END
2091 /* Retrieve the reply for the last message sent */
2092 @REQ(get_message_reply)
2093 int cancel; /* cancel message if not ready? */
2094 @REPLY
2095 lparam_t result; /* message result */
2096 VARARG(data,bytes); /* message data for sent messages */
2097 @END
2100 /* Set a window timer */
2101 @REQ(set_win_timer)
2102 user_handle_t win; /* window handle */
2103 unsigned int msg; /* message to post */
2104 unsigned int rate; /* timer rate in ms */
2105 lparam_t id; /* timer id */
2106 lparam_t lparam; /* message lparam (callback proc) */
2107 @REPLY
2108 lparam_t id; /* timer id */
2109 @END
2112 /* Kill a window timer */
2113 @REQ(kill_win_timer)
2114 user_handle_t win; /* window handle */
2115 lparam_t id; /* timer id */
2116 unsigned int msg; /* message to post */
2117 @END
2120 /* check if the thread owning the window is hung */
2121 @REQ(is_window_hung)
2122 user_handle_t win; /* window handle */
2123 @REPLY
2124 int is_hung;
2125 @END
2128 /* Retrieve info about a serial port */
2129 @REQ(get_serial_info)
2130 obj_handle_t handle; /* handle to comm port */
2131 int flags;
2132 @REPLY
2133 unsigned int eventmask;
2134 unsigned int cookie;
2135 unsigned int pending_write;
2136 @END
2139 /* Set info about a serial port */
2140 @REQ(set_serial_info)
2141 obj_handle_t handle; /* handle to comm port */
2142 int flags; /* bitmask to set values (see below) */
2143 @END
2144 #define SERIALINFO_PENDING_WRITE 0x04
2145 #define SERIALINFO_PENDING_WAIT 0x08
2148 /* Create an async I/O */
2149 @REQ(register_async)
2150 int type; /* type of queue to look after */
2151 async_data_t async; /* async I/O parameters */
2152 int count; /* count - usually # of bytes to be read/written */
2153 @END
2154 #define ASYNC_TYPE_READ 0x01
2155 #define ASYNC_TYPE_WRITE 0x02
2156 #define ASYNC_TYPE_WAIT 0x03
2159 /* Cancel all async op on a fd */
2160 @REQ(cancel_async)
2161 obj_handle_t handle; /* handle to comm port, socket or file */
2162 client_ptr_t iosb; /* I/O status block (NULL=all) */
2163 int only_thread; /* cancel matching this thread */
2164 @END
2167 /* Retrieve results of an async */
2168 @REQ(get_async_result)
2169 client_ptr_t user_arg; /* user arg used to identify async */
2170 @REPLY
2171 VARARG(out_data,bytes); /* iosb output data */
2172 @END
2175 /* Perform a read on a file object */
2176 @REQ(read)
2177 async_data_t async; /* async I/O parameters */
2178 file_pos_t pos; /* read position */
2179 @REPLY
2180 obj_handle_t wait; /* handle to wait on for blocking read */
2181 unsigned int options; /* device open options */
2182 VARARG(data,bytes); /* read data */
2183 @END
2186 /* Perform a write on a file object */
2187 @REQ(write)
2188 async_data_t async; /* async I/O parameters */
2189 file_pos_t pos; /* write position */
2190 VARARG(data,bytes); /* write data */
2191 @REPLY
2192 obj_handle_t wait; /* handle to wait on for blocking write */
2193 unsigned int options; /* device open options */
2194 data_size_t size; /* size written */
2195 @END
2198 /* Perform an ioctl on a file */
2199 @REQ(ioctl)
2200 ioctl_code_t code; /* ioctl code */
2201 async_data_t async; /* async I/O parameters */
2202 VARARG(in_data,bytes); /* ioctl input data */
2203 @REPLY
2204 obj_handle_t wait; /* handle to wait on for blocking ioctl */
2205 unsigned int options; /* device open options */
2206 VARARG(out_data,bytes); /* ioctl output data */
2207 @END
2210 /* Store results of an async irp */
2211 @REQ(set_irp_result)
2212 obj_handle_t handle; /* handle to the irp */
2213 unsigned int status; /* status of the irp */
2214 data_size_t size; /* result size (input or output depending on the operation) */
2215 VARARG(data,bytes); /* output data of the irp */
2216 @END
2219 /* Create a named pipe */
2220 @REQ(create_named_pipe)
2221 unsigned int access;
2222 unsigned int options;
2223 unsigned int sharing;
2224 unsigned int maxinstances;
2225 unsigned int outsize;
2226 unsigned int insize;
2227 timeout_t timeout;
2228 unsigned int flags;
2229 VARARG(objattr,object_attributes); /* object attributes */
2230 @REPLY
2231 obj_handle_t handle; /* handle to the pipe */
2232 @END
2234 /* flags in create_named_pipe and get_named_pipe_info */
2235 #define NAMED_PIPE_MESSAGE_STREAM_WRITE 0x0001
2236 #define NAMED_PIPE_MESSAGE_STREAM_READ 0x0002
2237 #define NAMED_PIPE_NONBLOCKING_MODE 0x0004
2238 #define NAMED_PIPE_SERVER_END 0x8000
2240 /* Set named pipe information by handle */
2241 @REQ(set_named_pipe_info)
2242 obj_handle_t handle;
2243 unsigned int flags;
2244 @END
2246 /* Create a window */
2247 @REQ(create_window)
2248 user_handle_t parent; /* parent window */
2249 user_handle_t owner; /* owner window */
2250 atom_t atom; /* class atom */
2251 mod_handle_t instance; /* module instance */
2252 int dpi; /* system DPI */
2253 int awareness; /* thread DPI awareness */
2254 unsigned int style; /* window style */
2255 unsigned int ex_style; /* window extended style */
2256 VARARG(class,unicode_str); /* class name */
2257 @REPLY
2258 user_handle_t handle; /* created window */
2259 user_handle_t parent; /* full handle of parent */
2260 user_handle_t owner; /* full handle of owner */
2261 int extra; /* number of extra bytes */
2262 client_ptr_t class_ptr; /* pointer to class in client address space */
2263 int dpi; /* window DPI if not per-monitor aware */
2264 int awareness; /* window DPI awareness */
2265 @END
2268 /* Destroy a window */
2269 @REQ(destroy_window)
2270 user_handle_t handle; /* handle to the window */
2271 @END
2274 /* Retrieve the desktop window for the current thread */
2275 @REQ(get_desktop_window)
2276 int force; /* force creation if it doesn't exist */
2277 @REPLY
2278 user_handle_t top_window; /* handle to the desktop window */
2279 user_handle_t msg_window; /* handle to the top-level HWND_MESSAGE parent */
2280 @END
2283 /* Set a window owner */
2284 @REQ(set_window_owner)
2285 user_handle_t handle; /* handle to the window */
2286 user_handle_t owner; /* new owner */
2287 @REPLY
2288 user_handle_t full_owner; /* full handle of new owner */
2289 user_handle_t prev_owner; /* full handle of previous owner */
2290 @END
2293 /* Get information from a window handle */
2294 @REQ(get_window_info)
2295 user_handle_t handle; /* handle to the window */
2296 @REPLY
2297 user_handle_t full_handle; /* full 32-bit handle */
2298 user_handle_t last_active; /* last active popup */
2299 process_id_t pid; /* process owning the window */
2300 thread_id_t tid; /* thread owning the window */
2301 atom_t atom; /* class atom */
2302 int is_unicode; /* ANSI or unicode */
2303 int dpi; /* window DPI */
2304 int awareness; /* DPI awareness */
2305 @END
2308 /* Set some information in a window */
2309 @REQ(set_window_info)
2310 unsigned short flags; /* flags for fields to set (see below) */
2311 short int is_unicode; /* ANSI or unicode */
2312 user_handle_t handle; /* handle to the window */
2313 unsigned int style; /* window style */
2314 unsigned int ex_style; /* window extended style */
2315 unsigned int id; /* window id */
2316 mod_handle_t instance; /* creator instance */
2317 lparam_t user_data; /* user-specific data */
2318 int extra_offset; /* offset to set in extra bytes */
2319 data_size_t extra_size; /* size to set in extra bytes */
2320 lparam_t extra_value; /* value to set in extra bytes */
2321 @REPLY
2322 unsigned int old_style; /* old window style */
2323 unsigned int old_ex_style; /* old window extended style */
2324 mod_handle_t old_instance; /* old creator instance */
2325 lparam_t old_user_data; /* old user-specific data */
2326 lparam_t old_extra_value; /* old value in extra bytes */
2327 unsigned int old_id; /* old window id */
2328 @END
2329 #define SET_WIN_STYLE 0x01
2330 #define SET_WIN_EXSTYLE 0x02
2331 #define SET_WIN_ID 0x04
2332 #define SET_WIN_INSTANCE 0x08
2333 #define SET_WIN_USERDATA 0x10
2334 #define SET_WIN_EXTRA 0x20
2335 #define SET_WIN_UNICODE 0x40
2338 /* Set the parent of a window */
2339 @REQ(set_parent)
2340 user_handle_t handle; /* handle to the window */
2341 user_handle_t parent; /* handle to the parent */
2342 @REPLY
2343 user_handle_t old_parent; /* old parent window */
2344 user_handle_t full_parent; /* full handle of new parent */
2345 int dpi; /* new window DPI if not per-monitor aware */
2346 int awareness; /* new DPI awareness */
2347 @END
2350 /* Get a list of the window parents, up to the root of the tree */
2351 @REQ(get_window_parents)
2352 user_handle_t handle; /* handle to the window */
2353 @REPLY
2354 int count; /* total count of parents */
2355 VARARG(parents,user_handles); /* parent handles */
2356 @END
2359 /* Get a list of the window children */
2360 @REQ(get_window_children)
2361 obj_handle_t desktop; /* handle to desktop */
2362 user_handle_t parent; /* parent window */
2363 atom_t atom; /* class atom for the listed children */
2364 thread_id_t tid; /* thread owning the listed children */
2365 VARARG(class,unicode_str); /* class name */
2366 @REPLY
2367 int count; /* total count of children */
2368 VARARG(children,user_handles); /* children handles */
2369 @END
2372 /* Get a list of the window children that contain a given point */
2373 @REQ(get_window_children_from_point)
2374 user_handle_t parent; /* parent window */
2375 int x; /* point in parent coordinates */
2376 int y;
2377 int dpi; /* dpi for the point coordinates */
2378 @REPLY
2379 int count; /* total count of children */
2380 VARARG(children,user_handles); /* children handles */
2381 @END
2384 /* Get window tree information from a window handle */
2385 @REQ(get_window_tree)
2386 user_handle_t handle; /* handle to the window */
2387 @REPLY
2388 user_handle_t parent; /* parent window */
2389 user_handle_t owner; /* owner window */
2390 user_handle_t next_sibling; /* next sibling in Z-order */
2391 user_handle_t prev_sibling; /* prev sibling in Z-order */
2392 user_handle_t first_sibling; /* first sibling in Z-order */
2393 user_handle_t last_sibling; /* last sibling in Z-order */
2394 user_handle_t first_child; /* first child */
2395 user_handle_t last_child; /* last child */
2396 @END
2398 /* Set the position and Z order of a window */
2399 @REQ(set_window_pos)
2400 unsigned short swp_flags; /* SWP_* flags */
2401 unsigned short paint_flags; /* paint flags (see below) */
2402 user_handle_t handle; /* handle to the window */
2403 user_handle_t previous; /* previous window in Z order */
2404 rectangle_t window; /* window rectangle (in parent coords) */
2405 rectangle_t client; /* client rectangle (in parent coords) */
2406 VARARG(valid,rectangles); /* valid rectangles from WM_NCCALCSIZE (in parent coords) */
2407 @REPLY
2408 unsigned int new_style; /* new window style */
2409 unsigned int new_ex_style; /* new window extended style */
2410 user_handle_t surface_win; /* parent window that holds the surface */
2411 int needs_update; /* whether the surface region needs an update */
2412 @END
2413 #define SET_WINPOS_PAINT_SURFACE 0x01 /* window has a paintable surface */
2414 #define SET_WINPOS_PIXEL_FORMAT 0x02 /* window has a custom pixel format */
2416 /* Get the window and client rectangles of a window */
2417 @REQ(get_window_rectangles)
2418 user_handle_t handle; /* handle to the window */
2419 int relative; /* coords relative to (see below) */
2420 int dpi; /* DPI to map to, or zero for per-monitor DPI */
2421 @REPLY
2422 rectangle_t window; /* window rectangle */
2423 rectangle_t client; /* client rectangle */
2424 @END
2425 enum coords_relative
2427 COORDS_CLIENT, /* relative to client area */
2428 COORDS_WINDOW, /* relative to whole window area */
2429 COORDS_PARENT, /* relative to parent's client area */
2430 COORDS_SCREEN /* relative to screen origin */
2434 /* Get the window text */
2435 @REQ(get_window_text)
2436 user_handle_t handle; /* handle to the window */
2437 @REPLY
2438 data_size_t length; /* total length in WCHARs */
2439 VARARG(text,unicode_str); /* window text */
2440 @END
2443 /* Set the window text */
2444 @REQ(set_window_text)
2445 user_handle_t handle; /* handle to the window */
2446 VARARG(text,unicode_str); /* window text */
2447 @END
2450 /* Get the coordinates offset between two windows */
2451 @REQ(get_windows_offset)
2452 user_handle_t from; /* handle to the first window */
2453 user_handle_t to; /* handle to the second window */
2454 int dpi; /* DPI to map to, or zero for per-monitor DPI */
2455 @REPLY
2456 int x; /* x coordinate offset */
2457 int y; /* y coordinate offset */
2458 int mirror; /* whether to mirror the x coordinate */
2459 @END
2462 /* Get the visible region of a window */
2463 @REQ(get_visible_region)
2464 user_handle_t window; /* handle to the window */
2465 unsigned int flags; /* DCX flags */
2466 @REPLY
2467 user_handle_t top_win; /* top window to clip against */
2468 rectangle_t top_rect; /* top window visible rect with screen coords */
2469 rectangle_t win_rect; /* window rect in screen coords */
2470 unsigned int paint_flags; /* paint flags (from SET_WINPOS_* flags) */
2471 data_size_t total_size; /* total size of the resulting region */
2472 VARARG(region,rectangles); /* list of rectangles for the region (in screen coords) */
2473 @END
2476 /* Get the visible surface region of a window */
2477 @REQ(get_surface_region)
2478 user_handle_t window; /* handle to the window */
2479 @REPLY
2480 rectangle_t visible_rect; /* window visible rect in screen coords */
2481 data_size_t total_size; /* total size of the resulting region */
2482 VARARG(region,rectangles); /* list of rectangles for the region (in screen coords) */
2483 @END
2486 /* Get the window region */
2487 @REQ(get_window_region)
2488 user_handle_t window; /* handle to the window */
2489 @REPLY
2490 data_size_t total_size; /* total size of the resulting region */
2491 VARARG(region,rectangles); /* list of rectangles for the region (in window coords) */
2492 @END
2495 /* Set the window region */
2496 @REQ(set_window_region)
2497 user_handle_t window; /* handle to the window */
2498 int redraw; /* redraw the window? */
2499 VARARG(region,rectangles); /* list of rectangles for the region (in window coords) */
2500 @END
2503 /* Get the window update region */
2504 @REQ(get_update_region)
2505 user_handle_t window; /* handle to the window */
2506 user_handle_t from_child; /* child to start searching from */
2507 unsigned int flags; /* update flags (see below) */
2508 @REPLY
2509 user_handle_t child; /* child to repaint (or window itself) */
2510 unsigned int flags; /* resulting update flags (see below) */
2511 data_size_t total_size; /* total size of the resulting region */
2512 VARARG(region,rectangles); /* list of rectangles for the region (in screen coords) */
2513 @END
2514 #define UPDATE_NONCLIENT 0x001 /* get region for repainting non-client area */
2515 #define UPDATE_ERASE 0x002 /* get region for erasing client area */
2516 #define UPDATE_PAINT 0x004 /* get region for painting client area */
2517 #define UPDATE_INTERNALPAINT 0x008 /* get region if internal paint is pending */
2518 #define UPDATE_ALLCHILDREN 0x010 /* force repaint of all children */
2519 #define UPDATE_NOCHILDREN 0x020 /* don't try to repaint any children */
2520 #define UPDATE_NOREGION 0x040 /* don't return a region, only the flags */
2521 #define UPDATE_DELAYED_ERASE 0x080 /* still needs erase after BeginPaint */
2522 #define UPDATE_CLIPCHILDREN 0x100 /* remove clipped children from the update region */
2525 /* Update the z order of a window so that a given rectangle is fully visible */
2526 @REQ(update_window_zorder)
2527 user_handle_t window; /* handle to the window */
2528 rectangle_t rect; /* rectangle that must be visible (in client coords) */
2529 @END
2532 /* Mark parts of a window as needing a redraw */
2533 @REQ(redraw_window)
2534 user_handle_t window; /* handle to the window */
2535 unsigned int flags; /* RDW_* flags */
2536 VARARG(region,rectangles); /* list of rectangles for the region (in window coords) */
2537 @END
2540 /* Set a window property */
2541 @REQ(set_window_property)
2542 user_handle_t window; /* handle to the window */
2543 lparam_t data; /* data to store */
2544 atom_t atom; /* property atom (if no name specified) */
2545 VARARG(name,unicode_str); /* property name */
2546 @END
2549 /* Remove a window property */
2550 @REQ(remove_window_property)
2551 user_handle_t window; /* handle to the window */
2552 atom_t atom; /* property atom (if no name specified) */
2553 VARARG(name,unicode_str); /* property name */
2554 @REPLY
2555 lparam_t data; /* data stored in property */
2556 @END
2559 /* Get a window property */
2560 @REQ(get_window_property)
2561 user_handle_t window; /* handle to the window */
2562 atom_t atom; /* property atom (if no name specified) */
2563 VARARG(name,unicode_str); /* property name */
2564 @REPLY
2565 lparam_t data; /* data stored in property */
2566 @END
2569 /* Get the list of properties of a window */
2570 @REQ(get_window_properties)
2571 user_handle_t window; /* handle to the window */
2572 @REPLY
2573 int total; /* total number of properties */
2574 VARARG(props,properties); /* list of properties */
2575 @END
2578 /* Create a window station */
2579 @REQ(create_winstation)
2580 unsigned int flags; /* window station flags */
2581 unsigned int access; /* wanted access rights */
2582 unsigned int attributes; /* object attributes */
2583 obj_handle_t rootdir; /* root directory */
2584 VARARG(name,unicode_str); /* object name */
2585 @REPLY
2586 obj_handle_t handle; /* handle to the window station */
2587 @END
2590 /* Open a handle to a window station */
2591 @REQ(open_winstation)
2592 unsigned int access; /* wanted access rights */
2593 unsigned int attributes; /* object attributes */
2594 obj_handle_t rootdir; /* root directory */
2595 VARARG(name,unicode_str); /* object name */
2596 @REPLY
2597 obj_handle_t handle; /* handle to the window station */
2598 @END
2601 /* Close a window station */
2602 @REQ(close_winstation)
2603 obj_handle_t handle; /* handle to the window station */
2604 @END
2607 /* Get the process current window station */
2608 @REQ(get_process_winstation)
2609 @REPLY
2610 obj_handle_t handle; /* handle to the window station */
2611 @END
2614 /* Set the process current window station */
2615 @REQ(set_process_winstation)
2616 obj_handle_t handle; /* handle to the window station */
2617 @END
2620 /* Enumerate window stations */
2621 @REQ(enum_winstation)
2622 unsigned int index; /* current index */
2623 @REPLY
2624 unsigned int next; /* next index */
2625 VARARG(name,unicode_str); /* window station name */
2626 @END
2629 /* Create a desktop */
2630 @REQ(create_desktop)
2631 unsigned int flags; /* desktop flags */
2632 unsigned int access; /* wanted access rights */
2633 unsigned int attributes; /* object attributes */
2634 VARARG(name,unicode_str); /* object name */
2635 @REPLY
2636 obj_handle_t handle; /* handle to the desktop */
2637 @END
2640 /* Open a handle to a desktop */
2641 @REQ(open_desktop)
2642 obj_handle_t winsta; /* window station to open (null allowed) */
2643 unsigned int flags; /* desktop flags */
2644 unsigned int access; /* wanted access rights */
2645 unsigned int attributes; /* object attributes */
2646 VARARG(name,unicode_str); /* object name */
2647 @REPLY
2648 obj_handle_t handle; /* handle to the desktop */
2649 @END
2652 /* Open a handle to current input desktop */
2653 @REQ(open_input_desktop)
2654 unsigned int flags; /* desktop flags */
2655 unsigned int access; /* wanted access rights */
2656 unsigned int attributes; /* object attributes */
2657 @REPLY
2658 obj_handle_t handle; /* handle to the desktop */
2659 @END
2662 /* Close a desktop */
2663 @REQ(close_desktop)
2664 obj_handle_t handle; /* handle to the desktop */
2665 @END
2668 /* Get the thread current desktop */
2669 @REQ(get_thread_desktop)
2670 thread_id_t tid; /* thread id */
2671 @REPLY
2672 obj_handle_t handle; /* handle to the desktop */
2673 @END
2676 /* Set the thread current desktop */
2677 @REQ(set_thread_desktop)
2678 obj_handle_t handle; /* handle to the desktop */
2679 @END
2682 /* Enumerate desktops */
2683 @REQ(enum_desktop)
2684 obj_handle_t winstation; /* handle to the window station */
2685 unsigned int index; /* current index */
2686 @REPLY
2687 unsigned int next; /* next index */
2688 VARARG(name,unicode_str); /* window station name */
2689 @END
2692 /* Get/set information about a user object (window station or desktop) */
2693 @REQ(set_user_object_info)
2694 obj_handle_t handle; /* handle to the object */
2695 unsigned int flags; /* information to set/get */
2696 unsigned int obj_flags; /* new object flags */
2697 @REPLY
2698 int is_desktop; /* is object a desktop? */
2699 unsigned int old_obj_flags; /* old object flags */
2700 VARARG(name,unicode_str); /* object name */
2701 @END
2702 #define SET_USER_OBJECT_SET_FLAGS 1
2703 #define SET_USER_OBJECT_GET_FULL_NAME 2
2706 /* Register a hotkey */
2707 @REQ(register_hotkey)
2708 user_handle_t window; /* handle to the window */
2709 int id; /* hotkey identifier */
2710 unsigned int flags; /* modifier keys */
2711 unsigned int vkey; /* virtual key code */
2712 @REPLY
2713 int replaced; /* did we replace an existing hotkey? */
2714 unsigned int flags; /* flags of replaced hotkey */
2715 unsigned int vkey; /* virtual key code of replaced hotkey */
2716 @END
2719 /* Unregister a hotkey */
2720 @REQ(unregister_hotkey)
2721 user_handle_t window; /* handle to the window */
2722 int id; /* hotkey identifier */
2723 @REPLY
2724 unsigned int flags; /* flags of removed hotkey */
2725 unsigned int vkey; /* virtual key code of removed hotkey */
2726 @END
2729 /* Attach (or detach) thread inputs */
2730 @REQ(attach_thread_input)
2731 thread_id_t tid_from; /* thread to be attached */
2732 thread_id_t tid_to; /* thread to which tid_from should be attached */
2733 int attach; /* is it an attach? */
2734 @END
2737 /* Get input data for a given thread */
2738 @REQ(get_thread_input)
2739 thread_id_t tid; /* id of thread */
2740 @REPLY
2741 user_handle_t focus; /* handle to the focus window */
2742 user_handle_t capture; /* handle to the capture window */
2743 user_handle_t active; /* handle to the active window */
2744 user_handle_t foreground; /* handle to the global foreground window */
2745 user_handle_t menu_owner; /* handle to the menu owner */
2746 user_handle_t move_size; /* handle to the moving/resizing window */
2747 user_handle_t caret; /* handle to the caret window */
2748 user_handle_t cursor; /* handle to the cursor */
2749 int show_count; /* cursor show count */
2750 rectangle_t rect; /* caret rectangle */
2751 @END
2754 /* Get the time of the last input event */
2755 @REQ(get_last_input_time)
2756 @REPLY
2757 unsigned int time;
2758 @END
2761 /* Retrieve queue keyboard state for current thread or global async state */
2762 @REQ(get_key_state)
2763 int async; /* whether to query the async state */
2764 int key; /* optional key code or -1 */
2765 @REPLY
2766 unsigned char state; /* state of specified key */
2767 VARARG(keystate,bytes); /* state array for all the keys */
2768 @END
2770 /* Set queue keyboard state for current thread */
2771 @REQ(set_key_state)
2772 int async; /* whether to change the async state too */
2773 VARARG(keystate,bytes); /* state array for all the keys */
2774 @END
2776 /* Set the system foreground window */
2777 @REQ(set_foreground_window)
2778 user_handle_t handle; /* handle to the foreground window */
2779 @REPLY
2780 user_handle_t previous; /* handle to the previous foreground window */
2781 int send_msg_old; /* whether we have to send a msg to the old window */
2782 int send_msg_new; /* whether we have to send a msg to the new window */
2783 @END
2785 /* Set the current thread focus window */
2786 @REQ(set_focus_window)
2787 user_handle_t handle; /* handle to the focus window */
2788 @REPLY
2789 user_handle_t previous; /* handle to the previous focus window */
2790 @END
2792 /* Set the current thread active window */
2793 @REQ(set_active_window)
2794 user_handle_t handle; /* handle to the active window */
2795 @REPLY
2796 user_handle_t previous; /* handle to the previous active window */
2797 @END
2799 /* Set the current thread capture window */
2800 @REQ(set_capture_window)
2801 user_handle_t handle; /* handle to the capture window */
2802 unsigned int flags; /* capture flags (see below) */
2803 @REPLY
2804 user_handle_t previous; /* handle to the previous capture window */
2805 user_handle_t full_handle; /* full 32-bit handle of new capture window */
2806 @END
2807 #define CAPTURE_MENU 0x01 /* capture is for a menu */
2808 #define CAPTURE_MOVESIZE 0x02 /* capture is for moving/resizing */
2811 /* Set the current thread caret window */
2812 @REQ(set_caret_window)
2813 user_handle_t handle; /* handle to the caret window */
2814 int width; /* caret width */
2815 int height; /* caret height */
2816 @REPLY
2817 user_handle_t previous; /* handle to the previous caret window */
2818 rectangle_t old_rect; /* previous caret rectangle */
2819 int old_hide; /* previous hide count */
2820 int old_state; /* previous caret state (1=on, 0=off) */
2821 @END
2824 /* Set the current thread caret information */
2825 @REQ(set_caret_info)
2826 unsigned int flags; /* caret flags (see below) */
2827 user_handle_t handle; /* handle to the caret window */
2828 int x; /* caret x position */
2829 int y; /* caret y position */
2830 int hide; /* increment for hide count (can be negative to show it) */
2831 int state; /* caret state (see below) */
2832 @REPLY
2833 user_handle_t full_handle; /* handle to the current caret window */
2834 rectangle_t old_rect; /* previous caret rectangle */
2835 int old_hide; /* previous hide count */
2836 int old_state; /* previous caret state (1=on, 0=off) */
2837 @END
2838 #define SET_CARET_POS 0x01 /* set the caret position from x,y */
2839 #define SET_CARET_HIDE 0x02 /* increment the caret hide count */
2840 #define SET_CARET_STATE 0x04 /* set the caret on/off state */
2841 enum caret_state
2843 CARET_STATE_OFF, /* off */
2844 CARET_STATE_ON, /* on */
2845 CARET_STATE_TOGGLE, /* toggle current state */
2846 CARET_STATE_ON_IF_MOVED /* on if the position differs, unchanged otherwise */
2850 /* Set a window hook */
2851 @REQ(set_hook)
2852 int id; /* id of the hook */
2853 process_id_t pid; /* id of process to set the hook into */
2854 thread_id_t tid; /* id of thread to set the hook into */
2855 int event_min;
2856 int event_max;
2857 client_ptr_t proc; /* hook procedure */
2858 int flags;
2859 int unicode; /* is it a unicode hook? */
2860 VARARG(module,unicode_str); /* module name */
2861 @REPLY
2862 user_handle_t handle; /* handle to the hook */
2863 unsigned int active_hooks; /* active hooks bitmap */
2864 @END
2867 /* Remove a window hook */
2868 @REQ(remove_hook)
2869 user_handle_t handle; /* handle to the hook */
2870 client_ptr_t proc; /* hook procedure if handle is 0 */
2871 int id; /* id of the hook if handle is 0 */
2872 @REPLY
2873 unsigned int active_hooks; /* active hooks bitmap */
2874 @END
2877 /* Start calling a hook chain */
2878 @REQ(start_hook_chain)
2879 int id; /* id of the hook */
2880 int event; /* signalled event */
2881 user_handle_t window; /* handle to the event window */
2882 int object_id; /* object id for out of context winevent */
2883 int child_id; /* child id for out of context winevent */
2884 @REPLY
2885 user_handle_t handle; /* handle to the next hook */
2886 process_id_t pid; /* process id for low-level keyboard/mouse hooks */
2887 thread_id_t tid; /* thread id for low-level keyboard/mouse hooks */
2888 int unicode; /* is it a unicode hook? */
2889 client_ptr_t proc; /* hook procedure */
2890 unsigned int active_hooks; /* active hooks bitmap */
2891 VARARG(module,unicode_str); /* module name */
2892 @END
2895 /* Finished calling a hook chain */
2896 @REQ(finish_hook_chain)
2897 int id; /* id of the hook */
2898 @END
2901 /* Get the hook information */
2902 @REQ(get_hook_info)
2903 user_handle_t handle; /* handle to the current hook */
2904 int get_next; /* do we want info about current or next hook? */
2905 int event; /* signalled event */
2906 user_handle_t window; /* handle to the event window */
2907 int object_id; /* object id for out of context winevent */
2908 int child_id; /* child id for out of context winevent */
2909 @REPLY
2910 user_handle_t handle; /* handle to the hook */
2911 int id; /* id of the hook */
2912 process_id_t pid; /* process id for low-level keyboard/mouse hooks */
2913 thread_id_t tid; /* thread id for low-level keyboard/mouse hooks */
2914 client_ptr_t proc; /* hook procedure */
2915 int unicode; /* is it a unicode hook? */
2916 VARARG(module,unicode_str); /* module name */
2917 @END
2920 /* Create a window class */
2921 @REQ(create_class)
2922 int local; /* is it a local class? */
2923 atom_t atom; /* class atom */
2924 unsigned int style; /* class style */
2925 mod_handle_t instance; /* module instance */
2926 int extra; /* number of extra class bytes */
2927 int win_extra; /* number of window extra bytes */
2928 client_ptr_t client_ptr; /* pointer to class in client address space */
2929 data_size_t name_offset; /* base class name offset for specified atom */
2930 VARARG(name,unicode_str); /* class name */
2931 @REPLY
2932 atom_t atom; /* resulting class atom */
2933 @END
2936 /* Destroy a window class */
2937 @REQ(destroy_class)
2938 atom_t atom; /* class atom */
2939 mod_handle_t instance; /* module instance */
2940 VARARG(name,unicode_str); /* class name */
2941 @REPLY
2942 client_ptr_t client_ptr; /* pointer to class in client address space */
2943 @END
2946 /* Set some information in a class */
2947 @REQ(set_class_info)
2948 user_handle_t window; /* handle to the window */
2949 unsigned int flags; /* flags for info to set (see below) */
2950 atom_t atom; /* class atom */
2951 unsigned int style; /* class style */
2952 int win_extra; /* number of window extra bytes */
2953 mod_handle_t instance; /* module instance */
2954 int extra_offset; /* offset to set in extra bytes */
2955 data_size_t extra_size; /* size to set in extra bytes */
2956 lparam_t extra_value; /* value to set in extra bytes */
2957 @REPLY
2958 atom_t old_atom; /* previous class atom */
2959 atom_t base_atom; /* base class atom */
2960 mod_handle_t old_instance; /* previous module instance */
2961 lparam_t old_extra_value; /* old value in extra bytes */
2962 unsigned int old_style; /* previous class style */
2963 int old_extra; /* previous number of class extra bytes */
2964 int old_win_extra; /* previous number of window extra bytes */
2965 @END
2966 #define SET_CLASS_ATOM 0x0001
2967 #define SET_CLASS_STYLE 0x0002
2968 #define SET_CLASS_WINEXTRA 0x0004
2969 #define SET_CLASS_INSTANCE 0x0008
2970 #define SET_CLASS_EXTRA 0x0010
2973 /* Open the clipboard */
2974 @REQ(open_clipboard)
2975 user_handle_t window; /* clipboard window */
2976 @REPLY
2977 user_handle_t owner; /* current clipboard owner */
2978 @END
2981 /* Close the clipboard */
2982 @REQ(close_clipboard)
2983 @REPLY
2984 user_handle_t viewer; /* first clipboard viewer */
2985 user_handle_t owner; /* current clipboard owner */
2986 @END
2989 /* Empty the clipboard and grab ownership */
2990 @REQ(empty_clipboard)
2991 @END
2994 /* Add a data format to the clipboard */
2995 @REQ(set_clipboard_data)
2996 unsigned int format; /* clipboard format of the data */
2997 unsigned int lcid; /* locale id to use for synthesizing text formats */
2998 VARARG(data,bytes); /* data contents */
2999 @REPLY
3000 unsigned int seqno; /* sequence number for the set data */
3001 @END
3004 /* Fetch a data format from the clipboard */
3005 @REQ(get_clipboard_data)
3006 unsigned int format; /* clipboard format of the data */
3007 int render; /* will we try to render it if missing? */
3008 int cached; /* do we already have it in the client-side cache? */
3009 unsigned int seqno; /* sequence number for the data in the cache */
3010 @REPLY
3011 unsigned int from; /* for synthesized data, format to generate it from */
3012 user_handle_t owner; /* clipboard owner for delayed-rendered formats */
3013 unsigned int seqno; /* sequence number for the originally set data */
3014 data_size_t total; /* total data size */
3015 VARARG(data,bytes); /* data contents */
3016 @END
3019 /* Retrieve a list of available formats */
3020 @REQ(get_clipboard_formats)
3021 unsigned int format; /* specific format to query, return all if 0 */
3022 @REPLY
3023 unsigned int count; /* count of available formats */
3024 VARARG(formats,uints); /* array of available formats */
3025 @END
3028 /* Retrieve the next available format */
3029 @REQ(enum_clipboard_formats)
3030 unsigned int previous; /* previous format, or first if 0 */
3031 @REPLY
3032 unsigned int format; /* next format */
3033 @END
3036 /* Release ownership of the clipboard */
3037 @REQ(release_clipboard)
3038 user_handle_t owner; /* clipboard owner to release */
3039 @REPLY
3040 user_handle_t viewer; /* first clipboard viewer */
3041 user_handle_t owner; /* current clipboard owner */
3042 @END
3045 /* Get clipboard information */
3046 @REQ(get_clipboard_info)
3047 @REPLY
3048 user_handle_t window; /* clipboard window */
3049 user_handle_t owner; /* clipboard owner */
3050 user_handle_t viewer; /* clipboard viewer */
3051 unsigned int seqno; /* current sequence number */
3052 @END
3055 /* Set the clipboard viewer window */
3056 @REQ(set_clipboard_viewer)
3057 user_handle_t viewer; /* clipboard viewer */
3058 user_handle_t previous; /* if non-zero, check that this was the previous viewer */
3059 @REPLY
3060 user_handle_t old_viewer; /* previous clipboard viewer */
3061 user_handle_t owner; /* clipboard owner */
3062 @END
3065 /* Add a clipboard listener window */
3066 @REQ(add_clipboard_listener)
3067 user_handle_t window; /* clipboard listener window */
3068 @END
3071 /* Remove a clipboard listener window */
3072 @REQ(remove_clipboard_listener)
3073 user_handle_t window; /* clipboard listener window */
3074 @END
3077 /* Open a security token */
3078 @REQ(open_token)
3079 obj_handle_t handle; /* handle to the thread or process */
3080 unsigned int access; /* access rights to the new token */
3081 unsigned int attributes;/* object attributes */
3082 unsigned int flags; /* flags (see below) */
3083 @REPLY
3084 obj_handle_t token; /* handle to the token */
3085 @END
3086 #define OPEN_TOKEN_THREAD 1
3087 #define OPEN_TOKEN_AS_SELF 2
3090 /* Set/get the global windows */
3091 @REQ(set_global_windows)
3092 unsigned int flags; /* flags for fields to set (see below) */
3093 user_handle_t shell_window; /* handle to the new shell window */
3094 user_handle_t shell_listview; /* handle to the new shell listview window */
3095 user_handle_t progman_window; /* handle to the new program manager window */
3096 user_handle_t taskman_window; /* handle to the new task manager window */
3097 @REPLY
3098 user_handle_t old_shell_window; /* handle to the shell window */
3099 user_handle_t old_shell_listview; /* handle to the shell listview window */
3100 user_handle_t old_progman_window; /* handle to the new program manager window */
3101 user_handle_t old_taskman_window; /* handle to the new task manager window */
3102 @END
3103 #define SET_GLOBAL_SHELL_WINDOWS 0x01 /* set both main shell and listview windows */
3104 #define SET_GLOBAL_PROGMAN_WINDOW 0x02
3105 #define SET_GLOBAL_TASKMAN_WINDOW 0x04
3107 /* Adjust the privileges held by a token */
3108 @REQ(adjust_token_privileges)
3109 obj_handle_t handle; /* handle to the token */
3110 int disable_all; /* disable all privileges? */
3111 int get_modified_state; /* get modified privileges? */
3112 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges to enable/disable/remove */
3113 @REPLY
3114 unsigned int len; /* total length in bytes required to store token privileges */
3115 VARARG(privileges,LUID_AND_ATTRIBUTES); /* modified privileges */
3116 @END
3118 /* Retrieves the set of privileges held by or available to a token */
3119 @REQ(get_token_privileges)
3120 obj_handle_t handle; /* handle to the token */
3121 @REPLY
3122 unsigned int len; /* total length in bytes required to store token privileges */
3123 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges held by or available to a token */
3124 @END
3126 /* Check the token has the required privileges */
3127 @REQ(check_token_privileges)
3128 obj_handle_t handle; /* handle to the token */
3129 int all_required; /* are all the privileges required for the check to succeed? */
3130 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges to check */
3131 @REPLY
3132 int has_privileges; /* does the token have the required privileges? */
3133 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges held by or available to a token */
3134 @END
3136 @REQ(duplicate_token)
3137 obj_handle_t handle; /* handle to the token to duplicate */
3138 unsigned int access; /* access rights to the new token */
3139 int primary; /* is the new token to be a primary one? */
3140 int impersonation_level; /* impersonation level of the new token */
3141 VARARG(objattr,object_attributes); /* object attributes */
3142 @REPLY
3143 obj_handle_t new_handle; /* duplicated handle */
3144 @END
3146 @REQ(filter_token)
3147 obj_handle_t handle; /* handle to the token to duplicate */
3148 unsigned int flags; /* flags */
3149 data_size_t privileges_size; /* size of privileges */
3150 VARARG(privileges,LUID_AND_ATTRIBUTES,privileges_size); /* privileges to remove from new token */
3151 VARARG(disable_sids,SID); /* array of groups to remove from new token */
3152 @REPLY
3153 obj_handle_t new_handle; /* filtered handle */
3154 @END
3156 @REQ(access_check)
3157 obj_handle_t handle; /* handle to the token */
3158 unsigned int desired_access; /* desired access to the object */
3159 generic_map_t mapping; /* mapping to specific rights */
3160 VARARG(sd,security_descriptor); /* security descriptor to check */
3161 @REPLY
3162 unsigned int access_granted; /* access rights actually granted */
3163 unsigned int access_status; /* was access granted? */
3164 unsigned int privileges_len; /* length needed to store privileges */
3165 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges used during access check */
3166 @END
3168 @REQ(get_token_sid)
3169 obj_handle_t handle; /* handle to the token */
3170 unsigned int which_sid; /* which SID to retrieve from the token */
3171 @REPLY
3172 data_size_t sid_len; /* length needed to store sid */
3173 VARARG(sid,SID); /* the sid specified by which_sid from the token */
3174 @END
3176 @REQ(get_token_groups)
3177 obj_handle_t handle; /* handle to the token */
3178 @REPLY
3179 data_size_t user_len; /* length needed to store user */
3180 VARARG(user,token_groups); /* groups the token's user belongs to */
3181 @END
3183 @REQ(get_token_default_dacl)
3184 obj_handle_t handle; /* handle to the token */
3185 @REPLY
3186 data_size_t acl_len; /* length needed to store access control list */
3187 VARARG(acl,ACL); /* access control list */
3188 @END
3190 @REQ(set_token_default_dacl)
3191 obj_handle_t handle; /* handle to the token */
3192 VARARG(acl,ACL); /* default dacl to set */
3193 @END
3195 @REQ(set_security_object)
3196 obj_handle_t handle; /* handle to the object */
3197 unsigned int security_info; /* which parts of security descriptor to set */
3198 VARARG(sd,security_descriptor); /* security descriptor to set */
3199 @END
3201 @REQ(get_security_object)
3202 obj_handle_t handle; /* handle to the object */
3203 unsigned int security_info; /* which parts of security descriptor to get */
3204 @REPLY
3205 unsigned int sd_len; /* buffer size needed for sd */
3206 VARARG(sd,security_descriptor); /* retrieved security descriptor */
3207 @END
3210 struct handle_info
3212 process_id_t owner;
3213 obj_handle_t handle;
3214 unsigned int access;
3215 unsigned int attributes;
3216 unsigned int type;
3219 /* Return a list of all opened handles */
3220 @REQ(get_system_handles)
3221 @REPLY
3222 unsigned int count; /* number of handles */
3223 VARARG(data,handle_infos); /* array of handle_infos */
3224 @END
3227 /* Create a mailslot */
3228 @REQ(create_mailslot)
3229 unsigned int access; /* wanted access rights */
3230 timeout_t read_timeout;
3231 unsigned int max_msgsize;
3232 VARARG(objattr,object_attributes); /* object attributes */
3233 @REPLY
3234 obj_handle_t handle; /* handle to the mailslot */
3235 @END
3238 /* Set mailslot information */
3239 @REQ(set_mailslot_info)
3240 obj_handle_t handle; /* handle to the mailslot */
3241 timeout_t read_timeout;
3242 unsigned int flags;
3243 @REPLY
3244 timeout_t read_timeout;
3245 unsigned int max_msgsize;
3246 @END
3247 #define MAILSLOT_SET_READ_TIMEOUT 1
3250 /* Create a directory object */
3251 @REQ(create_directory)
3252 unsigned int access; /* access flags */
3253 VARARG(objattr,object_attributes); /* object attributes */
3254 @REPLY
3255 obj_handle_t handle; /* handle to the directory */
3256 @END
3259 /* Open a directory object */
3260 @REQ(open_directory)
3261 unsigned int access; /* access flags */
3262 unsigned int attributes; /* object attributes */
3263 obj_handle_t rootdir; /* root directory */
3264 VARARG(directory_name,unicode_str); /* Directory name */
3265 @REPLY
3266 obj_handle_t handle; /* handle to the directory */
3267 @END
3270 /* Get a directory entry by index */
3271 @REQ(get_directory_entry)
3272 obj_handle_t handle; /* handle to the directory */
3273 unsigned int index; /* entry index */
3274 @REPLY
3275 data_size_t name_len; /* length of the entry name in bytes */
3276 VARARG(name,unicode_str,name_len); /* entry name */
3277 VARARG(type,unicode_str); /* entry type */
3278 @END
3281 /* Create a symbolic link object */
3282 @REQ(create_symlink)
3283 unsigned int access; /* access flags */
3284 VARARG(objattr,object_attributes); /* object attributes */
3285 VARARG(target_name,unicode_str); /* target name */
3286 @REPLY
3287 obj_handle_t handle; /* handle to the symlink */
3288 @END
3291 /* Open a symbolic link object */
3292 @REQ(open_symlink)
3293 unsigned int access; /* access flags */
3294 unsigned int attributes; /* object attributes */
3295 obj_handle_t rootdir; /* root directory */
3296 VARARG(name,unicode_str); /* symlink name */
3297 @REPLY
3298 obj_handle_t handle; /* handle to the symlink */
3299 @END
3302 /* Query a symbolic link object */
3303 @REQ(query_symlink)
3304 obj_handle_t handle; /* handle to the symlink */
3305 @REPLY
3306 data_size_t total; /* total needed size for name */
3307 VARARG(target_name,unicode_str); /* target name */
3308 @END
3311 /* Query basic object information */
3312 @REQ(get_object_info)
3313 obj_handle_t handle; /* handle to the object */
3314 @REPLY
3315 unsigned int access; /* granted access mask */
3316 unsigned int ref_count; /* object ref count */
3317 unsigned int handle_count; /* object handle count */
3318 @END
3321 /* Query the full name of an object */
3322 @REQ(get_object_name)
3323 obj_handle_t handle; /* handle to the object */
3324 @REPLY
3325 data_size_t total; /* total needed size for name */
3326 VARARG(name,unicode_str); /* object name */
3327 @END
3330 /* Query object type name information */
3331 @REQ(get_object_type)
3332 obj_handle_t handle; /* handle to the object */
3333 @REPLY
3334 VARARG(info,object_type_info); /* type information */
3335 @END
3338 /* Query type information for all types */
3339 @REQ(get_object_types)
3340 @REPLY
3341 int count; /* total count of object types */
3342 VARARG(info,object_types_info); /* type information */
3343 @END
3346 /* Allocate a locally-unique identifier */
3347 @REQ(allocate_locally_unique_id)
3348 @REPLY
3349 luid_t luid;
3350 @END
3353 /* Create a device manager */
3354 @REQ(create_device_manager)
3355 unsigned int access; /* wanted access rights */
3356 unsigned int attributes; /* object attributes */
3357 @REPLY
3358 obj_handle_t handle; /* handle to the device */
3359 @END
3362 /* Create a device */
3363 @REQ(create_device)
3364 obj_handle_t rootdir; /* root directory */
3365 client_ptr_t user_ptr; /* opaque ptr for use by client */
3366 obj_handle_t manager; /* device manager */
3367 VARARG(name,unicode_str); /* object name */
3368 @END
3371 /* Delete a device */
3372 @REQ(delete_device)
3373 obj_handle_t manager; /* handle to the device manager */
3374 client_ptr_t device; /* pointer to the device */
3375 @END
3378 /* Retrieve the next pending device irp request */
3379 @REQ(get_next_device_request)
3380 obj_handle_t manager; /* handle to the device manager */
3381 obj_handle_t prev; /* handle to the previous irp */
3382 unsigned int status; /* status of the previous irp */
3383 client_ptr_t user_ptr; /* user pointer of the previous irp */
3384 int pending; /* was the previous irp marked pending? */
3385 unsigned int iosb_status; /* IOSB status of the previous irp */
3386 data_size_t result; /* IOSB result of the previous irp */
3387 VARARG(data,bytes); /* output data of the previous irp */
3388 @REPLY
3389 irp_params_t params; /* irp parameters */
3390 obj_handle_t next; /* handle to the next irp */
3391 thread_id_t client_tid; /* tid of thread calling irp */
3392 client_ptr_t client_thread; /* pointer to thread object of calling irp */
3393 data_size_t in_size; /* total needed input size */
3394 VARARG(next_data,bytes); /* input data of the next irp */
3395 @END
3398 /* Get kernel pointer from server object */
3399 @REQ(get_kernel_object_ptr)
3400 obj_handle_t manager; /* handle to the device manager */
3401 obj_handle_t handle; /* object handle */
3402 @REPLY
3403 client_ptr_t user_ptr; /* kernel object pointer */
3404 @END
3407 /* Associate kernel pointer with server object */
3408 @REQ(set_kernel_object_ptr)
3409 obj_handle_t manager; /* handle to the device manager */
3410 obj_handle_t handle; /* object handle */
3411 client_ptr_t user_ptr; /* kernel object pointer */
3412 @END
3415 /* Grab server object reference from kernel object pointer */
3416 @REQ(grab_kernel_object)
3417 obj_handle_t manager; /* handle to the device manager */
3418 client_ptr_t user_ptr; /* kernel object pointer */
3419 @END
3422 /* Release server object reference from kernel object pointer */
3423 @REQ(release_kernel_object)
3424 obj_handle_t manager; /* handle to the device manager */
3425 client_ptr_t user_ptr; /* kernel object pointer */
3426 @END
3429 /* Get handle from kernel object pointer */
3430 @REQ(get_kernel_object_handle)
3431 obj_handle_t manager; /* handle to the device manager */
3432 client_ptr_t user_ptr; /* kernel object pointer */
3433 unsigned int access; /* wanted access rights */
3434 @REPLY
3435 obj_handle_t handle; /* kernel object handle */
3436 @END
3439 /* Make the current process a system process */
3440 @REQ(make_process_system)
3441 obj_handle_t handle; /* handle to the process */
3442 @REPLY
3443 obj_handle_t event; /* event signaled when all user processes have exited */
3444 @END
3447 /* Get detailed fixed-size information about a token */
3448 @REQ(get_token_info)
3449 obj_handle_t handle; /* handle to the object */
3450 @REPLY
3451 luid_t token_id; /* locally-unique identifier of the token */
3452 luid_t modified_id; /* locally-unique identifier of the modified version of the token */
3453 unsigned int session_id; /* token session id */
3454 int primary; /* is the token primary or impersonation? */
3455 int impersonation_level; /* level of impersonation */
3456 int elevation; /* elevation type */
3457 int group_count; /* the number of groups the token is a member of */
3458 int privilege_count; /* the number of privileges the token has */
3459 @END
3462 /* Create a token which is an elevation counterpart to this token */
3463 @REQ(create_linked_token)
3464 obj_handle_t handle; /* handle to the token */
3465 @REPLY
3466 obj_handle_t linked; /* handle to the linked token */
3467 @END
3470 /* Create I/O completion port */
3471 @REQ(create_completion)
3472 unsigned int access; /* desired access to a port */
3473 unsigned int concurrent; /* max number of concurrent active threads */
3474 VARARG(objattr,object_attributes); /* object attributes */
3475 @REPLY
3476 obj_handle_t handle; /* port handle */
3477 @END
3480 /* Open I/O completion port */
3481 @REQ(open_completion)
3482 unsigned int access; /* desired access to a port */
3483 unsigned int attributes; /* object attributes */
3484 obj_handle_t rootdir; /* root directory */
3485 VARARG(filename,unicode_str); /* port name */
3486 @REPLY
3487 obj_handle_t handle; /* port handle */
3488 @END
3491 /* add completion to completion port */
3492 @REQ(add_completion)
3493 obj_handle_t handle; /* port handle */
3494 apc_param_t ckey; /* completion key */
3495 apc_param_t cvalue; /* completion value */
3496 apc_param_t information; /* IO_STATUS_BLOCK Information */
3497 unsigned int status; /* completion result */
3498 @END
3501 /* get completion from completion port queue */
3502 @REQ(remove_completion)
3503 obj_handle_t handle; /* port handle */
3504 @REPLY
3505 apc_param_t ckey; /* completion key */
3506 apc_param_t cvalue; /* completion value */
3507 apc_param_t information; /* IO_STATUS_BLOCK Information */
3508 unsigned int status; /* completion result */
3509 @END
3512 /* get completion queue depth */
3513 @REQ(query_completion)
3514 obj_handle_t handle; /* port handle */
3515 @REPLY
3516 unsigned int depth; /* completion queue depth */
3517 @END
3520 /* associate object with completion port */
3521 @REQ(set_completion_info)
3522 obj_handle_t handle; /* object handle */
3523 apc_param_t ckey; /* completion key */
3524 obj_handle_t chandle; /* port handle */
3525 @END
3528 /* check for associated completion and push msg */
3529 @REQ(add_fd_completion)
3530 obj_handle_t handle; /* async' object */
3531 apc_param_t cvalue; /* completion value */
3532 apc_param_t information; /* IO_STATUS_BLOCK Information */
3533 unsigned int status; /* completion status */
3534 int async; /* completion is an async result */
3535 @END
3538 /* set fd completion information */
3539 @REQ(set_fd_completion_mode)
3540 obj_handle_t handle; /* handle to a file or directory */
3541 unsigned int flags; /* completion notification flags */
3542 @END
3545 /* set fd disposition information */
3546 @REQ(set_fd_disp_info)
3547 obj_handle_t handle; /* handle to a file or directory */
3548 int unlink; /* whether to unlink file on close */
3549 @END
3552 /* set fd name information */
3553 @REQ(set_fd_name_info)
3554 obj_handle_t handle; /* handle to a file or directory */
3555 obj_handle_t rootdir; /* root directory */
3556 data_size_t namelen; /* length of NT name in bytes */
3557 int link; /* link instead of renaming */
3558 int replace; /* replace an existing file? */
3559 VARARG(name,unicode_str,namelen); /* NT name */
3560 VARARG(filename,string); /* new file name */
3561 @END
3564 /* set fd eof information */
3565 @REQ(set_fd_eof_info)
3566 obj_handle_t handle; /* handle to a file or directory */
3567 file_pos_t eof; /* offset of eof of file */
3568 @END
3571 /* Retrieve layered info for a window */
3572 @REQ(get_window_layered_info)
3573 user_handle_t handle; /* handle to the window */
3574 @REPLY
3575 unsigned int color_key; /* color key */
3576 unsigned int alpha; /* alpha (0..255) */
3577 unsigned int flags; /* LWA_* flags */
3578 @END
3581 /* Set layered info for a window */
3582 @REQ(set_window_layered_info)
3583 user_handle_t handle; /* handle to the window */
3584 unsigned int color_key; /* color key */
3585 unsigned int alpha; /* alpha (0..255) */
3586 unsigned int flags; /* LWA_* flags */
3587 @END
3590 /* Allocate an arbitrary user handle */
3591 @REQ(alloc_user_handle)
3592 @REPLY
3593 user_handle_t handle; /* allocated handle */
3594 @END
3597 /* Free an arbitrary user handle */
3598 @REQ(free_user_handle)
3599 user_handle_t handle; /* handle to free*/
3600 @END
3603 /* Set/get the current cursor */
3604 @REQ(set_cursor)
3605 unsigned int flags; /* flags for fields to set (see below) */
3606 user_handle_t handle; /* handle to the cursor */
3607 int show_count; /* show count increment/decrement */
3608 int x; /* cursor position */
3609 int y;
3610 rectangle_t clip; /* cursor clip rectangle */
3611 unsigned int clip_msg; /* message to post on cursor clip changes */
3612 @REPLY
3613 user_handle_t prev_handle; /* previous handle */
3614 int prev_count; /* previous show count */
3615 int prev_x; /* previous position */
3616 int prev_y;
3617 int new_x; /* new position */
3618 int new_y;
3619 rectangle_t new_clip; /* new clip rectangle */
3620 unsigned int last_change; /* time of last position change */
3621 @END
3622 #define SET_CURSOR_HANDLE 0x01
3623 #define SET_CURSOR_COUNT 0x02
3624 #define SET_CURSOR_POS 0x04
3625 #define SET_CURSOR_CLIP 0x08
3626 #define SET_CURSOR_NOCLIP 0x10
3628 /* Get the history of the 64 last cursor positions */
3629 @REQ(get_cursor_history)
3630 @REPLY
3631 VARARG(history,cursor_positions);
3632 @END
3635 /* Batch read rawinput message data */
3636 @REQ(get_rawinput_buffer)
3637 data_size_t rawinput_size; /* size of RAWINPUT structure */
3638 data_size_t buffer_size; /* size of output buffer */
3639 @REPLY
3640 data_size_t next_size; /* minimum size to get next message data */
3641 unsigned int count;
3642 VARARG(data,bytes);
3643 @END
3645 /* Modify the list of registered rawinput devices */
3646 @REQ(update_rawinput_devices)
3647 VARARG(devices,rawinput_devices);
3648 @END
3650 /* Retrieve the list of registered rawinput devices */
3651 @REQ(get_rawinput_devices)
3652 @REPLY
3653 unsigned int device_count;
3654 VARARG(devices,rawinput_devices);
3655 @END
3657 /* Create a new job object */
3658 @REQ(create_job)
3659 unsigned int access; /* wanted access rights */
3660 VARARG(objattr,object_attributes); /* object attributes */
3661 @REPLY
3662 obj_handle_t handle; /* handle to the job */
3663 @END
3666 /* Open a job object */
3667 @REQ(open_job)
3668 unsigned int access; /* wanted access rights */
3669 unsigned int attributes; /* object attributes */
3670 obj_handle_t rootdir; /* root directory */
3671 VARARG(name,unicode_str); /* object name */
3672 @REPLY
3673 obj_handle_t handle; /* handle to the job */
3674 @END
3677 /* Assign a job object to a process */
3678 @REQ(assign_job)
3679 obj_handle_t job; /* handle to the job */
3680 obj_handle_t process; /* handle to the process */
3681 @END
3684 /* Check if a process is associated with a job */
3685 @REQ(process_in_job)
3686 obj_handle_t job; /* handle to the job */
3687 obj_handle_t process; /* handle to the process */
3688 @END
3691 /* Set limit flags on a job */
3692 @REQ(set_job_limits)
3693 obj_handle_t handle; /* handle to the job */
3694 unsigned int limit_flags; /* new limit flags */
3695 @END
3698 /* Set new completion port for a job */
3699 @REQ(set_job_completion_port)
3700 obj_handle_t job; /* handle to the job */
3701 obj_handle_t port; /* handle to the completion port */
3702 client_ptr_t key; /* key to send with completion messages */
3703 @END
3706 /* Retrieve information about a job */
3707 @REQ(get_job_info)
3708 obj_handle_t handle; /* handle to the job */
3709 @REPLY
3710 int total_processes; /* total count of processes */
3711 int active_processes; /* count of running processes */
3712 VARARG(pids,uints); /* list of active pids */
3713 @END
3716 /* Terminate all processes associated with the job */
3717 @REQ(terminate_job)
3718 obj_handle_t handle; /* handle to the job */
3719 int status; /* process exit code */
3720 @END
3723 /* Suspend a process */
3724 @REQ(suspend_process)
3725 obj_handle_t handle; /* process handle */
3726 @END
3729 /* Resume a process */
3730 @REQ(resume_process)
3731 obj_handle_t handle; /* process handle */
3732 @END
3735 /* Iterate thread list for process */
3736 @REQ(get_next_thread)
3737 obj_handle_t process; /* process handle */
3738 obj_handle_t last; /* thread handle to start with */
3739 unsigned int access; /* desired access for returned handle */
3740 unsigned int attributes; /* returned handle attributes */
3741 unsigned int flags; /* controls iteration direction */
3742 @REPLY
3743 obj_handle_t handle; /* next thread handle */
3744 @END