msvcrt: Import sinhf implementation from musl.
[wine.git] / server / protocol.def
blob93e2f56e037a2d50e01be82d510335b1c9318f15
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]; } ymm_high_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 } hid;
308 struct hardware_msg_data
310 lparam_t info; /* extra info */
311 unsigned int hw_id; /* unique id */
312 unsigned int flags; /* hook flags */
313 struct hw_msg_source source; /* message source */
314 union rawinput rawinput; /* rawinput message data */
317 struct callback_msg_data
319 client_ptr_t callback; /* callback function */
320 lparam_t data; /* user data for callback */
321 lparam_t result; /* message result */
324 struct winevent_msg_data
326 user_handle_t hook; /* hook handle */
327 thread_id_t tid; /* thread id */
328 client_ptr_t hook_proc; /* hook proc address */
329 /* followed by module name if any */
332 typedef union
334 int type;
335 struct
337 int type; /* INPUT_KEYBOARD */
338 unsigned short vkey; /* virtual key code */
339 unsigned short scan; /* scan code */
340 unsigned int flags; /* event flags */
341 unsigned int time; /* event time */
342 lparam_t info; /* extra info */
343 } kbd;
344 struct
346 int type; /* INPUT_MOUSE */
347 int x; /* coordinates */
348 int y;
349 unsigned int data; /* mouse data */
350 unsigned int flags; /* event flags */
351 unsigned int time; /* event time */
352 lparam_t info; /* extra info */
353 } mouse;
354 struct
356 int type; /* INPUT_HARDWARE */
357 unsigned int msg; /* message code */
358 lparam_t lparam; /* message param */
359 union rawinput rawinput;/* rawinput message data */
360 } hw;
361 } hw_input_t;
363 typedef union
365 unsigned char bytes[1]; /* raw data for sent messages */
366 struct hardware_msg_data hardware;
367 struct callback_msg_data callback;
368 struct winevent_msg_data winevent;
369 } message_data_t;
371 /* structure returned in filesystem events */
372 struct filesystem_event
374 int action;
375 data_size_t len;
376 char name[1];
379 typedef struct
381 unsigned int low_part;
382 int high_part;
383 } luid_t;
385 typedef struct
387 unsigned int read;
388 unsigned int write;
389 unsigned int exec;
390 unsigned int all;
391 } generic_map_t;
393 #define MAX_ACL_LEN 65535
395 struct security_descriptor
397 unsigned int control; /* SE_ flags */
398 data_size_t owner_len;
399 data_size_t group_len;
400 data_size_t sacl_len;
401 data_size_t dacl_len;
402 /* VARARG(owner,SID); */
403 /* VARARG(group,SID); */
404 /* VARARG(sacl,ACL); */
405 /* VARARG(dacl,ACL); */
408 struct object_attributes
410 obj_handle_t rootdir; /* root directory */
411 unsigned int attributes; /* object attributes */
412 data_size_t sd_len; /* length of security_descriptor data. may be 0 */
413 data_size_t name_len; /* length of the name string. may be 0 */
414 /* VARARG(sd,security_descriptor); */
415 /* VARARG(name,unicode_str); */
418 struct object_type_info
420 data_size_t name_len; /* length of the name string */
421 unsigned int index; /* type index in global table */
422 unsigned int obj_count; /* count of objects of this type */
423 unsigned int handle_count; /* count of handles of this type */
424 unsigned int obj_max; /* max count of objects of this type */
425 unsigned int handle_max; /* max count of handles of this type */
426 unsigned int valid_access; /* mask for valid access bits */
427 generic_map_t mapping; /* generic access mappings */
428 /* VARARG(name,unicode_str); */
431 struct token_groups
433 unsigned int count;
434 /* unsigned int attributes[count]; */
435 /* VARARG(sids,SID); */
438 enum select_op
440 SELECT_NONE,
441 SELECT_WAIT,
442 SELECT_WAIT_ALL,
443 SELECT_SIGNAL_AND_WAIT,
444 SELECT_KEYED_EVENT_WAIT,
445 SELECT_KEYED_EVENT_RELEASE
448 typedef union
450 enum select_op op;
451 struct
453 enum select_op op; /* SELECT_WAIT or SELECT_WAIT_ALL */
454 obj_handle_t handles[MAXIMUM_WAIT_OBJECTS];
455 } wait;
456 struct
458 enum select_op op; /* SELECT_SIGNAL_AND_WAIT */
459 obj_handle_t wait;
460 obj_handle_t signal; /* must be last in the structure so we can remove it on retries */
461 } signal_and_wait;
462 struct
464 enum select_op op; /* SELECT_KEYED_EVENT_WAIT or SELECT_KEYED_EVENT_RELEASE */
465 obj_handle_t handle;
466 client_ptr_t key;
467 } keyed_event;
468 } select_op_t;
470 enum apc_type
472 APC_NONE,
473 APC_USER,
474 APC_ASYNC_IO,
475 APC_VIRTUAL_ALLOC,
476 APC_VIRTUAL_FREE,
477 APC_VIRTUAL_QUERY,
478 APC_VIRTUAL_PROTECT,
479 APC_VIRTUAL_FLUSH,
480 APC_VIRTUAL_LOCK,
481 APC_VIRTUAL_UNLOCK,
482 APC_MAP_VIEW,
483 APC_UNMAP_VIEW,
484 APC_CREATE_THREAD,
485 APC_DUP_HANDLE,
486 APC_BREAK_PROCESS
489 typedef struct
491 enum apc_type type; /* APC_USER */
492 int __pad;
493 client_ptr_t func; /* void (__stdcall *func)(ULONG_PTR,ULONG_PTR,ULONG_PTR); */
494 apc_param_t args[3]; /* arguments for user function */
495 } user_apc_t;
497 typedef union
499 enum apc_type type;
500 user_apc_t user;
501 struct
503 enum apc_type type; /* APC_ASYNC_IO */
504 unsigned int status; /* I/O status */
505 client_ptr_t user; /* user pointer */
506 client_ptr_t sb; /* status block */
507 } async_io;
508 struct
510 enum apc_type type; /* APC_VIRTUAL_ALLOC */
511 unsigned int op_type; /* type of operation */
512 client_ptr_t addr; /* requested address */
513 mem_size_t size; /* allocation size */
514 mem_size_t zero_bits; /* number of zero high bits */
515 unsigned int prot; /* memory protection flags */
516 } virtual_alloc;
517 struct
519 enum apc_type type; /* APC_VIRTUAL_FREE */
520 unsigned int op_type; /* type of operation */
521 client_ptr_t addr; /* requested address */
522 mem_size_t size; /* allocation size */
523 } virtual_free;
524 struct
526 enum apc_type type; /* APC_VIRTUAL_QUERY */
527 int __pad;
528 client_ptr_t addr; /* requested address */
529 } virtual_query;
530 struct
532 enum apc_type type; /* APC_VIRTUAL_PROTECT */
533 unsigned int prot; /* new protection flags */
534 client_ptr_t addr; /* requested address */
535 mem_size_t size; /* requested size */
536 } virtual_protect;
537 struct
539 enum apc_type type; /* APC_VIRTUAL_FLUSH */
540 int __pad;
541 client_ptr_t addr; /* requested address */
542 mem_size_t size; /* requested size */
543 } virtual_flush;
544 struct
546 enum apc_type type; /* APC_VIRTUAL_LOCK */
547 int __pad;
548 client_ptr_t addr; /* requested address */
549 mem_size_t size; /* requested size */
550 } virtual_lock;
551 struct
553 enum apc_type type; /* APC_VIRTUAL_UNLOCK */
554 int __pad;
555 client_ptr_t addr; /* requested address */
556 mem_size_t size; /* requested size */
557 } virtual_unlock;
558 struct
560 enum apc_type type; /* APC_MAP_VIEW */
561 obj_handle_t handle; /* mapping handle */
562 client_ptr_t addr; /* requested address */
563 mem_size_t size; /* allocation size */
564 file_pos_t offset; /* file offset */
565 mem_size_t zero_bits; /* number of zero high bits */
566 unsigned int alloc_type; /* allocation type */
567 unsigned int prot; /* memory protection flags */
568 } map_view;
569 struct
571 enum apc_type type; /* APC_UNMAP_VIEW */
572 int __pad;
573 client_ptr_t addr; /* view address */
574 } unmap_view;
575 struct
577 enum apc_type type; /* APC_CREATE_THREAD */
578 unsigned int flags; /* creation flags */
579 client_ptr_t func; /* void (__stdcall *func)(void*); start function */
580 client_ptr_t arg; /* argument for start function */
581 mem_size_t zero_bits; /* number of zero high bits for thread stack */
582 mem_size_t reserve; /* reserve size for thread stack */
583 mem_size_t commit; /* commit size for thread stack */
584 } create_thread;
585 struct
587 enum apc_type type; /* APC_DUP_HANDLE */
588 obj_handle_t src_handle; /* src handle to duplicate */
589 obj_handle_t dst_process; /* dst process handle */
590 unsigned int access; /* wanted access rights */
591 unsigned int attributes; /* object attributes */
592 unsigned int options; /* duplicate options */
593 } dup_handle;
594 } apc_call_t;
596 typedef union
598 enum apc_type type;
599 struct
601 enum apc_type type; /* APC_ASYNC_IO */
602 unsigned int status; /* new status of async operation */
603 unsigned int total; /* bytes transferred */
604 } async_io;
605 struct
607 enum apc_type type; /* APC_VIRTUAL_ALLOC */
608 unsigned int status; /* status returned by call */
609 client_ptr_t addr; /* resulting address */
610 mem_size_t size; /* resulting size */
611 } virtual_alloc;
612 struct
614 enum apc_type type; /* APC_VIRTUAL_FREE */
615 unsigned int status; /* status returned by call */
616 client_ptr_t addr; /* resulting address */
617 mem_size_t size; /* resulting size */
618 } virtual_free;
619 struct
621 enum apc_type type; /* APC_VIRTUAL_QUERY */
622 unsigned int status; /* status returned by call */
623 client_ptr_t base; /* resulting base address */
624 client_ptr_t alloc_base;/* resulting allocation base */
625 mem_size_t size; /* resulting region size */
626 unsigned short state; /* resulting region state */
627 unsigned short prot; /* resulting region protection */
628 unsigned short alloc_prot;/* resulting allocation protection */
629 unsigned short alloc_type;/* resulting region allocation type */
630 } virtual_query;
631 struct
633 enum apc_type type; /* APC_VIRTUAL_PROTECT */
634 unsigned int status; /* status returned by call */
635 client_ptr_t addr; /* resulting address */
636 mem_size_t size; /* resulting size */
637 unsigned int prot; /* old protection flags */
638 } virtual_protect;
639 struct
641 enum apc_type type; /* APC_VIRTUAL_FLUSH */
642 unsigned int status; /* status returned by call */
643 client_ptr_t addr; /* resulting address */
644 mem_size_t size; /* resulting size */
645 } virtual_flush;
646 struct
648 enum apc_type type; /* APC_VIRTUAL_LOCK */
649 unsigned int status; /* status returned by call */
650 client_ptr_t addr; /* resulting address */
651 mem_size_t size; /* resulting size */
652 } virtual_lock;
653 struct
655 enum apc_type type; /* APC_VIRTUAL_UNLOCK */
656 unsigned int status; /* status returned by call */
657 client_ptr_t addr; /* resulting address */
658 mem_size_t size; /* resulting size */
659 } virtual_unlock;
660 struct
662 enum apc_type type; /* APC_MAP_VIEW */
663 unsigned int status; /* status returned by call */
664 client_ptr_t addr; /* resulting address */
665 mem_size_t size; /* resulting size */
666 } map_view;
667 struct
669 enum apc_type type; /* APC_UNMAP_VIEW */
670 unsigned int status; /* status returned by call */
671 } unmap_view;
672 struct
674 enum apc_type type; /* APC_CREATE_THREAD */
675 unsigned int status; /* status returned by call */
676 process_id_t pid; /* process id */
677 thread_id_t tid; /* thread id */
678 client_ptr_t teb; /* thread teb (in process address space) */
679 obj_handle_t handle; /* handle to new thread */
680 } create_thread;
681 struct
683 enum apc_type type; /* APC_DUP_HANDLE */
684 unsigned int status; /* status returned by call */
685 obj_handle_t handle; /* duplicated handle in dst process */
686 } dup_handle;
687 struct
689 enum apc_type type; /* APC_BREAK_PROCESS */
690 unsigned int status; /* status returned by call */
691 } break_process;
692 } apc_result_t;
694 enum irp_type
696 IRP_CALL_NONE,
697 IRP_CALL_CREATE,
698 IRP_CALL_CLOSE,
699 IRP_CALL_READ,
700 IRP_CALL_WRITE,
701 IRP_CALL_FLUSH,
702 IRP_CALL_IOCTL,
703 IRP_CALL_VOLUME,
704 IRP_CALL_FREE,
705 IRP_CALL_CANCEL
708 typedef union
710 enum irp_type type; /* irp call type */
711 struct
713 enum irp_type type; /* IRP_CALL_CREATE */
714 unsigned int access; /* access rights */
715 unsigned int sharing; /* sharing flags */
716 unsigned int options; /* file options */
717 client_ptr_t device; /* opaque ptr for the device */
718 obj_handle_t file; /* file handle */
719 } create;
720 struct
722 enum irp_type type; /* IRP_CALL_CLOSE */
723 int __pad;
724 client_ptr_t file; /* opaque ptr for the file object */
725 } close;
726 struct
728 enum irp_type type; /* IRP_CALL_READ */
729 unsigned int key; /* driver key */
730 data_size_t out_size; /* needed output size */
731 int __pad;
732 client_ptr_t file; /* opaque ptr for the file object */
733 file_pos_t pos; /* file position */
734 } read;
735 struct
737 enum irp_type type; /* IRP_CALL_WRITE */
738 unsigned int key; /* driver key */
739 client_ptr_t file; /* opaque ptr for the file object */
740 file_pos_t pos; /* file position */
741 } write;
742 struct
744 enum irp_type type; /* IRP_CALL_FLUSH */
745 int __pad;
746 client_ptr_t file; /* opaque ptr for the file object */
747 } flush;
748 struct
750 enum irp_type type; /* IRP_CALL_IOCTL */
751 ioctl_code_t code; /* ioctl code */
752 data_size_t out_size; /* needed output size */
753 int __pad;
754 client_ptr_t file; /* opaque ptr for the file object */
755 } ioctl;
756 struct
758 enum irp_type type; /* IRP_CALL_VOLUME */
759 unsigned int info_class;/* information class */
760 data_size_t out_size; /* needed output size */
761 int __pad;
762 client_ptr_t file; /* opaque ptr for the file object */
763 } volume;
764 struct
766 enum irp_type type; /* IRP_CALL_FREE */
767 int __pad;
768 client_ptr_t obj; /* opaque ptr for the freed object */
769 } free;
770 struct
772 enum irp_type type; /* IRP_CALL_CANCEL */
773 int __pad;
774 client_ptr_t irp; /* opaque ptr for canceled irp */
775 } cancel;
776 } irp_params_t;
778 /* information about a PE image mapping, roughly equivalent to SECTION_IMAGE_INFORMATION */
779 typedef struct
781 client_ptr_t base;
782 client_ptr_t entry_point;
783 mem_size_t map_size;
784 mem_size_t stack_size;
785 mem_size_t stack_commit;
786 unsigned int zerobits;
787 unsigned int subsystem;
788 unsigned short subsystem_minor;
789 unsigned short subsystem_major;
790 unsigned short osversion_major;
791 unsigned short osversion_minor;
792 unsigned short image_charact;
793 unsigned short dll_charact;
794 unsigned short machine;
795 unsigned char contains_code;
796 unsigned char image_flags;
797 unsigned int loader_flags;
798 unsigned int header_size;
799 unsigned int file_size;
800 unsigned int checksum;
801 unsigned int dbg_offset;
802 unsigned int dbg_size;
803 } pe_image_info_t;
804 #define IMAGE_FLAGS_ComPlusNativeReady 0x01
805 #define IMAGE_FLAGS_ComPlusILOnly 0x02
806 #define IMAGE_FLAGS_ImageDynamicallyRelocated 0x04
807 #define IMAGE_FLAGS_ImageMappedFlat 0x08
808 #define IMAGE_FLAGS_BaseBelow4gb 0x10
809 #define IMAGE_FLAGS_ComPlusPrefer32bit 0x20
810 #define IMAGE_FLAGS_WineBuiltin 0x40
811 #define IMAGE_FLAGS_WineFakeDll 0x80
813 struct rawinput_device
815 unsigned short usage_page;
816 unsigned short usage;
817 unsigned int flags;
818 user_handle_t target;
821 typedef struct
823 int x;
824 int y;
825 unsigned int time;
826 int __pad;
827 lparam_t info;
828 } cursor_pos_t;
830 /****************************************************************/
831 /* Request declarations */
833 /* Create a new process from the context of the parent */
834 @REQ(new_process)
835 obj_handle_t token; /* process token */
836 obj_handle_t debug; /* process debug object */
837 obj_handle_t parent_process; /* parent process */
838 unsigned int flags; /* process creation flags */
839 int socket_fd; /* file descriptor for process socket */
840 unsigned int access; /* access rights for process object */
841 unsigned short machine; /* architecture that the new process will use */
842 data_size_t info_size; /* size of startup info */
843 data_size_t handles_size; /* length of explicit handles list */
844 data_size_t jobs_size; /* length of jobs list */
845 VARARG(objattr,object_attributes); /* object attributes */
846 VARARG(handles,uints,handles_size); /* handles list */
847 VARARG(jobs,uints,jobs_size); /* jobs list */
848 VARARG(info,startup_info,info_size); /* startup information */
849 VARARG(env,unicode_str); /* environment for new process */
850 @REPLY
851 obj_handle_t info; /* new process info handle */
852 process_id_t pid; /* process id */
853 obj_handle_t handle; /* process handle (in the current process) */
854 @END
857 /* Retrieve information about a newly started process */
858 @REQ(get_new_process_info)
859 obj_handle_t info; /* info handle returned from new_process_request */
860 @REPLY
861 int success; /* did the process start successfully? */
862 int exit_code; /* process exit code if failed */
863 @END
866 /* Create a new thread */
867 @REQ(new_thread)
868 obj_handle_t process; /* process in which to create thread */
869 unsigned int access; /* wanted access rights */
870 int suspend; /* new thread should be suspended on creation */
871 int request_fd; /* fd for request pipe */
872 VARARG(objattr,object_attributes); /* object attributes */
873 @REPLY
874 thread_id_t tid; /* thread id */
875 obj_handle_t handle; /* thread handle (in the current process) */
876 @END
879 /* Retrieve the new process startup info */
880 @REQ(get_startup_info)
881 @REPLY
882 data_size_t info_size; /* size of startup info */
883 VARARG(info,startup_info,info_size); /* startup information */
884 VARARG(env,unicode_str); /* environment */
885 @END
888 /* Signal the end of the process initialization */
889 @REQ(init_process_done)
890 client_ptr_t teb; /* TEB of new thread (in process address space) */
891 client_ptr_t peb; /* PEB of new process (in process address space) */
892 client_ptr_t ldt_copy; /* address of LDT copy (in process address space) */
893 @REPLY
894 client_ptr_t entry; /* process entry point */
895 int suspend; /* is process suspended? */
896 @END
899 /* Initialize the first thread of a new process */
900 @REQ(init_first_thread)
901 int unix_pid; /* Unix pid of new process */
902 int unix_tid; /* Unix tid of new thread */
903 int debug_level; /* new debug level */
904 int reply_fd; /* fd for reply pipe */
905 int wait_fd; /* fd for blocking calls pipe */
906 @REPLY
907 process_id_t pid; /* process id of the new thread's process */
908 thread_id_t tid; /* thread id of the new thread */
909 timeout_t server_start; /* server start time */
910 data_size_t info_size; /* total size of startup info */
911 VARARG(machines,ushorts); /* array of supported machines */
912 @END
915 /* Initialize a new thread; called from the child after pthread_create() */
916 @REQ(init_thread)
917 int unix_tid; /* Unix tid of new thread */
918 int reply_fd; /* fd for reply pipe */
919 int wait_fd; /* fd for blocking calls pipe */
920 client_ptr_t teb; /* TEB of new thread (in thread address space) */
921 client_ptr_t entry; /* entry point (in thread address space) */
922 @REPLY
923 process_id_t pid; /* process id of the new thread's process */
924 thread_id_t tid; /* thread id of the new thread */
925 int suspend; /* is thread suspended? */
926 @END
929 /* Terminate a process */
930 @REQ(terminate_process)
931 obj_handle_t handle; /* process handle to terminate */
932 int exit_code; /* process exit code */
933 @REPLY
934 int self; /* suicide? */
935 @END
938 /* Terminate a thread */
939 @REQ(terminate_thread)
940 obj_handle_t handle; /* thread handle to terminate */
941 int exit_code; /* thread exit code */
942 @REPLY
943 int self; /* suicide? */
944 @END
947 /* Retrieve information about a process */
948 @REQ(get_process_info)
949 obj_handle_t handle; /* process handle */
950 @REPLY
951 process_id_t pid; /* server process id */
952 process_id_t ppid; /* server process id of parent */
953 affinity_t affinity; /* process affinity mask */
954 client_ptr_t peb; /* PEB address in process address space */
955 timeout_t start_time; /* process start time */
956 timeout_t end_time; /* process end time */
957 int exit_code; /* process exit code */
958 int priority; /* priority class */
959 unsigned short machine; /* process architecture */
960 VARARG(image,pe_image_info); /* image info for main exe */
961 @END
964 /* Retrieve debug information about a process */
965 @REQ(get_process_debug_info)
966 obj_handle_t handle; /* process handle */
967 @REPLY
968 obj_handle_t debug; /* handle to debug port */
969 int debug_children; /* inherit debugger to child processes */
970 VARARG(image,pe_image_info); /* image info for main exe */
971 @END
974 /* Fetch the name of the process image */
975 @REQ(get_process_image_name)
976 obj_handle_t handle; /* process handle */
977 int win32; /* return a win32 filename? */
978 @REPLY
979 data_size_t len; /* len in bytes required to store filename */
980 VARARG(name,unicode_str); /* image name for main exe */
981 @END
984 /* Retrieve information about a process memory usage */
985 @REQ(get_process_vm_counters)
986 obj_handle_t handle; /* process handle */
987 @REPLY
988 mem_size_t peak_virtual_size; /* peak virtual memory in bytes */
989 mem_size_t virtual_size; /* virtual memory in bytes */
990 mem_size_t peak_working_set_size; /* peak real memory in bytes */
991 mem_size_t working_set_size; /* real memory in bytes */
992 mem_size_t pagefile_usage; /* commit charge in bytes */
993 mem_size_t peak_pagefile_usage; /* peak commit charge in bytes */
994 @END
997 /* Set a process information */
998 @REQ(set_process_info)
999 obj_handle_t handle; /* process handle */
1000 int mask; /* setting mask (see below) */
1001 int priority; /* priority class */
1002 affinity_t affinity; /* affinity mask */
1003 @END
1004 #define SET_PROCESS_INFO_PRIORITY 0x01
1005 #define SET_PROCESS_INFO_AFFINITY 0x02
1008 /* Retrieve information about a thread */
1009 @REQ(get_thread_info)
1010 obj_handle_t handle; /* thread handle */
1011 unsigned int access; /* required access rights */
1012 @REPLY
1013 process_id_t pid; /* server process id */
1014 thread_id_t tid; /* server thread id */
1015 client_ptr_t teb; /* thread teb pointer */
1016 client_ptr_t entry_point; /* thread entry point */
1017 affinity_t affinity; /* thread affinity mask */
1018 int exit_code; /* thread exit code */
1019 int priority; /* thread priority level */
1020 int last; /* last thread in process */
1021 int suspend_count; /* thread suspend count */
1022 int dbg_hidden; /* thread hidden from debugger */
1023 data_size_t desc_len; /* description length in bytes */
1024 VARARG(desc,unicode_str); /* description string */
1025 @END
1028 /* Retrieve information about thread times */
1029 @REQ(get_thread_times)
1030 obj_handle_t handle; /* thread handle */
1031 @REPLY
1032 timeout_t creation_time; /* thread creation time */
1033 timeout_t exit_time; /* thread exit time */
1034 int unix_pid; /* thread native pid */
1035 int unix_tid; /* thread native pid */
1036 @END
1039 /* Set a thread information */
1040 @REQ(set_thread_info)
1041 obj_handle_t handle; /* thread handle */
1042 int mask; /* setting mask (see below) */
1043 int priority; /* priority class */
1044 affinity_t affinity; /* affinity mask */
1045 client_ptr_t entry_point; /* thread entry point */
1046 obj_handle_t token; /* impersonation token */
1047 VARARG(desc,unicode_str); /* description string */
1048 @END
1049 #define SET_THREAD_INFO_PRIORITY 0x01
1050 #define SET_THREAD_INFO_AFFINITY 0x02
1051 #define SET_THREAD_INFO_TOKEN 0x04
1052 #define SET_THREAD_INFO_ENTRYPOINT 0x08
1053 #define SET_THREAD_INFO_DESCRIPTION 0x10
1054 #define SET_THREAD_INFO_DBG_HIDDEN 0x20
1057 /* Suspend a thread */
1058 @REQ(suspend_thread)
1059 obj_handle_t handle; /* thread handle */
1060 @REPLY
1061 int count; /* new suspend count */
1062 @END
1065 /* Resume a thread */
1066 @REQ(resume_thread)
1067 obj_handle_t handle; /* thread handle */
1068 @REPLY
1069 int count; /* new suspend count */
1070 @END
1073 /* Queue an APC for a thread or process */
1074 @REQ(queue_apc)
1075 obj_handle_t handle; /* thread or process handle */
1076 apc_call_t call; /* call arguments */
1077 @REPLY
1078 obj_handle_t handle; /* APC handle */
1079 int self; /* run APC in caller itself? */
1080 @END
1083 /* Get the result of an APC call */
1084 @REQ(get_apc_result)
1085 obj_handle_t handle; /* handle to the APC */
1086 @REPLY
1087 apc_result_t result; /* result of the APC */
1088 @END
1091 /* Close a handle for the current process */
1092 @REQ(close_handle)
1093 obj_handle_t handle; /* handle to close */
1094 @END
1097 /* Set a handle information */
1098 @REQ(set_handle_info)
1099 obj_handle_t handle; /* handle we are interested in */
1100 int flags; /* new handle flags */
1101 int mask; /* mask for flags to set */
1102 @REPLY
1103 int old_flags; /* old flag value */
1104 @END
1107 /* Duplicate a handle */
1108 @REQ(dup_handle)
1109 obj_handle_t src_process; /* src process handle */
1110 obj_handle_t src_handle; /* src handle to duplicate */
1111 obj_handle_t dst_process; /* dst process handle */
1112 unsigned int access; /* wanted access rights */
1113 unsigned int attributes; /* object attributes */
1114 unsigned int options; /* duplicate options */
1115 @REPLY
1116 obj_handle_t handle; /* duplicated handle in dst process */
1117 @END
1120 /* Make an object temporary */
1121 @REQ(make_temporary)
1122 obj_handle_t handle; /* handle to the object */
1123 @END
1126 /* Open a handle to a process */
1127 @REQ(open_process)
1128 process_id_t pid; /* process id to open */
1129 unsigned int access; /* wanted access rights */
1130 unsigned int attributes; /* object attributes */
1131 @REPLY
1132 obj_handle_t handle; /* handle to the process */
1133 @END
1136 /* Open a handle to a thread */
1137 @REQ(open_thread)
1138 thread_id_t tid; /* thread id to open */
1139 unsigned int access; /* wanted access rights */
1140 unsigned int attributes; /* object attributes */
1141 @REPLY
1142 obj_handle_t handle; /* handle to the thread */
1143 @END
1146 /* Wait for handles */
1147 @REQ(select)
1148 int flags; /* wait flags (see below) */
1149 client_ptr_t cookie; /* magic cookie to return to client */
1150 abstime_t timeout; /* timeout */
1151 data_size_t size; /* size of select_op */
1152 obj_handle_t prev_apc; /* handle to previous APC */
1153 VARARG(result,apc_result); /* result of previous APC */
1154 VARARG(data,select_op,size); /* operation-specific data */
1155 VARARG(context,context); /* suspend context */
1156 @REPLY
1157 apc_call_t call; /* APC call arguments */
1158 obj_handle_t apc_handle; /* handle to next APC */
1159 VARARG(context,context); /* suspend context */
1160 @END
1161 #define SELECT_ALERTABLE 1
1162 #define SELECT_INTERRUPTIBLE 2
1165 /* Create an event */
1166 @REQ(create_event)
1167 unsigned int access; /* wanted access rights */
1168 int manual_reset; /* manual reset event */
1169 int initial_state; /* initial state of the event */
1170 VARARG(objattr,object_attributes); /* object attributes */
1171 @REPLY
1172 obj_handle_t handle; /* handle to the event */
1173 @END
1175 /* Event operation */
1176 @REQ(event_op)
1177 obj_handle_t handle; /* handle to event */
1178 int op; /* event operation (see below) */
1179 @REPLY
1180 int state; /* previous state */
1181 @END
1182 enum event_op { PULSE_EVENT, SET_EVENT, RESET_EVENT };
1184 @REQ(query_event)
1185 obj_handle_t handle; /* handle to event */
1186 @REPLY
1187 int manual_reset; /* manual reset event */
1188 int state; /* current state of the event */
1189 @END
1191 /* Open an event */
1192 @REQ(open_event)
1193 unsigned int access; /* wanted access rights */
1194 unsigned int attributes; /* object attributes */
1195 obj_handle_t rootdir; /* root directory */
1196 VARARG(name,unicode_str); /* object name */
1197 @REPLY
1198 obj_handle_t handle; /* handle to the event */
1199 @END
1202 /* Create a keyed event */
1203 @REQ(create_keyed_event)
1204 unsigned int access; /* wanted access rights */
1205 VARARG(objattr,object_attributes); /* object attributes */
1206 @REPLY
1207 obj_handle_t handle; /* handle to the event */
1208 @END
1210 /* Open a keyed event */
1211 @REQ(open_keyed_event)
1212 unsigned int access; /* wanted access rights */
1213 unsigned int attributes; /* object attributes */
1214 obj_handle_t rootdir; /* root directory */
1215 VARARG(name,unicode_str); /* object name */
1216 @REPLY
1217 obj_handle_t handle; /* handle to the event */
1218 @END
1221 /* Create a mutex */
1222 @REQ(create_mutex)
1223 unsigned int access; /* wanted access rights */
1224 int owned; /* initially owned? */
1225 VARARG(objattr,object_attributes); /* object attributes */
1226 @REPLY
1227 obj_handle_t handle; /* handle to the mutex */
1228 @END
1231 /* Release a mutex */
1232 @REQ(release_mutex)
1233 obj_handle_t handle; /* handle to the mutex */
1234 @REPLY
1235 unsigned int prev_count; /* value of internal counter, before release */
1236 @END
1239 /* Open a mutex */
1240 @REQ(open_mutex)
1241 unsigned int access; /* wanted access rights */
1242 unsigned int attributes; /* object attributes */
1243 obj_handle_t rootdir; /* root directory */
1244 VARARG(name,unicode_str); /* object name */
1245 @REPLY
1246 obj_handle_t handle; /* handle to the mutex */
1247 @END
1250 /* Query a mutex */
1251 @REQ(query_mutex)
1252 obj_handle_t handle; /* handle to mutex */
1253 @REPLY
1254 unsigned int count; /* current count of mutex */
1255 int owned; /* true if owned by current thread */
1256 int abandoned; /* true if abandoned */
1257 @END
1260 /* Create a semaphore */
1261 @REQ(create_semaphore)
1262 unsigned int access; /* wanted access rights */
1263 unsigned int initial; /* initial count */
1264 unsigned int max; /* maximum count */
1265 VARARG(objattr,object_attributes); /* object attributes */
1266 @REPLY
1267 obj_handle_t handle; /* handle to the semaphore */
1268 @END
1271 /* Release a semaphore */
1272 @REQ(release_semaphore)
1273 obj_handle_t handle; /* handle to the semaphore */
1274 unsigned int count; /* count to add to semaphore */
1275 @REPLY
1276 unsigned int prev_count; /* previous semaphore count */
1277 @END
1279 @REQ(query_semaphore)
1280 obj_handle_t handle; /* handle to the semaphore */
1281 @REPLY
1282 unsigned int current; /* current count */
1283 unsigned int max; /* maximum count */
1284 @END
1286 /* Open a semaphore */
1287 @REQ(open_semaphore)
1288 unsigned int access; /* wanted access rights */
1289 unsigned int attributes; /* object attributes */
1290 obj_handle_t rootdir; /* root directory */
1291 VARARG(name,unicode_str); /* object name */
1292 @REPLY
1293 obj_handle_t handle; /* handle to the semaphore */
1294 @END
1297 /* Create a file */
1298 @REQ(create_file)
1299 unsigned int access; /* wanted access rights */
1300 unsigned int sharing; /* sharing flags */
1301 int create; /* file create action */
1302 unsigned int options; /* file options */
1303 unsigned int attrs; /* file attributes for creation */
1304 VARARG(objattr,object_attributes); /* object attributes */
1305 VARARG(filename,string); /* file name */
1306 @REPLY
1307 obj_handle_t handle; /* handle to the file */
1308 @END
1311 /* Open a file object */
1312 @REQ(open_file_object)
1313 unsigned int access; /* wanted access rights */
1314 unsigned int attributes; /* open attributes */
1315 obj_handle_t rootdir; /* root directory */
1316 unsigned int sharing; /* sharing flags */
1317 unsigned int options; /* file options */
1318 VARARG(filename,unicode_str); /* file name */
1319 @REPLY
1320 obj_handle_t handle; /* handle to the file */
1321 @END
1324 /* Allocate a file handle for a Unix fd */
1325 @REQ(alloc_file_handle)
1326 unsigned int access; /* wanted access rights */
1327 unsigned int attributes; /* object attributes */
1328 int fd; /* file descriptor on the client side */
1329 @REPLY
1330 obj_handle_t handle; /* handle to the file */
1331 @END
1334 /* Get the Unix name from a file handle */
1335 @REQ(get_handle_unix_name)
1336 obj_handle_t handle; /* file handle */
1337 @REPLY
1338 data_size_t name_len; /* unix name length */
1339 VARARG(name,string); /* unix name */
1340 @END
1343 /* Get a Unix fd to access a file */
1344 @REQ(get_handle_fd)
1345 obj_handle_t handle; /* handle to the file */
1346 @REPLY
1347 int type; /* file type (see below) */
1348 int cacheable; /* can fd be cached in the client? */
1349 unsigned int access; /* file access rights */
1350 unsigned int options; /* file open options */
1351 @END
1352 enum server_fd_type
1354 FD_TYPE_INVALID, /* invalid file (no associated fd) */
1355 FD_TYPE_FILE, /* regular file */
1356 FD_TYPE_DIR, /* directory */
1357 FD_TYPE_SOCKET, /* socket */
1358 FD_TYPE_SERIAL, /* serial port */
1359 FD_TYPE_PIPE, /* named pipe */
1360 FD_TYPE_MAILSLOT, /* mailslot */
1361 FD_TYPE_CHAR, /* unspecified char device */
1362 FD_TYPE_DEVICE, /* Windows device file */
1363 FD_TYPE_NB_TYPES
1367 /* Retrieve (or allocate) the client-side directory cache entry */
1368 @REQ(get_directory_cache_entry)
1369 obj_handle_t handle; /* handle to the directory */
1370 @REPLY
1371 int entry; /* cache entry on the client side */
1372 VARARG(free,ints); /* entries that can be freed */
1373 @END
1376 /* Flush a file buffers */
1377 @REQ(flush)
1378 async_data_t async; /* async I/O parameters */
1379 @REPLY
1380 obj_handle_t event; /* event set when finished */
1381 @END
1383 /* Query file information */
1384 @REQ(get_file_info)
1385 obj_handle_t handle; /* handle to the file */
1386 unsigned int info_class; /* queried information class */
1387 @REPLY
1388 VARARG(data,bytes); /* file info data */
1389 @END
1391 /* Query volume information */
1392 @REQ(get_volume_info)
1393 obj_handle_t handle; /* handle to the file */
1394 async_data_t async; /* async I/O parameters */
1395 unsigned int info_class; /* queried information class */
1396 @REPLY
1397 obj_handle_t wait; /* handle to wait on for blocking read */
1398 VARARG(data,bytes); /* volume info data */
1399 @END
1401 /* Lock a region of a file */
1402 @REQ(lock_file)
1403 obj_handle_t handle; /* handle to the file */
1404 file_pos_t offset; /* offset of start of lock */
1405 file_pos_t count; /* count of bytes to lock */
1406 int shared; /* shared or exclusive lock? */
1407 int wait; /* do we want to wait? */
1408 @REPLY
1409 obj_handle_t handle; /* handle to wait on */
1410 int overlapped; /* is it an overlapped I/O handle? */
1411 @END
1414 /* Unlock a region of a file */
1415 @REQ(unlock_file)
1416 obj_handle_t handle; /* handle to the file */
1417 file_pos_t offset; /* offset of start of unlock */
1418 file_pos_t count; /* count of bytes to unlock */
1419 @END
1422 /* Set socket event parameters */
1423 @REQ(set_socket_event)
1424 obj_handle_t handle; /* handle to the socket */
1425 unsigned int mask; /* event mask */
1426 obj_handle_t event; /* event object */
1427 user_handle_t window; /* window to send the message to */
1428 unsigned int msg; /* message to send */
1429 @END
1432 /* Get socket event parameters */
1433 @REQ(get_socket_event)
1434 obj_handle_t handle; /* handle to the socket */
1435 int service; /* clear pending? */
1436 obj_handle_t c_event; /* event to clear */
1437 @REPLY
1438 unsigned int mask; /* event mask */
1439 unsigned int pmask; /* pending events */
1440 unsigned int state; /* status bits */
1441 VARARG(errors,ints); /* event errors */
1442 @END
1445 /* Get socket info */
1446 @REQ(get_socket_info)
1447 obj_handle_t handle; /* handle to the socket */
1448 @REPLY
1449 int family; /* family, see socket manpage */
1450 int type; /* type, see socket manpage */
1451 int protocol; /* protocol, see socket manpage */
1452 @END
1455 /* Re-enable pending socket events */
1456 @REQ(enable_socket_event)
1457 obj_handle_t handle; /* handle to the socket */
1458 unsigned int mask; /* events to re-enable */
1459 unsigned int sstate; /* status bits to set */
1460 unsigned int cstate; /* status bits to clear */
1461 @END
1463 @REQ(set_socket_deferred)
1464 obj_handle_t handle; /* handle to the socket */
1465 obj_handle_t deferred; /* handle to the socket for which accept() is deferred */
1466 @END
1469 /* Perform a recv on a socket */
1470 @REQ(recv_socket)
1471 int oob; /* are we receiving OOB data? */
1472 async_data_t async; /* async I/O parameters */
1473 unsigned int status; /* status of initial call */
1474 unsigned int total; /* number of bytes already read */
1475 @REPLY
1476 obj_handle_t wait; /* handle to wait on for blocking recv */
1477 unsigned int options; /* device open options */
1478 @END
1481 struct poll_socket_input
1483 obj_handle_t socket; /* socket handle */
1484 int flags; /* events to poll for */
1487 struct poll_socket_output
1489 int flags; /* events signaled */
1490 unsigned int status; /* socket status */
1493 /* Perform an async poll on a socket */
1494 @REQ(poll_socket)
1495 async_data_t async; /* async I/O parameters */
1496 timeout_t timeout; /* timeout */
1497 VARARG(sockets,poll_socket_input); /* list of sockets to poll */
1498 @REPLY
1499 obj_handle_t wait; /* handle to wait on for blocking poll */
1500 unsigned int options; /* file open options */
1501 VARARG(sockets,poll_socket_output); /* data returned */
1502 @END
1505 /* Perform a send on a socket */
1506 @REQ(send_socket)
1507 async_data_t async; /* async I/O parameters */
1508 unsigned int status; /* status of initial call */
1509 unsigned int total; /* number of bytes already sent */
1510 @REPLY
1511 obj_handle_t wait; /* handle to wait on for blocking send */
1512 unsigned int options; /* device open options */
1513 @END
1516 /* Retrieve the next pending console ioctl request */
1517 @REQ(get_next_console_request)
1518 obj_handle_t handle; /* console server handle */
1519 int signal; /* server signal state */
1520 int read; /* 1 if reporting result of blocked read ioctl */
1521 unsigned int status; /* status of previous ioctl */
1522 VARARG(out_data,bytes); /* out_data of previous ioctl */
1523 @REPLY
1524 unsigned int code; /* ioctl code */
1525 unsigned int output; /* output id or 0 for input */
1526 data_size_t out_size; /* ioctl output size */
1527 VARARG(in_data,bytes); /* ioctl in_data */
1528 @END
1531 /* enable directory change notifications */
1532 @REQ(read_directory_changes)
1533 unsigned int filter; /* notification filter */
1534 int subtree; /* watch the subtree? */
1535 int want_data; /* flag indicating whether change data should be collected */
1536 async_data_t async; /* async I/O parameters */
1537 @END
1540 @REQ(read_change)
1541 obj_handle_t handle;
1542 @REPLY
1543 VARARG(events,filesystem_event); /* collected filesystem events */
1544 @END
1547 /* Create a file mapping */
1548 @REQ(create_mapping)
1549 unsigned int access; /* wanted access rights */
1550 unsigned int flags; /* SEC_* flags */
1551 unsigned int file_access; /* file access rights */
1552 mem_size_t size; /* mapping size */
1553 obj_handle_t file_handle; /* file handle */
1554 VARARG(objattr,object_attributes); /* object attributes */
1555 @REPLY
1556 obj_handle_t handle; /* handle to the mapping */
1557 @END
1560 /* Open a mapping */
1561 @REQ(open_mapping)
1562 unsigned int access; /* wanted access rights */
1563 unsigned int attributes; /* object attributes */
1564 obj_handle_t rootdir; /* root directory */
1565 VARARG(name,unicode_str); /* object name */
1566 @REPLY
1567 obj_handle_t handle; /* handle to the mapping */
1568 @END
1571 /* Get information about a file mapping */
1572 @REQ(get_mapping_info)
1573 obj_handle_t handle; /* handle to the mapping */
1574 unsigned int access; /* wanted access rights */
1575 @REPLY
1576 mem_size_t size; /* mapping size */
1577 unsigned int flags; /* SEC_* flags */
1578 obj_handle_t shared_file; /* shared mapping file handle */
1579 data_size_t total; /* total required buffer size in bytes */
1580 VARARG(image,pe_image_info);/* image info for SEC_IMAGE mappings */
1581 VARARG(name,unicode_str); /* filename for SEC_IMAGE mappings */
1582 @END
1585 /* Add a memory view in the current process */
1586 @REQ(map_view)
1587 obj_handle_t mapping; /* file mapping handle, or 0 for .so builtin */
1588 unsigned int access; /* wanted access rights */
1589 client_ptr_t base; /* view base address (page-aligned) */
1590 mem_size_t size; /* view size */
1591 file_pos_t start; /* start offset in mapping */
1592 VARARG(image,pe_image_info);/* image info for .so builtins */
1593 VARARG(name,unicode_str); /* image filename for .so builtins */
1594 @END
1597 /* Unmap a memory view from the current process */
1598 @REQ(unmap_view)
1599 client_ptr_t base; /* view base address */
1600 @END
1603 /* Get a range of committed pages in a file mapping */
1604 @REQ(get_mapping_committed_range)
1605 client_ptr_t base; /* view base address */
1606 file_pos_t offset; /* starting offset (page-aligned, in bytes) */
1607 @REPLY
1608 mem_size_t size; /* size of range starting at offset (page-aligned, in bytes) */
1609 int committed; /* whether it is a committed range */
1610 @END
1613 /* Add a range to the committed pages in a file mapping */
1614 @REQ(add_mapping_committed_range)
1615 client_ptr_t base; /* view base address */
1616 file_pos_t offset; /* starting offset (page-aligned, in bytes) */
1617 mem_size_t size; /* size to set (page-aligned, in bytes) or 0 if only retrieving */
1618 @END
1621 /* Check if two memory maps are for the same file */
1622 @REQ(is_same_mapping)
1623 client_ptr_t base1; /* first view base address */
1624 client_ptr_t base2; /* second view base address */
1625 @END
1628 /* Get the filename of a mapping */
1629 @REQ(get_mapping_filename)
1630 obj_handle_t process; /* process handle */
1631 client_ptr_t addr; /* address inside mapped view (in process address space) */
1632 @REPLY
1633 data_size_t len; /* total filename length in bytes */
1634 VARARG(filename,unicode_str); /* filename in NT format */
1635 @END
1638 struct thread_info
1640 timeout_t start_time;
1641 thread_id_t tid;
1642 int base_priority;
1643 int current_priority;
1644 int unix_tid;
1647 struct process_info
1649 timeout_t start_time;
1650 data_size_t name_len;
1651 int thread_count;
1652 int priority;
1653 process_id_t pid;
1654 process_id_t parent_pid;
1655 int handle_count;
1656 int unix_pid;
1657 int __pad;
1658 /* VARARG(name,unicode_str,name_len); */
1659 /* VARARG(threads,struct thread_info,thread_count); */
1662 /* Get a list of processes and threads currently running */
1663 @REQ(list_processes)
1664 @REPLY
1665 data_size_t info_size;
1666 int process_count;
1667 VARARG(data,process_info,info_size);
1668 @END
1671 /* Create a debug object */
1672 @REQ(create_debug_obj)
1673 unsigned int access; /* wanted access rights */
1674 unsigned int flags; /* object flags */
1675 VARARG(objattr,object_attributes); /* object attributes */
1676 @REPLY
1677 obj_handle_t handle; /* handle to the debug object */
1678 @END
1681 /* Wait for a debug event */
1682 @REQ(wait_debug_event)
1683 obj_handle_t debug; /* debug object */
1684 @REPLY
1685 process_id_t pid; /* process id */
1686 thread_id_t tid; /* thread id */
1687 VARARG(event,debug_event); /* debug event data */
1688 @END
1691 /* Queue an exception event */
1692 @REQ(queue_exception_event)
1693 int first; /* first chance exception? */
1694 unsigned int code; /* exception code */
1695 unsigned int flags; /* exception flags */
1696 client_ptr_t record; /* exception record */
1697 client_ptr_t address; /* exception address */
1698 data_size_t len; /* size of parameters */
1699 VARARG(params,uints64,len);/* exception parameters */
1700 @REPLY
1701 obj_handle_t handle; /* handle to the queued event */
1702 @END
1705 /* Retrieve the status of an exception event */
1706 @REQ(get_exception_status)
1707 obj_handle_t handle; /* handle to the queued event */
1708 @END
1711 /* Continue a debug event */
1712 @REQ(continue_debug_event)
1713 obj_handle_t debug; /* debug object */
1714 process_id_t pid; /* process id to continue */
1715 thread_id_t tid; /* thread id to continue */
1716 unsigned int status; /* continuation status */
1717 @END
1720 /* Start or stop debugging an existing process */
1721 @REQ(debug_process)
1722 obj_handle_t handle; /* process handle */
1723 obj_handle_t debug; /* debug object to attach to the process */
1724 int attach; /* 1=attaching / 0=detaching from the process */
1725 @END
1728 /* Set debug object information */
1729 @REQ(set_debug_obj_info)
1730 obj_handle_t debug; /* debug object */
1731 unsigned int flags; /* object flags */
1732 @END
1735 /* Read data from a process address space */
1736 @REQ(read_process_memory)
1737 obj_handle_t handle; /* process handle */
1738 client_ptr_t addr; /* addr to read from */
1739 @REPLY
1740 VARARG(data,bytes); /* result data */
1741 @END
1744 /* Write data to a process address space */
1745 @REQ(write_process_memory)
1746 obj_handle_t handle; /* process handle */
1747 client_ptr_t addr; /* addr to write to */
1748 VARARG(data,bytes); /* data to write */
1749 @END
1752 /* Create a registry key */
1753 @REQ(create_key)
1754 unsigned int access; /* desired access rights */
1755 unsigned int options; /* creation options */
1756 VARARG(objattr,object_attributes); /* object attributes */
1757 VARARG(class,unicode_str); /* class name */
1758 @REPLY
1759 obj_handle_t hkey; /* handle to the created key */
1760 int created; /* has it been newly created? */
1761 @END
1763 /* Open a registry key */
1764 @REQ(open_key)
1765 obj_handle_t parent; /* handle to the parent key */
1766 unsigned int access; /* desired access rights */
1767 unsigned int attributes; /* object attributes */
1768 VARARG(name,unicode_str); /* key name */
1769 @REPLY
1770 obj_handle_t hkey; /* handle to the open key */
1771 @END
1774 /* Delete a registry key */
1775 @REQ(delete_key)
1776 obj_handle_t hkey; /* handle to the key */
1777 @END
1780 /* Flush a registry key */
1781 @REQ(flush_key)
1782 obj_handle_t hkey; /* handle to the key */
1783 @END
1786 /* Enumerate registry subkeys */
1787 @REQ(enum_key)
1788 obj_handle_t hkey; /* handle to registry key */
1789 int index; /* index of subkey (or -1 for current key) */
1790 int info_class; /* requested information class */
1791 @REPLY
1792 int subkeys; /* number of subkeys */
1793 int max_subkey; /* longest subkey name */
1794 int max_class; /* longest class name */
1795 int values; /* number of values */
1796 int max_value; /* longest value name */
1797 int max_data; /* longest value data */
1798 timeout_t modif; /* last modification time */
1799 data_size_t total; /* total length needed for full name and class */
1800 data_size_t namelen; /* length of key name in bytes */
1801 VARARG(name,unicode_str,namelen); /* key name */
1802 VARARG(class,unicode_str); /* class name */
1803 @END
1806 /* Set a value of a registry key */
1807 @REQ(set_key_value)
1808 obj_handle_t hkey; /* handle to registry key */
1809 int type; /* value type */
1810 data_size_t namelen; /* length of value name in bytes */
1811 VARARG(name,unicode_str,namelen); /* value name */
1812 VARARG(data,bytes); /* value data */
1813 @END
1816 /* Retrieve the value of a registry key */
1817 @REQ(get_key_value)
1818 obj_handle_t hkey; /* handle to registry key */
1819 VARARG(name,unicode_str); /* value name */
1820 @REPLY
1821 int type; /* value type */
1822 data_size_t total; /* total length needed for data */
1823 VARARG(data,bytes); /* value data */
1824 @END
1827 /* Enumerate a value of a registry key */
1828 @REQ(enum_key_value)
1829 obj_handle_t hkey; /* handle to registry key */
1830 int index; /* value index */
1831 int info_class; /* requested information class */
1832 @REPLY
1833 int type; /* value type */
1834 data_size_t total; /* total length needed for full name and data */
1835 data_size_t namelen; /* length of value name in bytes */
1836 VARARG(name,unicode_str,namelen); /* value name */
1837 VARARG(data,bytes); /* value data */
1838 @END
1841 /* Delete a value of a registry key */
1842 @REQ(delete_key_value)
1843 obj_handle_t hkey; /* handle to registry key */
1844 VARARG(name,unicode_str); /* value name */
1845 @END
1848 /* Load a registry branch from a file */
1849 @REQ(load_registry)
1850 obj_handle_t file; /* file to load from */
1851 VARARG(objattr,object_attributes); /* object attributes */
1852 @END
1855 /* UnLoad a registry branch from a file */
1856 @REQ(unload_registry)
1857 obj_handle_t parent; /* handle to the parent key */
1858 unsigned int attributes; /* object attributes */
1859 VARARG(name,unicode_str); /* key name */
1860 @END
1863 /* Save a registry branch to a file */
1864 @REQ(save_registry)
1865 obj_handle_t hkey; /* key to save */
1866 obj_handle_t file; /* file to save to */
1867 @END
1870 /* Add a registry key change notification */
1871 @REQ(set_registry_notification)
1872 obj_handle_t hkey; /* key to watch for changes */
1873 obj_handle_t event; /* event to set */
1874 int subtree; /* should we watch the whole subtree? */
1875 unsigned int filter; /* things to watch */
1876 @END
1879 /* Create a waitable timer */
1880 @REQ(create_timer)
1881 unsigned int access; /* wanted access rights */
1882 int manual; /* manual reset */
1883 VARARG(objattr,object_attributes); /* object attributes */
1884 @REPLY
1885 obj_handle_t handle; /* handle to the timer */
1886 @END
1889 /* Open a waitable timer */
1890 @REQ(open_timer)
1891 unsigned int access; /* wanted access rights */
1892 unsigned int attributes; /* object attributes */
1893 obj_handle_t rootdir; /* root directory */
1894 VARARG(name,unicode_str); /* object name */
1895 @REPLY
1896 obj_handle_t handle; /* handle to the timer */
1897 @END
1899 /* Set a waitable timer */
1900 @REQ(set_timer)
1901 obj_handle_t handle; /* handle to the timer */
1902 timeout_t expire; /* next expiration absolute time */
1903 client_ptr_t callback; /* callback function */
1904 client_ptr_t arg; /* callback argument */
1905 int period; /* timer period in ms */
1906 @REPLY
1907 int signaled; /* was the timer signaled before this call ? */
1908 @END
1910 /* Cancel a waitable timer */
1911 @REQ(cancel_timer)
1912 obj_handle_t handle; /* handle to the timer */
1913 @REPLY
1914 int signaled; /* was the timer signaled before this calltime ? */
1915 @END
1917 /* Get information on a waitable timer */
1918 @REQ(get_timer_info)
1919 obj_handle_t handle; /* handle to the timer */
1920 @REPLY
1921 timeout_t when; /* absolute time when the timer next expires */
1922 int signaled; /* is the timer signaled? */
1923 @END
1926 /* Retrieve the current context of a thread */
1927 @REQ(get_thread_context)
1928 obj_handle_t handle; /* thread or context handle */
1929 unsigned int flags; /* context flags */
1930 @REPLY
1931 int self; /* was it a handle to the current thread? */
1932 obj_handle_t handle; /* pending context handle */
1933 VARARG(context,context); /* thread context */
1934 @END
1937 /* Set the current context of a thread */
1938 @REQ(set_thread_context)
1939 obj_handle_t handle; /* thread handle */
1940 VARARG(context,context); /* thread context */
1941 @REPLY
1942 int self; /* was it a handle to the current thread? */
1943 @END
1946 /* Fetch a selector entry for a thread */
1947 @REQ(get_selector_entry)
1948 obj_handle_t handle; /* thread handle */
1949 int entry; /* LDT entry */
1950 @REPLY
1951 unsigned int base; /* selector base */
1952 unsigned int limit; /* selector limit */
1953 unsigned char flags; /* selector flags */
1954 @END
1957 /* Add an atom */
1958 @REQ(add_atom)
1959 VARARG(name,unicode_str); /* atom name */
1960 @REPLY
1961 atom_t atom; /* resulting atom */
1962 @END
1965 /* Delete an atom */
1966 @REQ(delete_atom)
1967 atom_t atom; /* atom handle */
1968 @END
1971 /* Find an atom */
1972 @REQ(find_atom)
1973 VARARG(name,unicode_str); /* atom name */
1974 @REPLY
1975 atom_t atom; /* atom handle */
1976 @END
1979 /* Get information about an atom */
1980 @REQ(get_atom_information)
1981 atom_t atom; /* atom handle */
1982 @REPLY
1983 int count; /* atom lock count */
1984 int pinned; /* whether the atom has been pinned */
1985 data_size_t total; /* actual length of atom name */
1986 VARARG(name,unicode_str); /* atom name */
1987 @END
1990 /* Get the message queue of the current thread */
1991 @REQ(get_msg_queue)
1992 @REPLY
1993 obj_handle_t handle; /* handle to the queue */
1994 @END
1997 /* Set the file descriptor associated to the current thread queue */
1998 @REQ(set_queue_fd)
1999 obj_handle_t handle; /* handle to the file descriptor */
2000 @END
2003 /* Set the current message queue wakeup mask */
2004 @REQ(set_queue_mask)
2005 unsigned int wake_mask; /* wakeup bits mask */
2006 unsigned int changed_mask; /* changed bits mask */
2007 int skip_wait; /* will we skip waiting if signaled? */
2008 @REPLY
2009 unsigned int wake_bits; /* current wake bits */
2010 unsigned int changed_bits; /* current changed bits */
2011 @END
2014 /* Get the current message queue status */
2015 @REQ(get_queue_status)
2016 unsigned int clear_bits; /* should we clear the change bits? */
2017 @REPLY
2018 unsigned int wake_bits; /* wake bits */
2019 unsigned int changed_bits; /* changed bits since last time */
2020 @END
2023 /* Retrieve the process idle event */
2024 @REQ(get_process_idle_event)
2025 obj_handle_t handle; /* process handle */
2026 @REPLY
2027 obj_handle_t event; /* handle to idle event */
2028 @END
2031 /* Send a message to a thread queue */
2032 @REQ(send_message)
2033 thread_id_t id; /* thread id */
2034 int type; /* message type (see below) */
2035 int flags; /* message flags (see below) */
2036 user_handle_t win; /* window handle */
2037 unsigned int msg; /* message code */
2038 lparam_t wparam; /* parameters */
2039 lparam_t lparam; /* parameters */
2040 timeout_t timeout; /* timeout for reply */
2041 VARARG(data,message_data); /* message data for sent messages */
2042 @END
2044 @REQ(post_quit_message)
2045 int exit_code; /* exit code to return */
2046 @END
2048 enum message_type
2050 MSG_ASCII, /* Ascii message (from SendMessageA) */
2051 MSG_UNICODE, /* Unicode message (from SendMessageW) */
2052 MSG_NOTIFY, /* notify message (from SendNotifyMessageW), always Unicode */
2053 MSG_CALLBACK, /* callback message (from SendMessageCallbackW), always Unicode */
2054 MSG_CALLBACK_RESULT,/* result of a callback message */
2055 MSG_OTHER_PROCESS, /* sent from other process, may include vararg data, always Unicode */
2056 MSG_POSTED, /* posted message (from PostMessageW), always Unicode */
2057 MSG_HARDWARE, /* hardware message */
2058 MSG_WINEVENT, /* winevent message */
2059 MSG_HOOK_LL /* low-level hardware hook */
2061 #define SEND_MSG_ABORT_IF_HUNG 0x01
2064 /* Send a hardware message to a thread queue */
2065 @REQ(send_hardware_message)
2066 user_handle_t win; /* window handle */
2067 hw_input_t input; /* input data */
2068 unsigned int flags; /* flags (see below) */
2069 @REPLY
2070 int wait; /* do we need to wait for a reply? */
2071 int prev_x; /* previous cursor position */
2072 int prev_y;
2073 int new_x; /* new cursor position */
2074 int new_y;
2075 VARARG(keystate,bytes); /* global state array for all the keys */
2076 @END
2077 #define SEND_HWMSG_INJECTED 0x01
2080 /* Get a message from the current queue */
2081 @REQ(get_message)
2082 unsigned int flags; /* PM_* flags */
2083 user_handle_t get_win; /* window handle to get */
2084 unsigned int get_first; /* first message code to get */
2085 unsigned int get_last; /* last message code to get */
2086 unsigned int hw_id; /* id of the previous hardware message (or 0) */
2087 unsigned int wake_mask; /* wakeup bits mask */
2088 unsigned int changed_mask; /* changed bits mask */
2089 @REPLY
2090 user_handle_t win; /* window handle */
2091 unsigned int msg; /* message code */
2092 lparam_t wparam; /* parameters */
2093 lparam_t lparam; /* parameters */
2094 int type; /* message type */
2095 int x; /* message x position */
2096 int y; /* message y position */
2097 unsigned int time; /* message time */
2098 unsigned int active_hooks; /* active hooks bitmap */
2099 data_size_t total; /* total size of extra data */
2100 VARARG(data,message_data); /* message data for sent messages */
2101 @END
2104 /* Reply to a sent message */
2105 @REQ(reply_message)
2106 int remove; /* should we remove the message? */
2107 lparam_t result; /* message result */
2108 VARARG(data,bytes); /* message data for sent messages */
2109 @END
2112 /* Accept and remove the current hardware message */
2113 @REQ(accept_hardware_message)
2114 unsigned int hw_id; /* id of the hardware message */
2115 @END
2118 /* Retrieve the reply for the last message sent */
2119 @REQ(get_message_reply)
2120 int cancel; /* cancel message if not ready? */
2121 @REPLY
2122 lparam_t result; /* message result */
2123 VARARG(data,bytes); /* message data for sent messages */
2124 @END
2127 /* Set a window timer */
2128 @REQ(set_win_timer)
2129 user_handle_t win; /* window handle */
2130 unsigned int msg; /* message to post */
2131 unsigned int rate; /* timer rate in ms */
2132 lparam_t id; /* timer id */
2133 lparam_t lparam; /* message lparam (callback proc) */
2134 @REPLY
2135 lparam_t id; /* timer id */
2136 @END
2139 /* Kill a window timer */
2140 @REQ(kill_win_timer)
2141 user_handle_t win; /* window handle */
2142 lparam_t id; /* timer id */
2143 unsigned int msg; /* message to post */
2144 @END
2147 /* check if the thread owning the window is hung */
2148 @REQ(is_window_hung)
2149 user_handle_t win; /* window handle */
2150 @REPLY
2151 int is_hung;
2152 @END
2155 /* Retrieve info about a serial port */
2156 @REQ(get_serial_info)
2157 obj_handle_t handle; /* handle to comm port */
2158 int flags;
2159 @REPLY
2160 unsigned int eventmask;
2161 unsigned int cookie;
2162 unsigned int pending_write;
2163 @END
2166 /* Set info about a serial port */
2167 @REQ(set_serial_info)
2168 obj_handle_t handle; /* handle to comm port */
2169 int flags; /* bitmask to set values (see below) */
2170 @END
2171 #define SERIALINFO_PENDING_WRITE 0x04
2172 #define SERIALINFO_PENDING_WAIT 0x08
2175 /* Create an async I/O */
2176 @REQ(register_async)
2177 int type; /* type of queue to look after */
2178 async_data_t async; /* async I/O parameters */
2179 int count; /* count - usually # of bytes to be read/written */
2180 @END
2181 #define ASYNC_TYPE_READ 0x01
2182 #define ASYNC_TYPE_WRITE 0x02
2183 #define ASYNC_TYPE_WAIT 0x03
2186 /* Cancel all async op on a fd */
2187 @REQ(cancel_async)
2188 obj_handle_t handle; /* handle to comm port, socket or file */
2189 client_ptr_t iosb; /* I/O status block (NULL=all) */
2190 int only_thread; /* cancel matching this thread */
2191 @END
2194 /* Retrieve results of an async */
2195 @REQ(get_async_result)
2196 client_ptr_t user_arg; /* user arg used to identify async */
2197 @REPLY
2198 data_size_t size; /* result size (input or output depending on the operation) */
2199 VARARG(out_data,bytes); /* iosb output data */
2200 @END
2203 /* Perform a read on a file object */
2204 @REQ(read)
2205 async_data_t async; /* async I/O parameters */
2206 file_pos_t pos; /* read position */
2207 @REPLY
2208 obj_handle_t wait; /* handle to wait on for blocking read */
2209 unsigned int options; /* device open options */
2210 VARARG(data,bytes); /* read data */
2211 @END
2214 /* Perform a write on a file object */
2215 @REQ(write)
2216 async_data_t async; /* async I/O parameters */
2217 file_pos_t pos; /* write position */
2218 VARARG(data,bytes); /* write data */
2219 @REPLY
2220 obj_handle_t wait; /* handle to wait on for blocking write */
2221 unsigned int options; /* device open options */
2222 data_size_t size; /* size written */
2223 @END
2226 /* Perform an ioctl on a file */
2227 @REQ(ioctl)
2228 ioctl_code_t code; /* ioctl code */
2229 async_data_t async; /* async I/O parameters */
2230 VARARG(in_data,bytes); /* ioctl input data */
2231 @REPLY
2232 obj_handle_t wait; /* handle to wait on for blocking ioctl */
2233 unsigned int options; /* device open options */
2234 VARARG(out_data,bytes); /* ioctl output data */
2235 @END
2238 /* Store results of an async irp */
2239 @REQ(set_irp_result)
2240 obj_handle_t handle; /* handle to the irp */
2241 unsigned int status; /* status of the irp */
2242 data_size_t size; /* result size (input or output depending on the operation) */
2243 VARARG(data,bytes); /* output data of the irp */
2244 @END
2247 /* Create a named pipe */
2248 @REQ(create_named_pipe)
2249 unsigned int access;
2250 unsigned int options;
2251 unsigned int sharing;
2252 unsigned int maxinstances;
2253 unsigned int outsize;
2254 unsigned int insize;
2255 timeout_t timeout;
2256 unsigned int flags;
2257 VARARG(objattr,object_attributes); /* object attributes */
2258 @REPLY
2259 obj_handle_t handle; /* handle to the pipe */
2260 @END
2262 /* flags in create_named_pipe and get_named_pipe_info */
2263 #define NAMED_PIPE_MESSAGE_STREAM_WRITE 0x0001
2264 #define NAMED_PIPE_MESSAGE_STREAM_READ 0x0002
2265 #define NAMED_PIPE_NONBLOCKING_MODE 0x0004
2266 #define NAMED_PIPE_SERVER_END 0x8000
2268 /* Set named pipe information by handle */
2269 @REQ(set_named_pipe_info)
2270 obj_handle_t handle;
2271 unsigned int flags;
2272 @END
2274 /* Create a window */
2275 @REQ(create_window)
2276 user_handle_t parent; /* parent window */
2277 user_handle_t owner; /* owner window */
2278 atom_t atom; /* class atom */
2279 mod_handle_t instance; /* module instance */
2280 int dpi; /* system DPI */
2281 int awareness; /* thread DPI awareness */
2282 VARARG(class,unicode_str); /* class name */
2283 @REPLY
2284 user_handle_t handle; /* created window */
2285 user_handle_t parent; /* full handle of parent */
2286 user_handle_t owner; /* full handle of owner */
2287 int extra; /* number of extra bytes */
2288 client_ptr_t class_ptr; /* pointer to class in client address space */
2289 int dpi; /* window DPI if not per-monitor aware */
2290 int awareness; /* window DPI awareness */
2291 @END
2294 /* Destroy a window */
2295 @REQ(destroy_window)
2296 user_handle_t handle; /* handle to the window */
2297 @END
2300 /* Retrieve the desktop window for the current thread */
2301 @REQ(get_desktop_window)
2302 int force; /* force creation if it doesn't exist */
2303 @REPLY
2304 user_handle_t top_window; /* handle to the desktop window */
2305 user_handle_t msg_window; /* handle to the top-level HWND_MESSAGE parent */
2306 @END
2309 /* Set a window owner */
2310 @REQ(set_window_owner)
2311 user_handle_t handle; /* handle to the window */
2312 user_handle_t owner; /* new owner */
2313 @REPLY
2314 user_handle_t full_owner; /* full handle of new owner */
2315 user_handle_t prev_owner; /* full handle of previous owner */
2316 @END
2319 /* Get information from a window handle */
2320 @REQ(get_window_info)
2321 user_handle_t handle; /* handle to the window */
2322 @REPLY
2323 user_handle_t full_handle; /* full 32-bit handle */
2324 user_handle_t last_active; /* last active popup */
2325 process_id_t pid; /* process owning the window */
2326 thread_id_t tid; /* thread owning the window */
2327 atom_t atom; /* class atom */
2328 int is_unicode; /* ANSI or unicode */
2329 int dpi; /* window DPI */
2330 int awareness; /* DPI awareness */
2331 @END
2334 /* Set some information in a window */
2335 @REQ(set_window_info)
2336 unsigned short flags; /* flags for fields to set (see below) */
2337 short int is_unicode; /* ANSI or unicode */
2338 user_handle_t handle; /* handle to the window */
2339 unsigned int style; /* window style */
2340 unsigned int ex_style; /* window extended style */
2341 unsigned int id; /* window id */
2342 mod_handle_t instance; /* creator instance */
2343 lparam_t user_data; /* user-specific data */
2344 int extra_offset; /* offset to set in extra bytes */
2345 data_size_t extra_size; /* size to set in extra bytes */
2346 lparam_t extra_value; /* value to set in extra bytes */
2347 @REPLY
2348 unsigned int old_style; /* old window style */
2349 unsigned int old_ex_style; /* old window extended style */
2350 mod_handle_t old_instance; /* old creator instance */
2351 lparam_t old_user_data; /* old user-specific data */
2352 lparam_t old_extra_value; /* old value in extra bytes */
2353 unsigned int old_id; /* old window id */
2354 @END
2355 #define SET_WIN_STYLE 0x01
2356 #define SET_WIN_EXSTYLE 0x02
2357 #define SET_WIN_ID 0x04
2358 #define SET_WIN_INSTANCE 0x08
2359 #define SET_WIN_USERDATA 0x10
2360 #define SET_WIN_EXTRA 0x20
2361 #define SET_WIN_UNICODE 0x40
2364 /* Set the parent of a window */
2365 @REQ(set_parent)
2366 user_handle_t handle; /* handle to the window */
2367 user_handle_t parent; /* handle to the parent */
2368 @REPLY
2369 user_handle_t old_parent; /* old parent window */
2370 user_handle_t full_parent; /* full handle of new parent */
2371 int dpi; /* new window DPI if not per-monitor aware */
2372 int awareness; /* new DPI awareness */
2373 @END
2376 /* Get a list of the window parents, up to the root of the tree */
2377 @REQ(get_window_parents)
2378 user_handle_t handle; /* handle to the window */
2379 @REPLY
2380 int count; /* total count of parents */
2381 VARARG(parents,user_handles); /* parent handles */
2382 @END
2385 /* Get a list of the window children */
2386 @REQ(get_window_children)
2387 obj_handle_t desktop; /* handle to desktop */
2388 user_handle_t parent; /* parent window */
2389 atom_t atom; /* class atom for the listed children */
2390 thread_id_t tid; /* thread owning the listed children */
2391 VARARG(class,unicode_str); /* class name */
2392 @REPLY
2393 int count; /* total count of children */
2394 VARARG(children,user_handles); /* children handles */
2395 @END
2398 /* Get a list of the window children that contain a given point */
2399 @REQ(get_window_children_from_point)
2400 user_handle_t parent; /* parent window */
2401 int x; /* point in parent coordinates */
2402 int y;
2403 int dpi; /* dpi for the point coordinates */
2404 @REPLY
2405 int count; /* total count of children */
2406 VARARG(children,user_handles); /* children handles */
2407 @END
2410 /* Get window tree information from a window handle */
2411 @REQ(get_window_tree)
2412 user_handle_t handle; /* handle to the window */
2413 @REPLY
2414 user_handle_t parent; /* parent window */
2415 user_handle_t owner; /* owner window */
2416 user_handle_t next_sibling; /* next sibling in Z-order */
2417 user_handle_t prev_sibling; /* prev sibling in Z-order */
2418 user_handle_t first_sibling; /* first sibling in Z-order */
2419 user_handle_t last_sibling; /* last sibling in Z-order */
2420 user_handle_t first_child; /* first child */
2421 user_handle_t last_child; /* last child */
2422 @END
2424 /* Set the position and Z order of a window */
2425 @REQ(set_window_pos)
2426 unsigned short swp_flags; /* SWP_* flags */
2427 unsigned short paint_flags; /* paint flags (see below) */
2428 user_handle_t handle; /* handle to the window */
2429 user_handle_t previous; /* previous window in Z order */
2430 rectangle_t window; /* window rectangle (in parent coords) */
2431 rectangle_t client; /* client rectangle (in parent coords) */
2432 VARARG(valid,rectangles); /* valid rectangles from WM_NCCALCSIZE (in parent coords) */
2433 @REPLY
2434 unsigned int new_style; /* new window style */
2435 unsigned int new_ex_style; /* new window extended style */
2436 user_handle_t surface_win; /* parent window that holds the surface */
2437 int needs_update; /* whether the surface region needs an update */
2438 @END
2439 #define SET_WINPOS_PAINT_SURFACE 0x01 /* window has a paintable surface */
2440 #define SET_WINPOS_PIXEL_FORMAT 0x02 /* window has a custom pixel format */
2442 /* Get the window and client rectangles of a window */
2443 @REQ(get_window_rectangles)
2444 user_handle_t handle; /* handle to the window */
2445 int relative; /* coords relative to (see below) */
2446 int dpi; /* DPI to map to, or zero for per-monitor DPI */
2447 @REPLY
2448 rectangle_t window; /* window rectangle */
2449 rectangle_t client; /* client rectangle */
2450 @END
2451 enum coords_relative
2453 COORDS_CLIENT, /* relative to client area */
2454 COORDS_WINDOW, /* relative to whole window area */
2455 COORDS_PARENT, /* relative to parent's client area */
2456 COORDS_SCREEN /* relative to screen origin */
2460 /* Get the window text */
2461 @REQ(get_window_text)
2462 user_handle_t handle; /* handle to the window */
2463 @REPLY
2464 data_size_t length; /* total length in WCHARs */
2465 VARARG(text,unicode_str); /* window text */
2466 @END
2469 /* Set the window text */
2470 @REQ(set_window_text)
2471 user_handle_t handle; /* handle to the window */
2472 VARARG(text,unicode_str); /* window text */
2473 @END
2476 /* Get the coordinates offset between two windows */
2477 @REQ(get_windows_offset)
2478 user_handle_t from; /* handle to the first window */
2479 user_handle_t to; /* handle to the second window */
2480 int dpi; /* DPI to map to, or zero for per-monitor DPI */
2481 @REPLY
2482 int x; /* x coordinate offset */
2483 int y; /* y coordinate offset */
2484 int mirror; /* whether to mirror the x coordinate */
2485 @END
2488 /* Get the visible region of a window */
2489 @REQ(get_visible_region)
2490 user_handle_t window; /* handle to the window */
2491 unsigned int flags; /* DCX flags */
2492 @REPLY
2493 user_handle_t top_win; /* top window to clip against */
2494 rectangle_t top_rect; /* top window visible rect with screen coords */
2495 rectangle_t win_rect; /* window rect in screen coords */
2496 unsigned int paint_flags; /* paint flags (from SET_WINPOS_* flags) */
2497 data_size_t total_size; /* total size of the resulting region */
2498 VARARG(region,rectangles); /* list of rectangles for the region (in screen coords) */
2499 @END
2502 /* Get the visible surface region of a window */
2503 @REQ(get_surface_region)
2504 user_handle_t window; /* handle to the window */
2505 @REPLY
2506 rectangle_t visible_rect; /* window visible rect in screen coords */
2507 data_size_t total_size; /* total size of the resulting region */
2508 VARARG(region,rectangles); /* list of rectangles for the region (in screen coords) */
2509 @END
2512 /* Get the window region */
2513 @REQ(get_window_region)
2514 user_handle_t window; /* handle to the window */
2515 @REPLY
2516 data_size_t total_size; /* total size of the resulting region */
2517 VARARG(region,rectangles); /* list of rectangles for the region (in window coords) */
2518 @END
2521 /* Set the window region */
2522 @REQ(set_window_region)
2523 user_handle_t window; /* handle to the window */
2524 int redraw; /* redraw the window? */
2525 VARARG(region,rectangles); /* list of rectangles for the region (in window coords) */
2526 @END
2529 /* Get the window update region */
2530 @REQ(get_update_region)
2531 user_handle_t window; /* handle to the window */
2532 user_handle_t from_child; /* child to start searching from */
2533 unsigned int flags; /* update flags (see below) */
2534 @REPLY
2535 user_handle_t child; /* child to repaint (or window itself) */
2536 unsigned int flags; /* resulting update flags (see below) */
2537 data_size_t total_size; /* total size of the resulting region */
2538 VARARG(region,rectangles); /* list of rectangles for the region (in screen coords) */
2539 @END
2540 #define UPDATE_NONCLIENT 0x001 /* get region for repainting non-client area */
2541 #define UPDATE_ERASE 0x002 /* get region for erasing client area */
2542 #define UPDATE_PAINT 0x004 /* get region for painting client area */
2543 #define UPDATE_INTERNALPAINT 0x008 /* get region if internal paint is pending */
2544 #define UPDATE_ALLCHILDREN 0x010 /* force repaint of all children */
2545 #define UPDATE_NOCHILDREN 0x020 /* don't try to repaint any children */
2546 #define UPDATE_NOREGION 0x040 /* don't return a region, only the flags */
2547 #define UPDATE_DELAYED_ERASE 0x080 /* still needs erase after BeginPaint */
2548 #define UPDATE_CLIPCHILDREN 0x100 /* remove clipped children from the update region */
2551 /* Update the z order of a window so that a given rectangle is fully visible */
2552 @REQ(update_window_zorder)
2553 user_handle_t window; /* handle to the window */
2554 rectangle_t rect; /* rectangle that must be visible (in client coords) */
2555 @END
2558 /* Mark parts of a window as needing a redraw */
2559 @REQ(redraw_window)
2560 user_handle_t window; /* handle to the window */
2561 unsigned int flags; /* RDW_* flags */
2562 VARARG(region,rectangles); /* list of rectangles for the region (in window coords) */
2563 @END
2566 /* Set a window property */
2567 @REQ(set_window_property)
2568 user_handle_t window; /* handle to the window */
2569 lparam_t data; /* data to store */
2570 atom_t atom; /* property atom (if no name specified) */
2571 VARARG(name,unicode_str); /* property name */
2572 @END
2575 /* Remove a window property */
2576 @REQ(remove_window_property)
2577 user_handle_t window; /* handle to the window */
2578 atom_t atom; /* property atom (if no name specified) */
2579 VARARG(name,unicode_str); /* property name */
2580 @REPLY
2581 lparam_t data; /* data stored in property */
2582 @END
2585 /* Get a window property */
2586 @REQ(get_window_property)
2587 user_handle_t window; /* handle to the window */
2588 atom_t atom; /* property atom (if no name specified) */
2589 VARARG(name,unicode_str); /* property name */
2590 @REPLY
2591 lparam_t data; /* data stored in property */
2592 @END
2595 /* Get the list of properties of a window */
2596 @REQ(get_window_properties)
2597 user_handle_t window; /* handle to the window */
2598 @REPLY
2599 int total; /* total number of properties */
2600 VARARG(props,properties); /* list of properties */
2601 @END
2604 /* Create a window station */
2605 @REQ(create_winstation)
2606 unsigned int flags; /* window station flags */
2607 unsigned int access; /* wanted access rights */
2608 unsigned int attributes; /* object attributes */
2609 obj_handle_t rootdir; /* root directory */
2610 VARARG(name,unicode_str); /* object name */
2611 @REPLY
2612 obj_handle_t handle; /* handle to the window station */
2613 @END
2616 /* Open a handle to a window station */
2617 @REQ(open_winstation)
2618 unsigned int access; /* wanted access rights */
2619 unsigned int attributes; /* object attributes */
2620 obj_handle_t rootdir; /* root directory */
2621 VARARG(name,unicode_str); /* object name */
2622 @REPLY
2623 obj_handle_t handle; /* handle to the window station */
2624 @END
2627 /* Close a window station */
2628 @REQ(close_winstation)
2629 obj_handle_t handle; /* handle to the window station */
2630 @END
2633 /* Get the process current window station */
2634 @REQ(get_process_winstation)
2635 @REPLY
2636 obj_handle_t handle; /* handle to the window station */
2637 @END
2640 /* Set the process current window station */
2641 @REQ(set_process_winstation)
2642 obj_handle_t handle; /* handle to the window station */
2643 @END
2646 /* Enumerate window stations */
2647 @REQ(enum_winstation)
2648 unsigned int index; /* current index */
2649 @REPLY
2650 unsigned int next; /* next index */
2651 VARARG(name,unicode_str); /* window station name */
2652 @END
2655 /* Create a desktop */
2656 @REQ(create_desktop)
2657 unsigned int flags; /* desktop flags */
2658 unsigned int access; /* wanted access rights */
2659 unsigned int attributes; /* object attributes */
2660 VARARG(name,unicode_str); /* object name */
2661 @REPLY
2662 obj_handle_t handle; /* handle to the desktop */
2663 @END
2666 /* Open a handle to a desktop */
2667 @REQ(open_desktop)
2668 obj_handle_t winsta; /* window station to open (null allowed) */
2669 unsigned int flags; /* desktop flags */
2670 unsigned int access; /* wanted access rights */
2671 unsigned int attributes; /* object attributes */
2672 VARARG(name,unicode_str); /* object name */
2673 @REPLY
2674 obj_handle_t handle; /* handle to the desktop */
2675 @END
2678 /* Open a handle to current input desktop */
2679 @REQ(open_input_desktop)
2680 unsigned int flags; /* desktop flags */
2681 unsigned int access; /* wanted access rights */
2682 unsigned int attributes; /* object attributes */
2683 @REPLY
2684 obj_handle_t handle; /* handle to the desktop */
2685 @END
2688 /* Close a desktop */
2689 @REQ(close_desktop)
2690 obj_handle_t handle; /* handle to the desktop */
2691 @END
2694 /* Get the thread current desktop */
2695 @REQ(get_thread_desktop)
2696 thread_id_t tid; /* thread id */
2697 @REPLY
2698 obj_handle_t handle; /* handle to the desktop */
2699 @END
2702 /* Set the thread current desktop */
2703 @REQ(set_thread_desktop)
2704 obj_handle_t handle; /* handle to the desktop */
2705 @END
2708 /* Enumerate desktops */
2709 @REQ(enum_desktop)
2710 obj_handle_t winstation; /* handle to the window station */
2711 unsigned int index; /* current index */
2712 @REPLY
2713 unsigned int next; /* next index */
2714 VARARG(name,unicode_str); /* window station name */
2715 @END
2718 /* Get/set information about a user object (window station or desktop) */
2719 @REQ(set_user_object_info)
2720 obj_handle_t handle; /* handle to the object */
2721 unsigned int flags; /* information to set/get */
2722 unsigned int obj_flags; /* new object flags */
2723 @REPLY
2724 int is_desktop; /* is object a desktop? */
2725 unsigned int old_obj_flags; /* old object flags */
2726 VARARG(name,unicode_str); /* object name */
2727 @END
2728 #define SET_USER_OBJECT_SET_FLAGS 1
2729 #define SET_USER_OBJECT_GET_FULL_NAME 2
2732 /* Register a hotkey */
2733 @REQ(register_hotkey)
2734 user_handle_t window; /* handle to the window */
2735 int id; /* hotkey identifier */
2736 unsigned int flags; /* modifier keys */
2737 unsigned int vkey; /* virtual key code */
2738 @REPLY
2739 int replaced; /* did we replace an existing hotkey? */
2740 unsigned int flags; /* flags of replaced hotkey */
2741 unsigned int vkey; /* virtual key code of replaced hotkey */
2742 @END
2745 /* Unregister a hotkey */
2746 @REQ(unregister_hotkey)
2747 user_handle_t window; /* handle to the window */
2748 int id; /* hotkey identifier */
2749 @REPLY
2750 unsigned int flags; /* flags of removed hotkey */
2751 unsigned int vkey; /* virtual key code of removed hotkey */
2752 @END
2755 /* Attach (or detach) thread inputs */
2756 @REQ(attach_thread_input)
2757 thread_id_t tid_from; /* thread to be attached */
2758 thread_id_t tid_to; /* thread to which tid_from should be attached */
2759 int attach; /* is it an attach? */
2760 @END
2763 /* Get input data for a given thread */
2764 @REQ(get_thread_input)
2765 thread_id_t tid; /* id of thread */
2766 @REPLY
2767 user_handle_t focus; /* handle to the focus window */
2768 user_handle_t capture; /* handle to the capture window */
2769 user_handle_t active; /* handle to the active window */
2770 user_handle_t foreground; /* handle to the global foreground window */
2771 user_handle_t menu_owner; /* handle to the menu owner */
2772 user_handle_t move_size; /* handle to the moving/resizing window */
2773 user_handle_t caret; /* handle to the caret window */
2774 user_handle_t cursor; /* handle to the cursor */
2775 int show_count; /* cursor show count */
2776 rectangle_t rect; /* caret rectangle */
2777 @END
2780 /* Get the time of the last input event */
2781 @REQ(get_last_input_time)
2782 @REPLY
2783 unsigned int time;
2784 @END
2787 /* Retrieve queue keyboard state for current thread or global async state */
2788 @REQ(get_key_state)
2789 int async; /* whether to query the async state */
2790 int key; /* optional key code or -1 */
2791 @REPLY
2792 unsigned char state; /* state of specified key */
2793 VARARG(keystate,bytes); /* state array for all the keys */
2794 @END
2796 /* Set queue keyboard state for current thread */
2797 @REQ(set_key_state)
2798 int async; /* whether to change the async state too */
2799 VARARG(keystate,bytes); /* state array for all the keys */
2800 @END
2802 /* Set the system foreground window */
2803 @REQ(set_foreground_window)
2804 user_handle_t handle; /* handle to the foreground window */
2805 @REPLY
2806 user_handle_t previous; /* handle to the previous foreground window */
2807 int send_msg_old; /* whether we have to send a msg to the old window */
2808 int send_msg_new; /* whether we have to send a msg to the new window */
2809 @END
2811 /* Set the current thread focus window */
2812 @REQ(set_focus_window)
2813 user_handle_t handle; /* handle to the focus window */
2814 @REPLY
2815 user_handle_t previous; /* handle to the previous focus window */
2816 @END
2818 /* Set the current thread active window */
2819 @REQ(set_active_window)
2820 user_handle_t handle; /* handle to the active window */
2821 @REPLY
2822 user_handle_t previous; /* handle to the previous active window */
2823 @END
2825 /* Set the current thread capture window */
2826 @REQ(set_capture_window)
2827 user_handle_t handle; /* handle to the capture window */
2828 unsigned int flags; /* capture flags (see below) */
2829 @REPLY
2830 user_handle_t previous; /* handle to the previous capture window */
2831 user_handle_t full_handle; /* full 32-bit handle of new capture window */
2832 @END
2833 #define CAPTURE_MENU 0x01 /* capture is for a menu */
2834 #define CAPTURE_MOVESIZE 0x02 /* capture is for moving/resizing */
2837 /* Set the current thread caret window */
2838 @REQ(set_caret_window)
2839 user_handle_t handle; /* handle to the caret window */
2840 int width; /* caret width */
2841 int height; /* caret height */
2842 @REPLY
2843 user_handle_t previous; /* handle to the previous caret window */
2844 rectangle_t old_rect; /* previous caret rectangle */
2845 int old_hide; /* previous hide count */
2846 int old_state; /* previous caret state (1=on, 0=off) */
2847 @END
2850 /* Set the current thread caret information */
2851 @REQ(set_caret_info)
2852 unsigned int flags; /* caret flags (see below) */
2853 user_handle_t handle; /* handle to the caret window */
2854 int x; /* caret x position */
2855 int y; /* caret y position */
2856 int hide; /* increment for hide count (can be negative to show it) */
2857 int state; /* caret state (see below) */
2858 @REPLY
2859 user_handle_t full_handle; /* handle to the current caret window */
2860 rectangle_t old_rect; /* previous caret rectangle */
2861 int old_hide; /* previous hide count */
2862 int old_state; /* previous caret state (1=on, 0=off) */
2863 @END
2864 #define SET_CARET_POS 0x01 /* set the caret position from x,y */
2865 #define SET_CARET_HIDE 0x02 /* increment the caret hide count */
2866 #define SET_CARET_STATE 0x04 /* set the caret on/off state */
2867 enum caret_state
2869 CARET_STATE_OFF, /* off */
2870 CARET_STATE_ON, /* on */
2871 CARET_STATE_TOGGLE, /* toggle current state */
2872 CARET_STATE_ON_IF_MOVED /* on if the position differs, unchanged otherwise */
2876 /* Set a window hook */
2877 @REQ(set_hook)
2878 int id; /* id of the hook */
2879 process_id_t pid; /* id of process to set the hook into */
2880 thread_id_t tid; /* id of thread to set the hook into */
2881 int event_min;
2882 int event_max;
2883 client_ptr_t proc; /* hook procedure */
2884 int flags;
2885 int unicode; /* is it a unicode hook? */
2886 VARARG(module,unicode_str); /* module name */
2887 @REPLY
2888 user_handle_t handle; /* handle to the hook */
2889 unsigned int active_hooks; /* active hooks bitmap */
2890 @END
2893 /* Remove a window hook */
2894 @REQ(remove_hook)
2895 user_handle_t handle; /* handle to the hook */
2896 client_ptr_t proc; /* hook procedure if handle is 0 */
2897 int id; /* id of the hook if handle is 0 */
2898 @REPLY
2899 unsigned int active_hooks; /* active hooks bitmap */
2900 @END
2903 /* Start calling a hook chain */
2904 @REQ(start_hook_chain)
2905 int id; /* id of the hook */
2906 int event; /* signalled event */
2907 user_handle_t window; /* handle to the event window */
2908 int object_id; /* object id for out of context winevent */
2909 int child_id; /* child id for out of context winevent */
2910 @REPLY
2911 user_handle_t handle; /* handle to the next 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 int unicode; /* is it a unicode hook? */
2915 client_ptr_t proc; /* hook procedure */
2916 unsigned int active_hooks; /* active hooks bitmap */
2917 VARARG(module,unicode_str); /* module name */
2918 @END
2921 /* Finished calling a hook chain */
2922 @REQ(finish_hook_chain)
2923 int id; /* id of the hook */
2924 @END
2927 /* Get the hook information */
2928 @REQ(get_hook_info)
2929 user_handle_t handle; /* handle to the current hook */
2930 int get_next; /* do we want info about current or next hook? */
2931 int event; /* signalled event */
2932 user_handle_t window; /* handle to the event window */
2933 int object_id; /* object id for out of context winevent */
2934 int child_id; /* child id for out of context winevent */
2935 @REPLY
2936 user_handle_t handle; /* handle to the hook */
2937 int id; /* id of the hook */
2938 process_id_t pid; /* process id for low-level keyboard/mouse hooks */
2939 thread_id_t tid; /* thread id for low-level keyboard/mouse hooks */
2940 client_ptr_t proc; /* hook procedure */
2941 int unicode; /* is it a unicode hook? */
2942 VARARG(module,unicode_str); /* module name */
2943 @END
2946 /* Create a window class */
2947 @REQ(create_class)
2948 int local; /* is it a local class? */
2949 atom_t atom; /* class atom */
2950 unsigned int style; /* class style */
2951 mod_handle_t instance; /* module instance */
2952 int extra; /* number of extra class bytes */
2953 int win_extra; /* number of window extra bytes */
2954 client_ptr_t client_ptr; /* pointer to class in client address space */
2955 data_size_t name_offset; /* base class name offset for specified atom */
2956 VARARG(name,unicode_str); /* class name */
2957 @REPLY
2958 atom_t atom; /* resulting class atom */
2959 @END
2962 /* Destroy a window class */
2963 @REQ(destroy_class)
2964 atom_t atom; /* class atom */
2965 mod_handle_t instance; /* module instance */
2966 VARARG(name,unicode_str); /* class name */
2967 @REPLY
2968 client_ptr_t client_ptr; /* pointer to class in client address space */
2969 @END
2972 /* Set some information in a class */
2973 @REQ(set_class_info)
2974 user_handle_t window; /* handle to the window */
2975 unsigned int flags; /* flags for info to set (see below) */
2976 atom_t atom; /* class atom */
2977 unsigned int style; /* class style */
2978 int win_extra; /* number of window extra bytes */
2979 mod_handle_t instance; /* module instance */
2980 int extra_offset; /* offset to set in extra bytes */
2981 data_size_t extra_size; /* size to set in extra bytes */
2982 lparam_t extra_value; /* value to set in extra bytes */
2983 @REPLY
2984 atom_t old_atom; /* previous class atom */
2985 atom_t base_atom; /* base class atom */
2986 mod_handle_t old_instance; /* previous module instance */
2987 lparam_t old_extra_value; /* old value in extra bytes */
2988 unsigned int old_style; /* previous class style */
2989 int old_extra; /* previous number of class extra bytes */
2990 int old_win_extra; /* previous number of window extra bytes */
2991 @END
2992 #define SET_CLASS_ATOM 0x0001
2993 #define SET_CLASS_STYLE 0x0002
2994 #define SET_CLASS_WINEXTRA 0x0004
2995 #define SET_CLASS_INSTANCE 0x0008
2996 #define SET_CLASS_EXTRA 0x0010
2999 /* Open the clipboard */
3000 @REQ(open_clipboard)
3001 user_handle_t window; /* clipboard window */
3002 @REPLY
3003 user_handle_t owner; /* current clipboard owner */
3004 @END
3007 /* Close the clipboard */
3008 @REQ(close_clipboard)
3009 @REPLY
3010 user_handle_t viewer; /* first clipboard viewer */
3011 user_handle_t owner; /* current clipboard owner */
3012 @END
3015 /* Empty the clipboard and grab ownership */
3016 @REQ(empty_clipboard)
3017 @END
3020 /* Add a data format to the clipboard */
3021 @REQ(set_clipboard_data)
3022 unsigned int format; /* clipboard format of the data */
3023 unsigned int lcid; /* locale id to use for synthesizing text formats */
3024 VARARG(data,bytes); /* data contents */
3025 @REPLY
3026 unsigned int seqno; /* sequence number for the set data */
3027 @END
3030 /* Fetch a data format from the clipboard */
3031 @REQ(get_clipboard_data)
3032 unsigned int format; /* clipboard format of the data */
3033 int render; /* will we try to render it if missing? */
3034 int cached; /* do we already have it in the client-side cache? */
3035 unsigned int seqno; /* sequence number for the data in the cache */
3036 @REPLY
3037 unsigned int from; /* for synthesized data, format to generate it from */
3038 user_handle_t owner; /* clipboard owner for delayed-rendered formats */
3039 unsigned int seqno; /* sequence number for the originally set data */
3040 data_size_t total; /* total data size */
3041 VARARG(data,bytes); /* data contents */
3042 @END
3045 /* Retrieve a list of available formats */
3046 @REQ(get_clipboard_formats)
3047 unsigned int format; /* specific format to query, return all if 0 */
3048 @REPLY
3049 unsigned int count; /* count of available formats */
3050 VARARG(formats,uints); /* array of available formats */
3051 @END
3054 /* Retrieve the next available format */
3055 @REQ(enum_clipboard_formats)
3056 unsigned int previous; /* previous format, or first if 0 */
3057 @REPLY
3058 unsigned int format; /* next format */
3059 @END
3062 /* Release ownership of the clipboard */
3063 @REQ(release_clipboard)
3064 user_handle_t owner; /* clipboard owner to release */
3065 @REPLY
3066 user_handle_t viewer; /* first clipboard viewer */
3067 user_handle_t owner; /* current clipboard owner */
3068 @END
3071 /* Get clipboard information */
3072 @REQ(get_clipboard_info)
3073 @REPLY
3074 user_handle_t window; /* clipboard window */
3075 user_handle_t owner; /* clipboard owner */
3076 user_handle_t viewer; /* clipboard viewer */
3077 unsigned int seqno; /* current sequence number */
3078 @END
3081 /* Set the clipboard viewer window */
3082 @REQ(set_clipboard_viewer)
3083 user_handle_t viewer; /* clipboard viewer */
3084 user_handle_t previous; /* if non-zero, check that this was the previous viewer */
3085 @REPLY
3086 user_handle_t old_viewer; /* previous clipboard viewer */
3087 user_handle_t owner; /* clipboard owner */
3088 @END
3091 /* Add a clipboard listener window */
3092 @REQ(add_clipboard_listener)
3093 user_handle_t window; /* clipboard listener window */
3094 @END
3097 /* Remove a clipboard listener window */
3098 @REQ(remove_clipboard_listener)
3099 user_handle_t window; /* clipboard listener window */
3100 @END
3103 /* Open a security token */
3104 @REQ(open_token)
3105 obj_handle_t handle; /* handle to the thread or process */
3106 unsigned int access; /* access rights to the new token */
3107 unsigned int attributes;/* object attributes */
3108 unsigned int flags; /* flags (see below) */
3109 @REPLY
3110 obj_handle_t token; /* handle to the token */
3111 @END
3112 #define OPEN_TOKEN_THREAD 1
3113 #define OPEN_TOKEN_AS_SELF 2
3116 /* Set/get the global windows */
3117 @REQ(set_global_windows)
3118 unsigned int flags; /* flags for fields to set (see below) */
3119 user_handle_t shell_window; /* handle to the new shell window */
3120 user_handle_t shell_listview; /* handle to the new shell listview window */
3121 user_handle_t progman_window; /* handle to the new program manager window */
3122 user_handle_t taskman_window; /* handle to the new task manager window */
3123 @REPLY
3124 user_handle_t old_shell_window; /* handle to the shell window */
3125 user_handle_t old_shell_listview; /* handle to the shell listview window */
3126 user_handle_t old_progman_window; /* handle to the new program manager window */
3127 user_handle_t old_taskman_window; /* handle to the new task manager window */
3128 @END
3129 #define SET_GLOBAL_SHELL_WINDOWS 0x01 /* set both main shell and listview windows */
3130 #define SET_GLOBAL_PROGMAN_WINDOW 0x02
3131 #define SET_GLOBAL_TASKMAN_WINDOW 0x04
3133 /* Adjust the privileges held by a token */
3134 @REQ(adjust_token_privileges)
3135 obj_handle_t handle; /* handle to the token */
3136 int disable_all; /* disable all privileges? */
3137 int get_modified_state; /* get modified privileges? */
3138 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges to enable/disable/remove */
3139 @REPLY
3140 unsigned int len; /* total length in bytes required to store token privileges */
3141 VARARG(privileges,LUID_AND_ATTRIBUTES); /* modified privileges */
3142 @END
3144 /* Retrieves the set of privileges held by or available to a token */
3145 @REQ(get_token_privileges)
3146 obj_handle_t handle; /* handle to the token */
3147 @REPLY
3148 unsigned int len; /* total length in bytes required to store token privileges */
3149 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges held by or available to a token */
3150 @END
3152 /* Check the token has the required privileges */
3153 @REQ(check_token_privileges)
3154 obj_handle_t handle; /* handle to the token */
3155 int all_required; /* are all the privileges required for the check to succeed? */
3156 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges to check */
3157 @REPLY
3158 int has_privileges; /* does the token have the required privileges? */
3159 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges held by or available to a token */
3160 @END
3162 @REQ(duplicate_token)
3163 obj_handle_t handle; /* handle to the token to duplicate */
3164 unsigned int access; /* access rights to the new token */
3165 int primary; /* is the new token to be a primary one? */
3166 int impersonation_level; /* impersonation level of the new token */
3167 VARARG(objattr,object_attributes); /* object attributes */
3168 @REPLY
3169 obj_handle_t new_handle; /* duplicated handle */
3170 @END
3172 @REQ(filter_token)
3173 obj_handle_t handle; /* handle to the token to duplicate */
3174 unsigned int flags; /* flags */
3175 data_size_t privileges_size; /* size of privileges */
3176 VARARG(privileges,LUID_AND_ATTRIBUTES,privileges_size); /* privileges to remove from new token */
3177 VARARG(disable_sids,SID); /* array of groups to remove from new token */
3178 @REPLY
3179 obj_handle_t new_handle; /* filtered handle */
3180 @END
3182 @REQ(access_check)
3183 obj_handle_t handle; /* handle to the token */
3184 unsigned int desired_access; /* desired access to the object */
3185 generic_map_t mapping; /* mapping to specific rights */
3186 VARARG(sd,security_descriptor); /* security descriptor to check */
3187 @REPLY
3188 unsigned int access_granted; /* access rights actually granted */
3189 unsigned int access_status; /* was access granted? */
3190 unsigned int privileges_len; /* length needed to store privileges */
3191 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges used during access check */
3192 @END
3194 @REQ(get_token_sid)
3195 obj_handle_t handle; /* handle to the token */
3196 unsigned int which_sid; /* which SID to retrieve from the token */
3197 @REPLY
3198 data_size_t sid_len; /* length needed to store sid */
3199 VARARG(sid,SID); /* the sid specified by which_sid from the token */
3200 @END
3202 @REQ(get_token_groups)
3203 obj_handle_t handle; /* handle to the token */
3204 @REPLY
3205 data_size_t user_len; /* length needed to store user */
3206 VARARG(user,token_groups); /* groups the token's user belongs to */
3207 @END
3209 @REQ(get_token_default_dacl)
3210 obj_handle_t handle; /* handle to the token */
3211 @REPLY
3212 data_size_t acl_len; /* length needed to store access control list */
3213 VARARG(acl,ACL); /* access control list */
3214 @END
3216 @REQ(set_token_default_dacl)
3217 obj_handle_t handle; /* handle to the token */
3218 VARARG(acl,ACL); /* default dacl to set */
3219 @END
3221 @REQ(set_security_object)
3222 obj_handle_t handle; /* handle to the object */
3223 unsigned int security_info; /* which parts of security descriptor to set */
3224 VARARG(sd,security_descriptor); /* security descriptor to set */
3225 @END
3227 @REQ(get_security_object)
3228 obj_handle_t handle; /* handle to the object */
3229 unsigned int security_info; /* which parts of security descriptor to get */
3230 @REPLY
3231 unsigned int sd_len; /* buffer size needed for sd */
3232 VARARG(sd,security_descriptor); /* retrieved security descriptor */
3233 @END
3236 struct handle_info
3238 process_id_t owner;
3239 obj_handle_t handle;
3240 unsigned int access;
3241 unsigned int attributes;
3242 unsigned int type;
3245 /* Return a list of all opened handles */
3246 @REQ(get_system_handles)
3247 @REPLY
3248 unsigned int count; /* number of handles */
3249 VARARG(data,handle_infos); /* array of handle_infos */
3250 @END
3253 /* Create a mailslot */
3254 @REQ(create_mailslot)
3255 unsigned int access; /* wanted access rights */
3256 timeout_t read_timeout;
3257 unsigned int max_msgsize;
3258 VARARG(objattr,object_attributes); /* object attributes */
3259 @REPLY
3260 obj_handle_t handle; /* handle to the mailslot */
3261 @END
3264 /* Set mailslot information */
3265 @REQ(set_mailslot_info)
3266 obj_handle_t handle; /* handle to the mailslot */
3267 timeout_t read_timeout;
3268 unsigned int flags;
3269 @REPLY
3270 timeout_t read_timeout;
3271 unsigned int max_msgsize;
3272 @END
3273 #define MAILSLOT_SET_READ_TIMEOUT 1
3276 /* Create a directory object */
3277 @REQ(create_directory)
3278 unsigned int access; /* access flags */
3279 VARARG(objattr,object_attributes); /* object attributes */
3280 @REPLY
3281 obj_handle_t handle; /* handle to the directory */
3282 @END
3285 /* Open a directory object */
3286 @REQ(open_directory)
3287 unsigned int access; /* access flags */
3288 unsigned int attributes; /* object attributes */
3289 obj_handle_t rootdir; /* root directory */
3290 VARARG(directory_name,unicode_str); /* Directory name */
3291 @REPLY
3292 obj_handle_t handle; /* handle to the directory */
3293 @END
3296 /* Get a directory entry by index */
3297 @REQ(get_directory_entry)
3298 obj_handle_t handle; /* handle to the directory */
3299 unsigned int index; /* entry index */
3300 @REPLY
3301 data_size_t name_len; /* length of the entry name in bytes */
3302 VARARG(name,unicode_str,name_len); /* entry name */
3303 VARARG(type,unicode_str); /* entry type */
3304 @END
3307 /* Create a symbolic link object */
3308 @REQ(create_symlink)
3309 unsigned int access; /* access flags */
3310 VARARG(objattr,object_attributes); /* object attributes */
3311 VARARG(target_name,unicode_str); /* target name */
3312 @REPLY
3313 obj_handle_t handle; /* handle to the symlink */
3314 @END
3317 /* Open a symbolic link object */
3318 @REQ(open_symlink)
3319 unsigned int access; /* access flags */
3320 unsigned int attributes; /* object attributes */
3321 obj_handle_t rootdir; /* root directory */
3322 VARARG(name,unicode_str); /* symlink name */
3323 @REPLY
3324 obj_handle_t handle; /* handle to the symlink */
3325 @END
3328 /* Query a symbolic link object */
3329 @REQ(query_symlink)
3330 obj_handle_t handle; /* handle to the symlink */
3331 @REPLY
3332 data_size_t total; /* total needed size for name */
3333 VARARG(target_name,unicode_str); /* target name */
3334 @END
3337 /* Query basic object information */
3338 @REQ(get_object_info)
3339 obj_handle_t handle; /* handle to the object */
3340 @REPLY
3341 unsigned int access; /* granted access mask */
3342 unsigned int ref_count; /* object ref count */
3343 unsigned int handle_count; /* object handle count */
3344 data_size_t total; /* total needed size for name */
3345 VARARG(name,unicode_str); /* object name */
3346 @END
3349 /* Query object type name information */
3350 @REQ(get_object_type)
3351 obj_handle_t handle; /* handle to the object */
3352 @REPLY
3353 VARARG(info,object_type_info); /* type information */
3354 @END
3357 /* Query type information for all types */
3358 @REQ(get_object_types)
3359 @REPLY
3360 int count; /* total count of object types */
3361 VARARG(info,object_types_info); /* type information */
3362 @END
3365 /* Allocate a locally-unique identifier */
3366 @REQ(allocate_locally_unique_id)
3367 @REPLY
3368 luid_t luid;
3369 @END
3372 /* Create a device manager */
3373 @REQ(create_device_manager)
3374 unsigned int access; /* wanted access rights */
3375 unsigned int attributes; /* object attributes */
3376 @REPLY
3377 obj_handle_t handle; /* handle to the device */
3378 @END
3381 /* Create a device */
3382 @REQ(create_device)
3383 obj_handle_t rootdir; /* root directory */
3384 client_ptr_t user_ptr; /* opaque ptr for use by client */
3385 obj_handle_t manager; /* device manager */
3386 VARARG(name,unicode_str); /* object name */
3387 @END
3390 /* Delete a device */
3391 @REQ(delete_device)
3392 obj_handle_t manager; /* handle to the device manager */
3393 client_ptr_t device; /* pointer to the device */
3394 @END
3397 /* Retrieve the next pending device irp request */
3398 @REQ(get_next_device_request)
3399 obj_handle_t manager; /* handle to the device manager */
3400 obj_handle_t prev; /* handle to the previous irp */
3401 unsigned int status; /* status of the previous irp */
3402 client_ptr_t user_ptr; /* user pointer of the previous irp */
3403 @REPLY
3404 irp_params_t params; /* irp parameters */
3405 obj_handle_t next; /* handle to the next irp */
3406 thread_id_t client_tid; /* tid of thread calling irp */
3407 client_ptr_t client_thread; /* pointer to thread object of calling irp */
3408 data_size_t in_size; /* total needed input size */
3409 VARARG(next_data,bytes); /* input data of the next irp */
3410 @END
3413 /* Get kernel pointer from server object */
3414 @REQ(get_kernel_object_ptr)
3415 obj_handle_t manager; /* handle to the device manager */
3416 obj_handle_t handle; /* object handle */
3417 @REPLY
3418 client_ptr_t user_ptr; /* kernel object pointer */
3419 @END
3422 /* Associate kernel pointer with server object */
3423 @REQ(set_kernel_object_ptr)
3424 obj_handle_t manager; /* handle to the device manager */
3425 obj_handle_t handle; /* object handle */
3426 client_ptr_t user_ptr; /* kernel object pointer */
3427 @END
3430 /* Grab server object reference from kernel object pointer */
3431 @REQ(grab_kernel_object)
3432 obj_handle_t manager; /* handle to the device manager */
3433 client_ptr_t user_ptr; /* kernel object pointer */
3434 @END
3437 /* Release server object reference from kernel object pointer */
3438 @REQ(release_kernel_object)
3439 obj_handle_t manager; /* handle to the device manager */
3440 client_ptr_t user_ptr; /* kernel object pointer */
3441 @END
3444 /* Get handle from kernel object pointer */
3445 @REQ(get_kernel_object_handle)
3446 obj_handle_t manager; /* handle to the device manager */
3447 client_ptr_t user_ptr; /* kernel object pointer */
3448 unsigned int access; /* wanted access rights */
3449 @REPLY
3450 obj_handle_t handle; /* kernel object handle */
3451 @END
3454 /* Make the current process a system process */
3455 @REQ(make_process_system)
3456 obj_handle_t handle; /* handle to the process */
3457 @REPLY
3458 obj_handle_t event; /* event signaled when all user processes have exited */
3459 @END
3462 /* Get detailed fixed-size information about a token */
3463 @REQ(get_token_info)
3464 obj_handle_t handle; /* handle to the object */
3465 @REPLY
3466 luid_t token_id; /* locally-unique identifier of the token */
3467 luid_t modified_id; /* locally-unique identifier of the modified version of the token */
3468 int primary; /* is the token primary or impersonation? */
3469 int impersonation_level; /* level of impersonation */
3470 int elevation; /* elevation type */
3471 int group_count; /* the number of groups the token is a member of */
3472 int privilege_count; /* the number of privileges the token has */
3473 @END
3476 /* Create a token which is an elevation counterpart to this token */
3477 @REQ(create_linked_token)
3478 obj_handle_t handle; /* handle to the token */
3479 @REPLY
3480 obj_handle_t linked; /* handle to the linked token */
3481 @END
3484 /* Create I/O completion port */
3485 @REQ(create_completion)
3486 unsigned int access; /* desired access to a port */
3487 unsigned int concurrent; /* max number of concurrent active threads */
3488 VARARG(objattr,object_attributes); /* object attributes */
3489 @REPLY
3490 obj_handle_t handle; /* port handle */
3491 @END
3494 /* Open I/O completion port */
3495 @REQ(open_completion)
3496 unsigned int access; /* desired access to a port */
3497 unsigned int attributes; /* object attributes */
3498 obj_handle_t rootdir; /* root directory */
3499 VARARG(filename,unicode_str); /* port name */
3500 @REPLY
3501 obj_handle_t handle; /* port handle */
3502 @END
3505 /* add completion to completion port */
3506 @REQ(add_completion)
3507 obj_handle_t handle; /* port handle */
3508 apc_param_t ckey; /* completion key */
3509 apc_param_t cvalue; /* completion value */
3510 apc_param_t information; /* IO_STATUS_BLOCK Information */
3511 unsigned int status; /* completion result */
3512 @END
3515 /* get completion from completion port queue */
3516 @REQ(remove_completion)
3517 obj_handle_t handle; /* port handle */
3518 @REPLY
3519 apc_param_t ckey; /* completion key */
3520 apc_param_t cvalue; /* completion value */
3521 apc_param_t information; /* IO_STATUS_BLOCK Information */
3522 unsigned int status; /* completion result */
3523 @END
3526 /* get completion queue depth */
3527 @REQ(query_completion)
3528 obj_handle_t handle; /* port handle */
3529 @REPLY
3530 unsigned int depth; /* completion queue depth */
3531 @END
3534 /* associate object with completion port */
3535 @REQ(set_completion_info)
3536 obj_handle_t handle; /* object handle */
3537 apc_param_t ckey; /* completion key */
3538 obj_handle_t chandle; /* port handle */
3539 @END
3542 /* check for associated completion and push msg */
3543 @REQ(add_fd_completion)
3544 obj_handle_t handle; /* async' object */
3545 apc_param_t cvalue; /* completion value */
3546 apc_param_t information; /* IO_STATUS_BLOCK Information */
3547 unsigned int status; /* completion status */
3548 int async; /* completion is an async result */
3549 @END
3552 /* set fd completion information */
3553 @REQ(set_fd_completion_mode)
3554 obj_handle_t handle; /* handle to a file or directory */
3555 unsigned int flags; /* completion notification flags */
3556 @END
3559 /* set fd disposition information */
3560 @REQ(set_fd_disp_info)
3561 obj_handle_t handle; /* handle to a file or directory */
3562 int unlink; /* whether to unlink file on close */
3563 @END
3566 /* set fd name information */
3567 @REQ(set_fd_name_info)
3568 obj_handle_t handle; /* handle to a file or directory */
3569 obj_handle_t rootdir; /* root directory */
3570 data_size_t namelen; /* length of NT name in bytes */
3571 int link; /* link instead of renaming */
3572 int replace; /* replace an existing file? */
3573 VARARG(name,unicode_str,namelen); /* NT name */
3574 VARARG(filename,string); /* new file name */
3575 @END
3578 /* Retrieve layered info for a window */
3579 @REQ(get_window_layered_info)
3580 user_handle_t handle; /* handle to the window */
3581 @REPLY
3582 unsigned int color_key; /* color key */
3583 unsigned int alpha; /* alpha (0..255) */
3584 unsigned int flags; /* LWA_* flags */
3585 @END
3588 /* Set layered info for a window */
3589 @REQ(set_window_layered_info)
3590 user_handle_t handle; /* handle to the window */
3591 unsigned int color_key; /* color key */
3592 unsigned int alpha; /* alpha (0..255) */
3593 unsigned int flags; /* LWA_* flags */
3594 @END
3597 /* Allocate an arbitrary user handle */
3598 @REQ(alloc_user_handle)
3599 @REPLY
3600 user_handle_t handle; /* allocated handle */
3601 @END
3604 /* Free an arbitrary user handle */
3605 @REQ(free_user_handle)
3606 user_handle_t handle; /* handle to free*/
3607 @END
3610 /* Set/get the current cursor */
3611 @REQ(set_cursor)
3612 unsigned int flags; /* flags for fields to set (see below) */
3613 user_handle_t handle; /* handle to the cursor */
3614 int show_count; /* show count increment/decrement */
3615 int x; /* cursor position */
3616 int y;
3617 rectangle_t clip; /* cursor clip rectangle */
3618 unsigned int clip_msg; /* message to post on cursor clip changes */
3619 @REPLY
3620 user_handle_t prev_handle; /* previous handle */
3621 int prev_count; /* previous show count */
3622 int prev_x; /* previous position */
3623 int prev_y;
3624 int new_x; /* new position */
3625 int new_y;
3626 rectangle_t new_clip; /* new clip rectangle */
3627 unsigned int last_change; /* time of last position change */
3628 @END
3629 #define SET_CURSOR_HANDLE 0x01
3630 #define SET_CURSOR_COUNT 0x02
3631 #define SET_CURSOR_POS 0x04
3632 #define SET_CURSOR_CLIP 0x08
3633 #define SET_CURSOR_NOCLIP 0x10
3635 /* Get the history of the 64 last cursor positions */
3636 @REQ(get_cursor_history)
3637 @REPLY
3638 VARARG(history,cursor_positions);
3639 @END
3642 /* Batch read rawinput message data */
3643 @REQ(get_rawinput_buffer)
3644 data_size_t rawinput_size; /* size of RAWINPUT structure */
3645 data_size_t buffer_size; /* size of output buffer */
3646 @REPLY
3647 data_size_t next_size; /* minimum size to get next message data */
3648 unsigned int count;
3649 VARARG(data,bytes);
3650 @END
3652 /* Modify the list of registered rawinput devices */
3653 @REQ(update_rawinput_devices)
3654 VARARG(devices,rawinput_devices);
3655 @END
3657 /* Retrieve the list of registered rawinput devices */
3658 @REQ(get_rawinput_devices)
3659 @REPLY
3660 unsigned int device_count;
3661 VARARG(devices,rawinput_devices);
3662 @END
3664 /* Create a new job object */
3665 @REQ(create_job)
3666 unsigned int access; /* wanted access rights */
3667 VARARG(objattr,object_attributes); /* object attributes */
3668 @REPLY
3669 obj_handle_t handle; /* handle to the job */
3670 @END
3673 /* Open a job object */
3674 @REQ(open_job)
3675 unsigned int access; /* wanted access rights */
3676 unsigned int attributes; /* object attributes */
3677 obj_handle_t rootdir; /* root directory */
3678 VARARG(name,unicode_str); /* object name */
3679 @REPLY
3680 obj_handle_t handle; /* handle to the job */
3681 @END
3684 /* Assign a job object to a process */
3685 @REQ(assign_job)
3686 obj_handle_t job; /* handle to the job */
3687 obj_handle_t process; /* handle to the process */
3688 @END
3691 /* Check if a process is associated with a job */
3692 @REQ(process_in_job)
3693 obj_handle_t job; /* handle to the job */
3694 obj_handle_t process; /* handle to the process */
3695 @END
3698 /* Set limit flags on a job */
3699 @REQ(set_job_limits)
3700 obj_handle_t handle; /* handle to the job */
3701 unsigned int limit_flags; /* new limit flags */
3702 @END
3705 /* Set new completion port for a job */
3706 @REQ(set_job_completion_port)
3707 obj_handle_t job; /* handle to the job */
3708 obj_handle_t port; /* handle to the completion port */
3709 client_ptr_t key; /* key to send with completion messages */
3710 @END
3713 /* Retrieve information about a job */
3714 @REQ(get_job_info)
3715 obj_handle_t handle; /* handle to the job */
3716 @REPLY
3717 int total_processes; /* total count of processes */
3718 int active_processes; /* count of running processes */
3719 @END
3722 /* Terminate all processes associated with the job */
3723 @REQ(terminate_job)
3724 obj_handle_t handle; /* handle to the job */
3725 int status; /* process exit code */
3726 @END
3729 /* Suspend a process */
3730 @REQ(suspend_process)
3731 obj_handle_t handle; /* process handle */
3732 @END
3735 /* Resume a process */
3736 @REQ(resume_process)
3737 obj_handle_t handle; /* process handle */
3738 @END
3741 /* Iterate thread list for process */
3742 @REQ(get_next_thread)
3743 obj_handle_t process; /* process handle */
3744 obj_handle_t last; /* thread handle to start with */
3745 unsigned int access; /* desired access for returned handle */
3746 unsigned int attributes; /* returned handle attributes */
3747 unsigned int flags; /* controls iteration direction */
3748 @REPLY
3749 obj_handle_t handle; /* next thread handle */
3750 @END