ntdll: Fix the Mac build with SDKs older than 10.14.
[wine.git] / server / protocol.def
blob6af0ae0cff8960e5750e7dccffed6d6406b07e46
1 /* -*- C -*-
3 * Wine server protocol definition
5 * Copyright (C) 2001 Alexandre Julliard
7 * This file is used by tools/make_requests to build the
8 * protocol structures in include/wine/server_protocol.h
10 * This library is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU Lesser General Public
12 * License as published by the Free Software Foundation; either
13 * version 2.1 of the License, or (at your option) any later version.
15 * This library is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * Lesser General Public License for more details.
20 * You should have received a copy of the GNU Lesser General Public
21 * License along with this library; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
25 @HEADER /* start of C declarations */
27 #include <stdarg.h>
28 #include <stdlib.h>
29 #include <time.h>
31 #include <windef.h>
32 #include <winbase.h>
34 typedef unsigned int obj_handle_t;
35 typedef unsigned int user_handle_t;
36 typedef unsigned int atom_t;
37 typedef unsigned int process_id_t;
38 typedef unsigned int thread_id_t;
39 typedef unsigned int data_size_t;
40 typedef unsigned int ioctl_code_t;
41 typedef unsigned __int64 lparam_t;
42 typedef unsigned __int64 apc_param_t;
43 typedef unsigned __int64 mem_size_t;
44 typedef unsigned __int64 file_pos_t;
45 typedef unsigned __int64 client_ptr_t;
46 typedef unsigned __int64 affinity_t;
47 typedef client_ptr_t mod_handle_t;
49 struct request_header
51 int req; /* request code */
52 data_size_t request_size; /* request variable part size */
53 data_size_t reply_size; /* reply variable part maximum size */
56 struct reply_header
58 unsigned int error; /* error result */
59 data_size_t reply_size; /* reply variable part size */
62 /* placeholder structure for the maximum allowed request size */
63 /* this is used to construct the generic_request union */
64 struct request_max_size
66 int pad[16]; /* the max request size is 16 ints */
69 #define FIRST_USER_HANDLE 0x0020 /* first possible value for low word of user handle */
70 #define LAST_USER_HANDLE 0xffef /* last possible value for low word of user handle */
73 /* debug event data */
74 typedef union
76 int code; /* event code */
77 struct
79 int code; /* EXCEPTION_DEBUG_EVENT */
80 int first; /* first chance exception? */
81 unsigned int exc_code; /* exception code */
82 unsigned int flags; /* exception flags */
83 client_ptr_t record; /* exception record */
84 client_ptr_t address; /* exception address */
85 int nb_params; /* number of parameters */
86 int __pad;
87 client_ptr_t params[15]; /* parameters */
88 } exception;
89 struct
91 int code; /* CREATE_THREAD_DEBUG_EVENT */
92 obj_handle_t handle; /* handle to the new thread */
93 client_ptr_t teb; /* thread teb (in debugged process address space) */
94 client_ptr_t start; /* thread startup routine */
95 } create_thread;
96 struct
98 int code; /* CREATE_PROCESS_DEBUG_EVENT */
99 obj_handle_t file; /* handle to the process exe file */
100 obj_handle_t process; /* handle to the new process */
101 obj_handle_t thread; /* handle to the new thread */
102 mod_handle_t base; /* base of executable image */
103 int dbg_offset; /* offset of debug info in file */
104 int dbg_size; /* size of debug info */
105 client_ptr_t teb; /* thread teb (in debugged process address space) */
106 client_ptr_t start; /* thread startup routine */
107 client_ptr_t name; /* image name (optional) */
108 int unicode; /* is it Unicode? */
109 } create_process;
110 struct
112 int code; /* EXIT_THREAD_DEBUG_EVENT/EXIT_PROCESS_DEBUG_EVENT */
113 int exit_code; /* thread or process exit code */
114 } exit;
115 struct
117 int code; /* LOAD_DLL_DEBUG_EVENT */
118 obj_handle_t handle; /* file handle for the dll */
119 mod_handle_t base; /* base address of the dll */
120 int dbg_offset; /* offset of debug info in file */
121 int dbg_size; /* size of debug info */
122 client_ptr_t name; /* image name (optional) */
123 int unicode; /* is it Unicode? */
124 } load_dll;
125 struct
127 int code; /* UNLOAD_DLL_DEBUG_EVENT */
128 int __pad;
129 mod_handle_t base; /* base address of the dll */
130 } unload_dll;
131 } debug_event_t;
133 /* supported CPU types */
134 enum cpu_type
136 CPU_x86, CPU_x86_64, CPU_POWERPC, CPU_ARM, CPU_ARM64
138 typedef int client_cpu_t;
140 /* context data */
141 typedef struct
143 client_cpu_t cpu; /* cpu type */
144 unsigned int flags; /* SERVER_CTX_* flags */
145 union
147 struct { unsigned int eip, ebp, esp, eflags, cs, ss; } i386_regs;
148 struct { unsigned __int64 rip, rbp, rsp;
149 unsigned int cs, ss, flags, __pad; } x86_64_regs;
150 struct { unsigned int iar, msr, ctr, lr, dar, dsisr, trap, __pad; } powerpc_regs;
151 struct { unsigned int sp, lr, pc, cpsr; } arm_regs;
152 struct { unsigned __int64 sp, pc, pstate; } arm64_regs;
153 } ctl; /* selected by SERVER_CTX_CONTROL */
154 union
156 struct { unsigned int eax, ebx, ecx, edx, esi, edi; } i386_regs;
157 struct { unsigned __int64 rax,rbx, rcx, rdx, rsi, rdi,
158 r8, r9, r10, r11, r12, r13, r14, r15; } x86_64_regs;
159 struct { unsigned int gpr[32], cr, xer; } powerpc_regs;
160 struct { unsigned int r[13]; } arm_regs;
161 struct { unsigned __int64 x[31]; } arm64_regs;
162 } integer; /* selected by SERVER_CTX_INTEGER */
163 union
165 struct { unsigned int ds, es, fs, gs; } i386_regs;
166 struct { unsigned int ds, es, fs, gs; } x86_64_regs;
167 } seg; /* selected by SERVER_CTX_SEGMENTS */
168 union
170 struct { unsigned int ctrl, status, tag, err_off, err_sel, data_off, data_sel, cr0npx;
171 unsigned char regs[80]; } i386_regs;
172 struct { struct { unsigned __int64 low, high; } fpregs[32]; } x86_64_regs;
173 struct { double fpr[32], fpscr; } powerpc_regs;
174 struct { unsigned __int64 d[32]; unsigned int fpscr; } arm_regs;
175 struct { unsigned __int64 d[64]; unsigned int fpcr, fpsr; } arm64_regs;
176 } fp; /* selected by SERVER_CTX_FLOATING_POINT */
177 union
179 struct { unsigned int dr0, dr1, dr2, dr3, dr6, dr7; } i386_regs;
180 struct { unsigned __int64 dr0, dr1, dr2, dr3, dr6, dr7; } x86_64_regs;
181 struct { unsigned int dr[8]; } powerpc_regs;
182 struct { unsigned int bvr[8], bcr[8], wvr[1], wcr[1]; } arm_regs;
183 struct { unsigned __int64 bvr[8], wvr[2]; unsigned int bcr[8], wcr[2]; } arm64_regs;
184 } debug; /* selected by SERVER_CTX_DEBUG_REGISTERS */
185 union
187 unsigned char i386_regs[512];
188 } ext; /* selected by SERVER_CTX_EXTENDED_REGISTERS */
189 } context_t;
191 #define SERVER_CTX_CONTROL 0x01
192 #define SERVER_CTX_INTEGER 0x02
193 #define SERVER_CTX_SEGMENTS 0x04
194 #define SERVER_CTX_FLOATING_POINT 0x08
195 #define SERVER_CTX_DEBUG_REGISTERS 0x10
196 #define SERVER_CTX_EXTENDED_REGISTERS 0x20
198 /* structure used in sending an fd from client to server */
199 struct send_fd
201 thread_id_t tid; /* thread id */
202 int fd; /* file descriptor on client-side */
205 /* structure sent by the server on the wait fifo */
206 struct wake_up_reply
208 client_ptr_t cookie; /* magic cookie that was passed in select_request */
209 int signaled; /* wait result */
210 int __pad;
213 /* NT-style timeout, in 100ns units, negative means relative timeout */
214 typedef __int64 timeout_t;
215 #define TIMEOUT_INFINITE (((timeout_t)0x7fffffff) << 32 | 0xffffffff)
217 /* structure for process startup info */
218 typedef struct
220 unsigned int debug_flags;
221 unsigned int console_flags;
222 obj_handle_t console;
223 obj_handle_t hstdin;
224 obj_handle_t hstdout;
225 obj_handle_t hstderr;
226 unsigned int x;
227 unsigned int y;
228 unsigned int xsize;
229 unsigned int ysize;
230 unsigned int xchars;
231 unsigned int ychars;
232 unsigned int attribute;
233 unsigned int flags;
234 unsigned int show;
235 data_size_t curdir_len;
236 data_size_t dllpath_len;
237 data_size_t imagepath_len;
238 data_size_t cmdline_len;
239 data_size_t title_len;
240 data_size_t desktop_len;
241 data_size_t shellinfo_len;
242 data_size_t runtime_len;
243 /* VARARG(curdir,unicode_str,curdir_len); */
244 /* VARARG(dllpath,unicode_str,dllpath_len); */
245 /* VARARG(imagepath,unicode_str,imagepath_len); */
246 /* VARARG(cmdline,unicode_str,cmdline_len); */
247 /* VARARG(title,unicode_str,title_len); */
248 /* VARARG(desktop,unicode_str,desktop_len); */
249 /* VARARG(shellinfo,unicode_str,shellinfo_len); */
250 /* VARARG(runtime,unicode_str,runtime_len); */
251 } startup_info_t;
253 /* structure returned in the list of window properties */
254 typedef struct
256 atom_t atom; /* property atom */
257 int string; /* was atom a string originally? */
258 lparam_t data; /* data stored in property */
259 } property_data_t;
261 /* structure to specify window rectangles */
262 typedef struct
264 int left;
265 int top;
266 int right;
267 int bottom;
268 } rectangle_t;
270 /* structure for parameters of async I/O calls */
271 typedef struct
273 obj_handle_t handle; /* object to perform I/O on */
274 obj_handle_t event; /* event to signal when done */
275 client_ptr_t iosb; /* I/O status block in client addr space */
276 client_ptr_t user; /* opaque user data containing callback pointer and async-specific data */
277 client_ptr_t apc; /* user APC to call */
278 apc_param_t apc_context; /* user APC context or completion value */
279 } async_data_t;
281 /* structures for extra message data */
283 struct hw_msg_source
285 unsigned int device; /* source device (IMDT_* values) */
286 unsigned int origin; /* source origin (IMO_* values) */
289 struct hardware_msg_data
291 lparam_t info; /* extra info */
292 unsigned int hw_id; /* unique id */
293 unsigned int flags; /* hook flags */
294 struct hw_msg_source source; /* message source */
295 union
297 int type;
298 struct
300 int type; /* RIM_TYPEKEYBOARD */
301 unsigned int message; /* message generated by this rawinput event */
302 unsigned short vkey; /* virtual key code */
303 unsigned short scan; /* scan code */
304 } kbd;
305 struct
307 int type; /* RIM_TYPEMOUSE */
308 int x; /* x coordinate */
309 int y; /* y coordinate */
310 unsigned int data; /* mouse data */
311 } mouse;
312 } rawinput;
315 struct callback_msg_data
317 client_ptr_t callback; /* callback function */
318 lparam_t data; /* user data for callback */
319 lparam_t result; /* message result */
322 struct winevent_msg_data
324 user_handle_t hook; /* hook handle */
325 thread_id_t tid; /* thread id */
326 client_ptr_t hook_proc; /* hook proc address */
327 /* followed by module name if any */
330 typedef union
332 int type;
333 struct
335 int type; /* INPUT_KEYBOARD */
336 unsigned short vkey; /* virtual key code */
337 unsigned short scan; /* scan code */
338 unsigned int flags; /* event flags */
339 unsigned int time; /* event time */
340 lparam_t info; /* extra info */
341 } kbd;
342 struct
344 int type; /* INPUT_MOUSE */
345 int x; /* coordinates */
346 int y;
347 unsigned int data; /* mouse data */
348 unsigned int flags; /* event flags */
349 unsigned int time; /* event time */
350 lparam_t info; /* extra info */
351 } mouse;
352 struct
354 int type; /* INPUT_HARDWARE */
355 unsigned int msg; /* message code */
356 lparam_t lparam; /* message param */
357 } hw;
358 } hw_input_t;
360 typedef union
362 unsigned char bytes[1]; /* raw data for sent messages */
363 struct hardware_msg_data hardware;
364 struct callback_msg_data callback;
365 struct winevent_msg_data winevent;
366 } message_data_t;
368 /* structure for console char/attribute info */
369 typedef struct
371 WCHAR ch;
372 unsigned short attr;
373 } char_info_t;
375 /* structure returned in filesystem events */
376 struct filesystem_event
378 int action;
379 data_size_t len;
380 char name[1];
383 typedef struct
385 unsigned int low_part;
386 int high_part;
387 } luid_t;
389 #define MAX_ACL_LEN 65535
391 struct security_descriptor
393 unsigned int control; /* SE_ flags */
394 data_size_t owner_len;
395 data_size_t group_len;
396 data_size_t sacl_len;
397 data_size_t dacl_len;
398 /* VARARG(owner,SID); */
399 /* VARARG(group,SID); */
400 /* VARARG(sacl,ACL); */
401 /* VARARG(dacl,ACL); */
404 struct object_attributes
406 obj_handle_t rootdir; /* root directory */
407 unsigned int attributes; /* object attributes */
408 data_size_t sd_len; /* length of security_descriptor data. may be 0 */
409 data_size_t name_len; /* length of the name string. may be 0 */
410 /* VARARG(sd,security_descriptor); */
411 /* VARARG(name,unicode_str); */
414 struct token_groups
416 unsigned int count;
417 /* unsigned int attributes[count]; */
418 /* VARARG(sids,SID); */
421 enum select_op
423 SELECT_NONE,
424 SELECT_WAIT,
425 SELECT_WAIT_ALL,
426 SELECT_SIGNAL_AND_WAIT,
427 SELECT_KEYED_EVENT_WAIT,
428 SELECT_KEYED_EVENT_RELEASE
431 typedef union
433 enum select_op op;
434 struct
436 enum select_op op; /* SELECT_WAIT or SELECT_WAIT_ALL */
437 obj_handle_t handles[MAXIMUM_WAIT_OBJECTS];
438 } wait;
439 struct
441 enum select_op op; /* SELECT_SIGNAL_AND_WAIT */
442 obj_handle_t wait;
443 obj_handle_t signal; /* must be last in the structure so we can remove it on retries */
444 } signal_and_wait;
445 struct
447 enum select_op op; /* SELECT_KEYED_EVENT_WAIT or SELECT_KEYED_EVENT_RELEASE */
448 obj_handle_t handle;
449 client_ptr_t key;
450 } keyed_event;
451 } select_op_t;
453 enum apc_type
455 APC_NONE,
456 APC_USER,
457 APC_TIMER,
458 APC_ASYNC_IO,
459 APC_VIRTUAL_ALLOC,
460 APC_VIRTUAL_FREE,
461 APC_VIRTUAL_QUERY,
462 APC_VIRTUAL_PROTECT,
463 APC_VIRTUAL_FLUSH,
464 APC_VIRTUAL_LOCK,
465 APC_VIRTUAL_UNLOCK,
466 APC_MAP_VIEW,
467 APC_UNMAP_VIEW,
468 APC_CREATE_THREAD,
469 APC_BREAK_PROCESS
472 typedef union
474 enum apc_type type;
475 struct
477 enum apc_type type; /* APC_USER */
478 int __pad;
479 client_ptr_t func; /* void (__stdcall *func)(ULONG_PTR,ULONG_PTR,ULONG_PTR); */
480 apc_param_t args[3]; /* arguments for user function */
481 } user;
482 struct
484 enum apc_type type; /* APC_TIMER */
485 int __pad;
486 client_ptr_t func; /* void (__stdcall *func)(void*, unsigned int, unsigned int); */
487 timeout_t time; /* absolute time of expiration */
488 client_ptr_t arg; /* user argument */
489 } timer;
490 struct
492 enum apc_type type; /* APC_ASYNC_IO */
493 unsigned int status; /* I/O status */
494 client_ptr_t user; /* user pointer */
495 client_ptr_t sb; /* status block */
496 } async_io;
497 struct
499 enum apc_type type; /* APC_VIRTUAL_ALLOC */
500 unsigned int op_type; /* type of operation */
501 client_ptr_t addr; /* requested address */
502 mem_size_t size; /* allocation size */
503 unsigned int zero_bits_64; /* number of zero high bits */
504 unsigned int prot; /* memory protection flags */
505 } virtual_alloc;
506 struct
508 enum apc_type type; /* APC_VIRTUAL_FREE */
509 unsigned int op_type; /* type of operation */
510 client_ptr_t addr; /* requested address */
511 mem_size_t size; /* allocation size */
512 } virtual_free;
513 struct
515 enum apc_type type; /* APC_VIRTUAL_QUERY */
516 int __pad;
517 client_ptr_t addr; /* requested address */
518 } virtual_query;
519 struct
521 enum apc_type type; /* APC_VIRTUAL_PROTECT */
522 unsigned int prot; /* new protection flags */
523 client_ptr_t addr; /* requested address */
524 mem_size_t size; /* requested size */
525 } virtual_protect;
526 struct
528 enum apc_type type; /* APC_VIRTUAL_FLUSH */
529 int __pad;
530 client_ptr_t addr; /* requested address */
531 mem_size_t size; /* requested size */
532 } virtual_flush;
533 struct
535 enum apc_type type; /* APC_VIRTUAL_LOCK */
536 int __pad;
537 client_ptr_t addr; /* requested address */
538 mem_size_t size; /* requested size */
539 } virtual_lock;
540 struct
542 enum apc_type type; /* APC_VIRTUAL_UNLOCK */
543 int __pad;
544 client_ptr_t addr; /* requested address */
545 mem_size_t size; /* requested size */
546 } virtual_unlock;
547 struct
549 enum apc_type type; /* APC_MAP_VIEW */
550 obj_handle_t handle; /* mapping handle */
551 client_ptr_t addr; /* requested address */
552 mem_size_t size; /* allocation size */
553 file_pos_t offset; /* file offset */
554 unsigned int alloc_type; /* allocation type */
555 unsigned short zero_bits_64; /* number of zero high bits */
556 unsigned short prot; /* memory protection flags */
557 } map_view;
558 struct
560 enum apc_type type; /* APC_UNMAP_VIEW */
561 int __pad;
562 client_ptr_t addr; /* view address */
563 } unmap_view;
564 struct
566 enum apc_type type; /* APC_CREATE_THREAD */
567 int suspend; /* suspended thread? */
568 client_ptr_t func; /* void (__stdcall *func)(void*); start function */
569 client_ptr_t arg; /* argument for start function */
570 mem_size_t reserve; /* reserve size for thread stack */
571 mem_size_t commit; /* commit size for thread stack */
572 } create_thread;
573 } apc_call_t;
575 typedef union
577 enum apc_type type;
578 struct
580 enum apc_type type; /* APC_ASYNC_IO */
581 unsigned int status; /* new status of async operation */
582 unsigned int total; /* bytes transferred */
583 } async_io;
584 struct
586 enum apc_type type; /* APC_VIRTUAL_ALLOC */
587 unsigned int status; /* status returned by call */
588 client_ptr_t addr; /* resulting address */
589 mem_size_t size; /* resulting size */
590 } virtual_alloc;
591 struct
593 enum apc_type type; /* APC_VIRTUAL_FREE */
594 unsigned int status; /* status returned by call */
595 client_ptr_t addr; /* resulting address */
596 mem_size_t size; /* resulting size */
597 } virtual_free;
598 struct
600 enum apc_type type; /* APC_VIRTUAL_QUERY */
601 unsigned int status; /* status returned by call */
602 client_ptr_t base; /* resulting base address */
603 client_ptr_t alloc_base;/* resulting allocation base */
604 mem_size_t size; /* resulting region size */
605 unsigned short state; /* resulting region state */
606 unsigned short prot; /* resulting region protection */
607 unsigned short alloc_prot;/* resulting allocation protection */
608 unsigned short alloc_type;/* resulting region allocation type */
609 } virtual_query;
610 struct
612 enum apc_type type; /* APC_VIRTUAL_PROTECT */
613 unsigned int status; /* status returned by call */
614 client_ptr_t addr; /* resulting address */
615 mem_size_t size; /* resulting size */
616 unsigned int prot; /* old protection flags */
617 } virtual_protect;
618 struct
620 enum apc_type type; /* APC_VIRTUAL_FLUSH */
621 unsigned int status; /* status returned by call */
622 client_ptr_t addr; /* resulting address */
623 mem_size_t size; /* resulting size */
624 } virtual_flush;
625 struct
627 enum apc_type type; /* APC_VIRTUAL_LOCK */
628 unsigned int status; /* status returned by call */
629 client_ptr_t addr; /* resulting address */
630 mem_size_t size; /* resulting size */
631 } virtual_lock;
632 struct
634 enum apc_type type; /* APC_VIRTUAL_UNLOCK */
635 unsigned int status; /* status returned by call */
636 client_ptr_t addr; /* resulting address */
637 mem_size_t size; /* resulting size */
638 } virtual_unlock;
639 struct
641 enum apc_type type; /* APC_MAP_VIEW */
642 unsigned int status; /* status returned by call */
643 client_ptr_t addr; /* resulting address */
644 mem_size_t size; /* resulting size */
645 } map_view;
646 struct
648 enum apc_type type; /* APC_MAP_VIEW */
649 unsigned int status; /* status returned by call */
650 } unmap_view;
651 struct
653 enum apc_type type; /* APC_CREATE_THREAD */
654 unsigned int status; /* status returned by call */
655 thread_id_t tid; /* thread id */
656 obj_handle_t handle; /* handle to new thread */
657 } create_thread;
658 struct
660 enum apc_type type; /* APC_BREAK_PROCESS */
661 unsigned int status; /* status returned by call */
662 } break_process;
663 } apc_result_t;
665 enum irp_type
667 IRP_CALL_NONE,
668 IRP_CALL_CREATE,
669 IRP_CALL_CLOSE,
670 IRP_CALL_READ,
671 IRP_CALL_WRITE,
672 IRP_CALL_FLUSH,
673 IRP_CALL_IOCTL,
674 IRP_CALL_FREE,
675 IRP_CALL_CANCEL
678 typedef union
680 enum irp_type type; /* irp call type */
681 struct
683 enum irp_type type; /* IRP_CALL_CREATE */
684 unsigned int access; /* access rights */
685 unsigned int sharing; /* sharing flags */
686 unsigned int options; /* file options */
687 client_ptr_t device; /* opaque ptr for the device */
688 obj_handle_t file; /* file handle */
689 } create;
690 struct
692 enum irp_type type; /* IRP_CALL_CLOSE */
693 int __pad;
694 client_ptr_t file; /* opaque ptr for the file object */
695 } close;
696 struct
698 enum irp_type type; /* IRP_CALL_READ */
699 unsigned int key; /* driver key */
700 data_size_t out_size; /* needed output size */
701 int __pad;
702 client_ptr_t file; /* opaque ptr for the file object */
703 file_pos_t pos; /* file position */
704 } read;
705 struct
707 enum irp_type type; /* IRP_CALL_WRITE */
708 unsigned int key; /* driver key */
709 client_ptr_t file; /* opaque ptr for the file object */
710 file_pos_t pos; /* file position */
711 } write;
712 struct
714 enum irp_type type; /* IRP_CALL_FLUSH */
715 int __pad;
716 client_ptr_t file; /* opaque ptr for the file object */
717 } flush;
718 struct
720 enum irp_type type; /* IRP_CALL_IOCTL */
721 ioctl_code_t code; /* ioctl code */
722 data_size_t out_size; /* needed output size */
723 int __pad;
724 client_ptr_t file; /* opaque ptr for the file object */
725 } ioctl;
726 struct
728 enum irp_type type; /* IRP_CALL_FREE */
729 int __pad;
730 client_ptr_t obj; /* opaque ptr for the freed object */
731 } free;
732 struct
734 enum irp_type type; /* IRP_CALL_CANCEL */
735 int __pad;
736 client_ptr_t irp; /* opaque ptr for canceled irp */
737 } cancel;
738 } irp_params_t;
740 /* information about a PE image mapping, roughly equivalent to SECTION_IMAGE_INFORMATION */
741 typedef struct
743 client_ptr_t base;
744 client_ptr_t entry_point;
745 mem_size_t map_size;
746 mem_size_t stack_size;
747 mem_size_t stack_commit;
748 unsigned int zerobits;
749 unsigned int subsystem;
750 unsigned short subsystem_low;
751 unsigned short subsystem_high;
752 unsigned int gp;
753 unsigned short image_charact;
754 unsigned short dll_charact;
755 unsigned short machine;
756 unsigned char contains_code;
757 unsigned char image_flags;
758 unsigned int loader_flags;
759 unsigned int header_size;
760 unsigned int file_size;
761 unsigned int checksum;
762 client_cpu_t cpu;
763 int __pad;
764 } pe_image_info_t;
765 #define IMAGE_FLAGS_ComPlusNativeReady 0x01
766 #define IMAGE_FLAGS_ComPlusILOnly 0x02
767 #define IMAGE_FLAGS_ImageDynamicallyRelocated 0x04
768 #define IMAGE_FLAGS_ImageMappedFlat 0x08
769 #define IMAGE_FLAGS_BaseBelow4gb 0x10
770 #define IMAGE_FLAGS_WineBuiltin 0x40
771 #define IMAGE_FLAGS_WineFakeDll 0x80
773 struct rawinput_device
775 unsigned short usage_page;
776 unsigned short usage;
777 unsigned int flags;
778 user_handle_t target;
781 /****************************************************************/
782 /* Request declarations */
784 /* Create a new process from the context of the parent */
785 @REQ(new_process)
786 int inherit_all; /* inherit all handles from parent */
787 unsigned int create_flags; /* creation flags */
788 int socket_fd; /* file descriptor for process socket */
789 obj_handle_t exe_file; /* file handle for main exe */
790 unsigned int access; /* access rights for process object */
791 client_cpu_t cpu; /* CPU that the new process will use */
792 data_size_t info_size; /* size of startup info */
793 VARARG(objattr,object_attributes); /* object attributes */
794 VARARG(info,startup_info,info_size); /* startup information */
795 VARARG(env,unicode_str); /* environment for new process */
796 @REPLY
797 obj_handle_t info; /* new process info handle */
798 process_id_t pid; /* process id */
799 obj_handle_t handle; /* process handle (in the current process) */
800 @END
803 /* Execute a process, replacing the current one */
804 @REQ(exec_process)
805 int socket_fd; /* file descriptor for process socket */
806 obj_handle_t exe_file; /* file handle for main exe */
807 client_cpu_t cpu; /* CPU that the new process will use */
808 @END
811 /* Retrieve information about a newly started process */
812 @REQ(get_new_process_info)
813 obj_handle_t info; /* info handle returned from new_process_request */
814 @REPLY
815 int success; /* did the process start successfully? */
816 int exit_code; /* process exit code if failed */
817 @END
820 /* Create a new thread */
821 @REQ(new_thread)
822 obj_handle_t process; /* process in which to create thread */
823 unsigned int access; /* wanted access rights */
824 int suspend; /* new thread should be suspended on creation */
825 int request_fd; /* fd for request pipe */
826 VARARG(objattr,object_attributes); /* object attributes */
827 @REPLY
828 thread_id_t tid; /* thread id */
829 obj_handle_t handle; /* thread handle (in the current process) */
830 @END
833 /* Retrieve the new process startup info */
834 @REQ(get_startup_info)
835 @REPLY
836 data_size_t info_size; /* size of startup info */
837 VARARG(info,startup_info,info_size); /* startup information */
838 VARARG(env,unicode_str); /* environment */
839 @END
842 /* Signal the end of the process initialization */
843 @REQ(init_process_done)
844 int gui; /* is it a GUI process? */
845 mod_handle_t module; /* main module base address */
846 client_ptr_t ldt_copy; /* address of LDT copy (in thread address space) */
847 client_ptr_t entry; /* process entry point */
848 @REPLY
849 int suspend; /* is process suspended? */
850 @END
853 /* Initialize a thread; called from the child after fork()/clone() */
854 @REQ(init_thread)
855 int unix_pid; /* Unix pid of new thread */
856 int unix_tid; /* Unix tid of new thread */
857 int debug_level; /* new debug level */
858 client_ptr_t teb; /* TEB of new thread (in thread address space) */
859 client_ptr_t entry; /* entry point or PEB if initial thread (in thread address space) */
860 int reply_fd; /* fd for reply pipe */
861 int wait_fd; /* fd for blocking calls pipe */
862 client_cpu_t cpu; /* CPU that this thread is running on */
863 @REPLY
864 process_id_t pid; /* process id of the new thread's process */
865 thread_id_t tid; /* thread id of the new thread */
866 timeout_t server_start; /* server start time */
867 data_size_t info_size; /* total size of startup info */
868 int version; /* protocol version */
869 unsigned int all_cpus; /* bitset of supported CPUs */
870 int suspend; /* is thread suspended? */
871 @END
874 /* Terminate a process */
875 @REQ(terminate_process)
876 obj_handle_t handle; /* process handle to terminate */
877 int exit_code; /* process exit code */
878 @REPLY
879 int self; /* suicide? */
880 @END
883 /* Terminate a thread */
884 @REQ(terminate_thread)
885 obj_handle_t handle; /* thread handle to terminate */
886 int exit_code; /* thread exit code */
887 @REPLY
888 int self; /* suicide? */
889 int last; /* last thread in this process? */
890 @END
893 /* Retrieve information about a process */
894 @REQ(get_process_info)
895 obj_handle_t handle; /* process handle */
896 @REPLY
897 process_id_t pid; /* server process id */
898 process_id_t ppid; /* server process id of parent */
899 affinity_t affinity; /* process affinity mask */
900 client_ptr_t peb; /* PEB address in process address space */
901 timeout_t start_time; /* process start time */
902 timeout_t end_time; /* process end time */
903 int exit_code; /* process exit code */
904 int priority; /* priority class */
905 client_cpu_t cpu; /* CPU that this process is running on */
906 short int debugger_present; /* process is being debugged */
907 short int debug_children; /* inherit debugger to child processes */
908 @END
911 /* Retrieve information about a process memory usage */
912 @REQ(get_process_vm_counters)
913 obj_handle_t handle; /* process handle */
914 @REPLY
915 mem_size_t peak_virtual_size; /* peak virtual memory in bytes */
916 mem_size_t virtual_size; /* virtual memory in bytes */
917 mem_size_t peak_working_set_size; /* peak real memory in bytes */
918 mem_size_t working_set_size; /* real memory in bytes */
919 mem_size_t pagefile_usage; /* commit charge in bytes */
920 mem_size_t peak_pagefile_usage; /* peak commit charge in bytes */
921 @END
924 /* Set a process information */
925 @REQ(set_process_info)
926 obj_handle_t handle; /* process handle */
927 int mask; /* setting mask (see below) */
928 int priority; /* priority class */
929 affinity_t affinity; /* affinity mask */
930 @END
931 #define SET_PROCESS_INFO_PRIORITY 0x01
932 #define SET_PROCESS_INFO_AFFINITY 0x02
935 /* Retrieve information about a thread */
936 @REQ(get_thread_info)
937 obj_handle_t handle; /* thread handle */
938 thread_id_t tid_in; /* thread id (optional) */
939 @REPLY
940 process_id_t pid; /* server process id */
941 thread_id_t tid; /* server thread id */
942 client_ptr_t teb; /* thread teb pointer */
943 client_ptr_t entry_point; /* thread entry point */
944 affinity_t affinity; /* thread affinity mask */
945 int exit_code; /* thread exit code */
946 int priority; /* thread priority level */
947 int last; /* last thread in process */
948 @END
951 /* Retrieve information about thread times */
952 @REQ(get_thread_times)
953 obj_handle_t handle; /* thread handle */
954 @REPLY
955 timeout_t creation_time; /* thread creation time */
956 timeout_t exit_time; /* thread exit time */
957 @END
960 /* Set a thread information */
961 @REQ(set_thread_info)
962 obj_handle_t handle; /* thread handle */
963 int mask; /* setting mask (see below) */
964 int priority; /* priority class */
965 affinity_t affinity; /* affinity mask */
966 client_ptr_t entry_point; /* thread entry point */
967 obj_handle_t token; /* impersonation token */
968 @END
969 #define SET_THREAD_INFO_PRIORITY 0x01
970 #define SET_THREAD_INFO_AFFINITY 0x02
971 #define SET_THREAD_INFO_TOKEN 0x04
972 #define SET_THREAD_INFO_ENTRYPOINT 0x08
975 /* Retrieve information about a module */
976 @REQ(get_dll_info)
977 obj_handle_t handle; /* process handle */
978 mod_handle_t base_address; /* base address of module */
979 @REPLY
980 client_ptr_t entry_point;
981 data_size_t filename_len; /* buffer len in bytes required to store filename */
982 VARARG(filename,unicode_str); /* file name of module */
983 @END
986 /* Suspend a thread */
987 @REQ(suspend_thread)
988 obj_handle_t handle; /* thread handle */
989 @REPLY
990 int count; /* new suspend count */
991 @END
994 /* Resume a thread */
995 @REQ(resume_thread)
996 obj_handle_t handle; /* thread handle */
997 @REPLY
998 int count; /* new suspend count */
999 @END
1002 /* Notify the server that a dll has been loaded */
1003 @REQ(load_dll)
1004 data_size_t dbg_offset; /* debug info offset */
1005 mod_handle_t base; /* base address */
1006 client_ptr_t name; /* ptr to ptr to name (in process addr space) */
1007 data_size_t dbg_size; /* debug info size */
1008 VARARG(filename,unicode_str); /* file name of dll */
1009 @END
1012 /* Notify the server that a dll is being unloaded */
1013 @REQ(unload_dll)
1014 mod_handle_t base; /* base address */
1015 @END
1018 /* Queue an APC for a thread or process */
1019 @REQ(queue_apc)
1020 obj_handle_t handle; /* thread or process handle */
1021 apc_call_t call; /* call arguments */
1022 @REPLY
1023 obj_handle_t handle; /* APC handle */
1024 int self; /* run APC in caller itself? */
1025 @END
1028 /* Get the result of an APC call */
1029 @REQ(get_apc_result)
1030 obj_handle_t handle; /* handle to the APC */
1031 @REPLY
1032 apc_result_t result; /* result of the APC */
1033 @END
1036 /* Close a handle for the current process */
1037 @REQ(close_handle)
1038 obj_handle_t handle; /* handle to close */
1039 @END
1042 /* Set a handle information */
1043 @REQ(set_handle_info)
1044 obj_handle_t handle; /* handle we are interested in */
1045 int flags; /* new handle flags */
1046 int mask; /* mask for flags to set */
1047 @REPLY
1048 int old_flags; /* old flag value */
1049 @END
1052 /* Duplicate a handle */
1053 @REQ(dup_handle)
1054 obj_handle_t src_process; /* src process handle */
1055 obj_handle_t src_handle; /* src handle to duplicate */
1056 obj_handle_t dst_process; /* dst process handle */
1057 unsigned int access; /* wanted access rights */
1058 unsigned int attributes; /* object attributes */
1059 unsigned int options; /* duplicate options (see below) */
1060 @REPLY
1061 obj_handle_t handle; /* duplicated handle in dst process */
1062 int self; /* is the source the current process? */
1063 int closed; /* whether the source handle has been closed */
1064 @END
1065 #define DUP_HANDLE_CLOSE_SOURCE DUPLICATE_CLOSE_SOURCE
1066 #define DUP_HANDLE_SAME_ACCESS DUPLICATE_SAME_ACCESS
1067 #define DUP_HANDLE_MAKE_GLOBAL 0x80000000 /* Not a Windows flag */
1070 /* Open a handle to a process */
1071 @REQ(open_process)
1072 process_id_t pid; /* process id to open */
1073 unsigned int access; /* wanted access rights */
1074 unsigned int attributes; /* object attributes */
1075 @REPLY
1076 obj_handle_t handle; /* handle to the process */
1077 @END
1080 /* Open a handle to a thread */
1081 @REQ(open_thread)
1082 thread_id_t tid; /* thread id to open */
1083 unsigned int access; /* wanted access rights */
1084 unsigned int attributes; /* object attributes */
1085 @REPLY
1086 obj_handle_t handle; /* handle to the thread */
1087 @END
1090 /* Wait for handles */
1091 @REQ(select)
1092 int flags; /* wait flags (see below) */
1093 client_ptr_t cookie; /* magic cookie to return to client */
1094 timeout_t timeout; /* timeout */
1095 obj_handle_t prev_apc; /* handle to previous APC */
1096 VARARG(result,apc_result); /* result of previous APC */
1097 VARARG(data,select_op); /* operation-specific data */
1098 @REPLY
1099 timeout_t timeout; /* timeout converted to absolute */
1100 apc_call_t call; /* APC call arguments */
1101 obj_handle_t apc_handle; /* handle to next APC */
1102 @END
1103 #define SELECT_ALERTABLE 1
1104 #define SELECT_INTERRUPTIBLE 2
1107 /* Create an event */
1108 @REQ(create_event)
1109 unsigned int access; /* wanted access rights */
1110 int manual_reset; /* manual reset event */
1111 int initial_state; /* initial state of the event */
1112 VARARG(objattr,object_attributes); /* object attributes */
1113 @REPLY
1114 obj_handle_t handle; /* handle to the event */
1115 @END
1117 /* Event operation */
1118 @REQ(event_op)
1119 obj_handle_t handle; /* handle to event */
1120 int op; /* event operation (see below) */
1121 @REPLY
1122 int state; /* previous state */
1123 @END
1124 enum event_op { PULSE_EVENT, SET_EVENT, RESET_EVENT };
1126 @REQ(query_event)
1127 obj_handle_t handle; /* handle to event */
1128 @REPLY
1129 int manual_reset; /* manual reset event */
1130 int state; /* current state of the event */
1131 @END
1133 /* Open an event */
1134 @REQ(open_event)
1135 unsigned int access; /* wanted access rights */
1136 unsigned int attributes; /* object attributes */
1137 obj_handle_t rootdir; /* root directory */
1138 VARARG(name,unicode_str); /* object name */
1139 @REPLY
1140 obj_handle_t handle; /* handle to the event */
1141 @END
1144 /* Create a keyed event */
1145 @REQ(create_keyed_event)
1146 unsigned int access; /* wanted access rights */
1147 VARARG(objattr,object_attributes); /* object attributes */
1148 @REPLY
1149 obj_handle_t handle; /* handle to the event */
1150 @END
1152 /* Open a keyed event */
1153 @REQ(open_keyed_event)
1154 unsigned int access; /* wanted access rights */
1155 unsigned int attributes; /* object attributes */
1156 obj_handle_t rootdir; /* root directory */
1157 VARARG(name,unicode_str); /* object name */
1158 @REPLY
1159 obj_handle_t handle; /* handle to the event */
1160 @END
1163 /* Create a mutex */
1164 @REQ(create_mutex)
1165 unsigned int access; /* wanted access rights */
1166 int owned; /* initially owned? */
1167 VARARG(objattr,object_attributes); /* object attributes */
1168 @REPLY
1169 obj_handle_t handle; /* handle to the mutex */
1170 @END
1173 /* Release a mutex */
1174 @REQ(release_mutex)
1175 obj_handle_t handle; /* handle to the mutex */
1176 @REPLY
1177 unsigned int prev_count; /* value of internal counter, before release */
1178 @END
1181 /* Open a mutex */
1182 @REQ(open_mutex)
1183 unsigned int access; /* wanted access rights */
1184 unsigned int attributes; /* object attributes */
1185 obj_handle_t rootdir; /* root directory */
1186 VARARG(name,unicode_str); /* object name */
1187 @REPLY
1188 obj_handle_t handle; /* handle to the mutex */
1189 @END
1192 /* Query a mutex */
1193 @REQ(query_mutex)
1194 obj_handle_t handle; /* handle to mutex */
1195 @REPLY
1196 unsigned int count; /* current count of mutex */
1197 int owned; /* true if owned by current thread */
1198 int abandoned; /* true if abandoned */
1199 @END
1202 /* Create a semaphore */
1203 @REQ(create_semaphore)
1204 unsigned int access; /* wanted access rights */
1205 unsigned int initial; /* initial count */
1206 unsigned int max; /* maximum count */
1207 VARARG(objattr,object_attributes); /* object attributes */
1208 @REPLY
1209 obj_handle_t handle; /* handle to the semaphore */
1210 @END
1213 /* Release a semaphore */
1214 @REQ(release_semaphore)
1215 obj_handle_t handle; /* handle to the semaphore */
1216 unsigned int count; /* count to add to semaphore */
1217 @REPLY
1218 unsigned int prev_count; /* previous semaphore count */
1219 @END
1221 @REQ(query_semaphore)
1222 obj_handle_t handle; /* handle to the semaphore */
1223 @REPLY
1224 unsigned int current; /* current count */
1225 unsigned int max; /* maximum count */
1226 @END
1228 /* Open a semaphore */
1229 @REQ(open_semaphore)
1230 unsigned int access; /* wanted access rights */
1231 unsigned int attributes; /* object attributes */
1232 obj_handle_t rootdir; /* root directory */
1233 VARARG(name,unicode_str); /* object name */
1234 @REPLY
1235 obj_handle_t handle; /* handle to the semaphore */
1236 @END
1239 /* Create a file */
1240 @REQ(create_file)
1241 unsigned int access; /* wanted access rights */
1242 unsigned int sharing; /* sharing flags */
1243 int create; /* file create action */
1244 unsigned int options; /* file options */
1245 unsigned int attrs; /* file attributes for creation */
1246 VARARG(objattr,object_attributes); /* object attributes */
1247 VARARG(filename,string); /* file name */
1248 @REPLY
1249 obj_handle_t handle; /* handle to the file */
1250 @END
1253 /* Open a file object */
1254 @REQ(open_file_object)
1255 unsigned int access; /* wanted access rights */
1256 unsigned int attributes; /* open attributes */
1257 obj_handle_t rootdir; /* root directory */
1258 unsigned int sharing; /* sharing flags */
1259 unsigned int options; /* file options */
1260 VARARG(filename,unicode_str); /* file name */
1261 @REPLY
1262 obj_handle_t handle; /* handle to the file */
1263 @END
1266 /* Allocate a file handle for a Unix fd */
1267 @REQ(alloc_file_handle)
1268 unsigned int access; /* wanted access rights */
1269 unsigned int attributes; /* object attributes */
1270 int fd; /* file descriptor on the client side */
1271 @REPLY
1272 obj_handle_t handle; /* handle to the file */
1273 @END
1276 /* Get the Unix name from a file handle */
1277 @REQ(get_handle_unix_name)
1278 obj_handle_t handle; /* file handle */
1279 @REPLY
1280 data_size_t name_len; /* unix name length */
1281 VARARG(name,string); /* unix name */
1282 @END
1285 /* Get a Unix fd to access a file */
1286 @REQ(get_handle_fd)
1287 obj_handle_t handle; /* handle to the file */
1288 @REPLY
1289 int type; /* file type (see below) */
1290 int cacheable; /* can fd be cached in the client? */
1291 unsigned int access; /* file access rights */
1292 unsigned int options; /* file open options */
1293 @END
1294 enum server_fd_type
1296 FD_TYPE_INVALID, /* invalid file (no associated fd) */
1297 FD_TYPE_FILE, /* regular file */
1298 FD_TYPE_DIR, /* directory */
1299 FD_TYPE_SOCKET, /* socket */
1300 FD_TYPE_SERIAL, /* serial port */
1301 FD_TYPE_PIPE, /* named pipe */
1302 FD_TYPE_MAILSLOT, /* mailslot */
1303 FD_TYPE_CHAR, /* unspecified char device */
1304 FD_TYPE_DEVICE, /* Windows device file */
1305 FD_TYPE_NB_TYPES
1309 /* Retrieve (or allocate) the client-side directory cache entry */
1310 @REQ(get_directory_cache_entry)
1311 obj_handle_t handle; /* handle to the directory */
1312 @REPLY
1313 int entry; /* cache entry on the client side */
1314 VARARG(free,ints); /* entries that can be freed */
1315 @END
1318 /* Flush a file buffers */
1319 @REQ(flush)
1320 async_data_t async; /* async I/O parameters */
1321 @REPLY
1322 obj_handle_t event; /* event set when finished */
1323 @END
1325 /* Query file information */
1326 @REQ(get_file_info)
1327 obj_handle_t handle; /* handle to the file */
1328 unsigned int info_class; /* queried information class */
1329 @REPLY
1330 VARARG(data,bytes); /* file info data */
1331 @END
1333 /* Query volume information */
1334 @REQ(get_volume_info)
1335 obj_handle_t handle; /* handle to the file */
1336 unsigned int info_class; /* queried information class */
1337 @REPLY
1338 VARARG(data,bytes); /* volume info data */
1339 @END
1341 /* Lock a region of a file */
1342 @REQ(lock_file)
1343 obj_handle_t handle; /* handle to the file */
1344 file_pos_t offset; /* offset of start of lock */
1345 file_pos_t count; /* count of bytes to lock */
1346 int shared; /* shared or exclusive lock? */
1347 int wait; /* do we want to wait? */
1348 @REPLY
1349 obj_handle_t handle; /* handle to wait on */
1350 int overlapped; /* is it an overlapped I/O handle? */
1351 @END
1354 /* Unlock a region of a file */
1355 @REQ(unlock_file)
1356 obj_handle_t handle; /* handle to the file */
1357 file_pos_t offset; /* offset of start of unlock */
1358 file_pos_t count; /* count of bytes to unlock */
1359 @END
1362 /* Create a socket */
1363 @REQ(create_socket)
1364 unsigned int access; /* wanted access rights */
1365 unsigned int attributes; /* object attributes */
1366 int family; /* family, see socket manpage */
1367 int type; /* type, see socket manpage */
1368 int protocol; /* protocol, see socket manpage */
1369 unsigned int flags; /* socket flags */
1370 @REPLY
1371 obj_handle_t handle; /* handle to the new socket */
1372 @END
1375 /* Accept a socket */
1376 @REQ(accept_socket)
1377 obj_handle_t lhandle; /* handle to the listening socket */
1378 unsigned int access; /* wanted access rights */
1379 unsigned int attributes; /* object attributes */
1380 @REPLY
1381 obj_handle_t handle; /* handle to the new socket */
1382 @END
1385 /* Accept into an initialized socket */
1386 @REQ(accept_into_socket)
1387 obj_handle_t lhandle; /* handle to the listening socket */
1388 obj_handle_t ahandle; /* handle to the accepting socket */
1389 @END
1392 /* Set socket event parameters */
1393 @REQ(set_socket_event)
1394 obj_handle_t handle; /* handle to the socket */
1395 unsigned int mask; /* event mask */
1396 obj_handle_t event; /* event object */
1397 user_handle_t window; /* window to send the message to */
1398 unsigned int msg; /* message to send */
1399 @END
1402 /* Get socket event parameters */
1403 @REQ(get_socket_event)
1404 obj_handle_t handle; /* handle to the socket */
1405 int service; /* clear pending? */
1406 obj_handle_t c_event; /* event to clear */
1407 @REPLY
1408 unsigned int mask; /* event mask */
1409 unsigned int pmask; /* pending events */
1410 unsigned int state; /* status bits */
1411 VARARG(errors,ints); /* event errors */
1412 @END
1415 /* Get socket info */
1416 @REQ(get_socket_info)
1417 obj_handle_t handle; /* handle to the socket */
1418 @REPLY
1419 int family; /* family, see socket manpage */
1420 int type; /* type, see socket manpage */
1421 int protocol; /* protocol, see socket manpage */
1422 @END
1425 /* Re-enable pending socket events */
1426 @REQ(enable_socket_event)
1427 obj_handle_t handle; /* handle to the socket */
1428 unsigned int mask; /* events to re-enable */
1429 unsigned int sstate; /* status bits to set */
1430 unsigned int cstate; /* status bits to clear */
1431 @END
1433 @REQ(set_socket_deferred)
1434 obj_handle_t handle; /* handle to the socket */
1435 obj_handle_t deferred; /* handle to the socket for which accept() is deferred */
1436 @END
1438 /* Allocate a console (only used by a console renderer) */
1439 @REQ(alloc_console)
1440 unsigned int access; /* wanted access rights */
1441 unsigned int attributes; /* object attributes */
1442 process_id_t pid; /* pid of process which shall be attached to the console */
1443 int input_fd; /* if pid=-1 (bare console to current process), fd for input */
1444 @REPLY
1445 obj_handle_t handle_in; /* handle to console input */
1446 obj_handle_t event; /* handle to renderer events change notification */
1447 @END
1450 /* Free the console of the current process */
1451 @REQ(free_console)
1452 @END
1455 #define CONSOLE_RENDERER_NONE_EVENT 0x00
1456 #define CONSOLE_RENDERER_TITLE_EVENT 0x01
1457 #define CONSOLE_RENDERER_ACTIVE_SB_EVENT 0x02
1458 #define CONSOLE_RENDERER_SB_RESIZE_EVENT 0x03
1459 #define CONSOLE_RENDERER_UPDATE_EVENT 0x04
1460 #define CONSOLE_RENDERER_CURSOR_POS_EVENT 0x05
1461 #define CONSOLE_RENDERER_CURSOR_GEOM_EVENT 0x06
1462 #define CONSOLE_RENDERER_DISPLAY_EVENT 0x07
1463 #define CONSOLE_RENDERER_EXIT_EVENT 0x08
1464 struct console_renderer_event
1466 short event;
1467 union
1469 struct
1471 short top;
1472 short bottom;
1473 } update;
1474 struct
1476 short width;
1477 short height;
1478 } resize;
1479 struct
1481 short x;
1482 short y;
1483 } cursor_pos;
1484 struct
1486 short visible;
1487 short size;
1488 } cursor_geom;
1489 struct
1491 short left;
1492 short top;
1493 short width;
1494 short height;
1495 } display;
1496 } u;
1499 /* retrieve console events for the renderer */
1500 @REQ(get_console_renderer_events)
1501 obj_handle_t handle; /* handle to console input events */
1502 @REPLY
1503 VARARG(data,bytes); /* the various console_renderer_events */
1504 @END
1507 /* Open a handle to the process console */
1508 @REQ(open_console)
1509 obj_handle_t from; /* 0 (resp 1) input (resp output) of current process console */
1510 /* otherwise console_in handle to get active screen buffer? */
1511 unsigned int access; /* wanted access rights */
1512 unsigned int attributes; /* object attributes */
1513 int share; /* share mask (only for output handles) */
1514 @REPLY
1515 obj_handle_t handle; /* handle to the console */
1516 @END
1519 /* Attach to a other process's console */
1520 @REQ(attach_console)
1521 process_id_t pid; /* pid of attached console process */
1522 @REPLY
1523 obj_handle_t std_in; /* attached stdin */
1524 obj_handle_t std_out; /* attached stdout */
1525 obj_handle_t std_err; /* attached stderr */
1526 @END
1529 /* Get the input queue wait event */
1530 @REQ(get_console_wait_event)
1531 @REPLY
1532 obj_handle_t handle;
1533 @END
1535 /* Get a console mode (input or output) */
1536 @REQ(get_console_mode)
1537 obj_handle_t handle; /* handle to the console */
1538 @REPLY
1539 int mode; /* console mode */
1540 @END
1543 /* Set a console mode (input or output) */
1544 @REQ(set_console_mode)
1545 obj_handle_t handle; /* handle to the console */
1546 int mode; /* console mode */
1547 @END
1550 /* Set info about a console (input only) */
1551 @REQ(set_console_input_info)
1552 obj_handle_t handle; /* handle to console input, or 0 for process' console */
1553 int mask; /* setting mask (see below) */
1554 obj_handle_t active_sb; /* active screen buffer */
1555 int history_mode; /* whether we duplicate lines in history */
1556 int history_size; /* number of lines in history */
1557 int edition_mode; /* index to the edition mode flavors */
1558 int input_cp; /* console input codepage */
1559 int output_cp; /* console output codepage */
1560 user_handle_t win; /* console window if backend supports it */
1561 VARARG(title,unicode_str); /* console title */
1562 @END
1563 #define SET_CONSOLE_INPUT_INFO_ACTIVE_SB 0x01
1564 #define SET_CONSOLE_INPUT_INFO_TITLE 0x02
1565 #define SET_CONSOLE_INPUT_INFO_HISTORY_MODE 0x04
1566 #define SET_CONSOLE_INPUT_INFO_HISTORY_SIZE 0x08
1567 #define SET_CONSOLE_INPUT_INFO_EDITION_MODE 0x10
1568 #define SET_CONSOLE_INPUT_INFO_INPUT_CODEPAGE 0x20
1569 #define SET_CONSOLE_INPUT_INFO_OUTPUT_CODEPAGE 0x40
1570 #define SET_CONSOLE_INPUT_INFO_WIN 0x80
1573 /* Get info about a console (input only) */
1574 @REQ(get_console_input_info)
1575 obj_handle_t handle; /* handle to console input, or 0 for process' console */
1576 @REPLY
1577 int history_mode; /* whether we duplicate lines in history */
1578 int history_size; /* number of lines in history */
1579 int history_index; /* number of used lines in history */
1580 int edition_mode; /* index to the edition mode flavors */
1581 int input_cp; /* console input codepage */
1582 int output_cp; /* console output codepage */
1583 user_handle_t win; /* console window if backend supports it */
1584 VARARG(title,unicode_str); /* console title */
1585 @END
1588 /* appends a string to console's history */
1589 @REQ(append_console_input_history)
1590 obj_handle_t handle; /* handle to console input, or 0 for process' console */
1591 VARARG(line,unicode_str); /* line to add */
1592 @END
1595 /* appends a string to console's history */
1596 @REQ(get_console_input_history)
1597 obj_handle_t handle; /* handle to console input, or 0 for process' console */
1598 int index; /* index to get line from */
1599 @REPLY
1600 int total; /* total length of line in Unicode chars */
1601 VARARG(line,unicode_str); /* line to add */
1602 @END
1605 /* creates a new screen buffer on process' console */
1606 @REQ(create_console_output)
1607 obj_handle_t handle_in; /* handle to console input, or 0 for process' console */
1608 unsigned int access; /* wanted access rights */
1609 unsigned int attributes; /* object attributes */
1610 unsigned int share; /* sharing credentials */
1611 int fd; /* for bare consoles, fd the screen-buffer is attached to */
1612 @REPLY
1613 obj_handle_t handle_out; /* handle to the screen buffer */
1614 @END
1617 /* Set info about a console (output only) */
1618 @REQ(set_console_output_info)
1619 obj_handle_t handle; /* handle to the console */
1620 int mask; /* setting mask (see below) */
1621 short int cursor_size; /* size of cursor (percentage filled) */
1622 short int cursor_visible;/* cursor visibility flag */
1623 short int cursor_x; /* position of cursor (x, y) */
1624 short int cursor_y;
1625 short int width; /* width of the screen buffer */
1626 short int height; /* height of the screen buffer */
1627 short int attr; /* default fill attributes (screen colors) */
1628 short int popup_attr; /* pop-up color attributes */
1629 short int win_left; /* window actually displayed by renderer */
1630 short int win_top; /* the rect area is expressed within the */
1631 short int win_right; /* boundaries of the screen buffer */
1632 short int win_bottom;
1633 short int max_width; /* maximum size (width x height) for the window */
1634 short int max_height;
1635 short int font_width; /* font size (width x height) */
1636 short int font_height;
1637 VARARG(colors,uints); /* color table */
1638 @END
1639 #define SET_CONSOLE_OUTPUT_INFO_CURSOR_GEOM 0x0001
1640 #define SET_CONSOLE_OUTPUT_INFO_CURSOR_POS 0x0002
1641 #define SET_CONSOLE_OUTPUT_INFO_SIZE 0x0004
1642 #define SET_CONSOLE_OUTPUT_INFO_ATTR 0x0008
1643 #define SET_CONSOLE_OUTPUT_INFO_DISPLAY_WINDOW 0x0010
1644 #define SET_CONSOLE_OUTPUT_INFO_MAX_SIZE 0x0020
1645 #define SET_CONSOLE_OUTPUT_INFO_FONT 0x0040
1646 #define SET_CONSOLE_OUTPUT_INFO_COLORTABLE 0x0080
1647 #define SET_CONSOLE_OUTPUT_INFO_POPUP_ATTR 0x0100
1650 /* Get info about a console (output only) */
1651 @REQ(get_console_output_info)
1652 obj_handle_t handle; /* handle to the console */
1653 @REPLY
1654 short int cursor_size; /* size of cursor (percentage filled) */
1655 short int cursor_visible;/* cursor visibility flag */
1656 short int cursor_x; /* position of cursor (x, y) */
1657 short int cursor_y;
1658 short int width; /* width of the screen buffer */
1659 short int height; /* height of the screen buffer */
1660 short int attr; /* default fill attributes (screen colors) */
1661 short int popup_attr; /* pop-up color attributes */
1662 short int win_left; /* window actually displayed by renderer */
1663 short int win_top; /* the rect area is expressed within the */
1664 short int win_right; /* boundaries of the screen buffer */
1665 short int win_bottom;
1666 short int max_width; /* maximum size (width x height) for the window */
1667 short int max_height;
1668 short int font_width; /* font size (width x height) */
1669 short int font_height;
1670 VARARG(colors,uints); /* color table */
1671 @END
1673 /* Add input records to a console input queue */
1674 @REQ(write_console_input)
1675 obj_handle_t handle; /* handle to the console input */
1676 VARARG(rec,input_records); /* input records */
1677 @REPLY
1678 int written; /* number of records written */
1679 @END
1682 /* Fetch input records from a console input queue */
1683 @REQ(read_console_input)
1684 obj_handle_t handle; /* handle to the console input */
1685 int flush; /* flush the retrieved records from the queue? */
1686 @REPLY
1687 int read; /* number of records read */
1688 VARARG(rec,input_records); /* input records */
1689 @END
1692 /* write data (chars and/or attributes) in a screen buffer */
1693 @REQ(write_console_output)
1694 obj_handle_t handle; /* handle to the console output */
1695 int x; /* position where to start writing */
1696 int y;
1697 int mode; /* char info (see below) */
1698 int wrap; /* wrap around at end of line? */
1699 VARARG(data,bytes); /* info to write */
1700 @REPLY
1701 int written; /* number of char infos actually written */
1702 int width; /* width of screen buffer */
1703 int height; /* height of screen buffer */
1704 @END
1705 enum char_info_mode
1707 CHAR_INFO_MODE_TEXT, /* characters only */
1708 CHAR_INFO_MODE_ATTR, /* attributes only */
1709 CHAR_INFO_MODE_TEXTATTR, /* both characters and attributes */
1710 CHAR_INFO_MODE_TEXTSTDATTR /* characters but use standard attributes */
1714 /* fill a screen buffer with constant data (chars and/or attributes) */
1715 @REQ(fill_console_output)
1716 obj_handle_t handle; /* handle to the console output */
1717 int x; /* position where to start writing */
1718 int y;
1719 int mode; /* char info mode */
1720 int count; /* number to write */
1721 int wrap; /* wrap around at end of line? */
1722 char_info_t data; /* data to write */
1723 @REPLY
1724 int written; /* number of char infos actually written */
1725 @END
1728 /* read data (chars and/or attributes) from a screen buffer */
1729 @REQ(read_console_output)
1730 obj_handle_t handle; /* handle to the console output */
1731 int x; /* position (x,y) where to start reading */
1732 int y;
1733 int mode; /* char info mode */
1734 int wrap; /* wrap around at end of line? */
1735 @REPLY
1736 int width; /* width of screen buffer */
1737 int height; /* height of screen buffer */
1738 VARARG(data,bytes);
1739 @END
1742 /* move a rect (of data) in screen buffer content */
1743 @REQ(move_console_output)
1744 obj_handle_t handle; /* handle to the console output */
1745 short int x_src; /* position (x, y) of rect to start moving from */
1746 short int y_src;
1747 short int x_dst; /* position (x, y) of rect to move to */
1748 short int y_dst;
1749 short int w; /* size of the rect (width, height) to move */
1750 short int h;
1751 @END
1754 /* Sends a signal to a process group */
1755 @REQ(send_console_signal)
1756 int signal; /* the signal to send */
1757 process_id_t group_id; /* the group to send the signal to */
1758 @END
1761 /* enable directory change notifications */
1762 @REQ(read_directory_changes)
1763 unsigned int filter; /* notification filter */
1764 int subtree; /* watch the subtree? */
1765 int want_data; /* flag indicating whether change data should be collected */
1766 async_data_t async; /* async I/O parameters */
1767 @END
1770 @REQ(read_change)
1771 obj_handle_t handle;
1772 @REPLY
1773 VARARG(events,filesystem_event); /* collected filesystem events */
1774 @END
1777 /* Create a file mapping */
1778 @REQ(create_mapping)
1779 unsigned int access; /* wanted access rights */
1780 unsigned int flags; /* SEC_* flags */
1781 unsigned int file_access; /* file access rights */
1782 mem_size_t size; /* mapping size */
1783 obj_handle_t file_handle; /* file handle */
1784 VARARG(objattr,object_attributes); /* object attributes */
1785 @REPLY
1786 obj_handle_t handle; /* handle to the mapping */
1787 @END
1790 /* Open a mapping */
1791 @REQ(open_mapping)
1792 unsigned int access; /* wanted access rights */
1793 unsigned int attributes; /* object attributes */
1794 obj_handle_t rootdir; /* root directory */
1795 VARARG(name,unicode_str); /* object name */
1796 @REPLY
1797 obj_handle_t handle; /* handle to the mapping */
1798 @END
1801 /* Get information about a file mapping */
1802 @REQ(get_mapping_info)
1803 obj_handle_t handle; /* handle to the mapping */
1804 unsigned int access; /* wanted access rights */
1805 @REPLY
1806 mem_size_t size; /* mapping size */
1807 unsigned int flags; /* SEC_* flags */
1808 obj_handle_t shared_file; /* shared mapping file handle */
1809 VARARG(image,pe_image_info);/* image info for SEC_IMAGE mappings */
1810 @END
1813 /* Add a memory view in the current process */
1814 @REQ(map_view)
1815 obj_handle_t mapping; /* file mapping handle */
1816 unsigned int access; /* wanted access rights */
1817 client_ptr_t base; /* view base address (page-aligned) */
1818 mem_size_t size; /* view size */
1819 file_pos_t start; /* start offset in mapping */
1820 @END
1823 /* Unmap a memory view from the current process */
1824 @REQ(unmap_view)
1825 client_ptr_t base; /* view base address */
1826 @END
1829 /* Get a range of committed pages in a file mapping */
1830 @REQ(get_mapping_committed_range)
1831 client_ptr_t base; /* view base address */
1832 file_pos_t offset; /* starting offset (page-aligned, in bytes) */
1833 @REPLY
1834 mem_size_t size; /* size of range starting at offset (page-aligned, in bytes) */
1835 int committed; /* whether it is a committed range */
1836 @END
1839 /* Add a range to the committed pages in a file mapping */
1840 @REQ(add_mapping_committed_range)
1841 client_ptr_t base; /* view base address */
1842 file_pos_t offset; /* starting offset (page-aligned, in bytes) */
1843 mem_size_t size; /* size to set (page-aligned, in bytes) or 0 if only retrieving */
1844 @END
1847 /* Check if two memory maps are for the same file */
1848 @REQ(is_same_mapping)
1849 client_ptr_t base1; /* first view base address */
1850 client_ptr_t base2; /* second view base address */
1851 @END
1854 #define SNAP_PROCESS 0x00000001
1855 #define SNAP_THREAD 0x00000002
1856 /* Create a snapshot */
1857 @REQ(create_snapshot)
1858 unsigned int attributes; /* object attributes */
1859 unsigned int flags; /* snapshot flags (SNAP_*) */
1860 @REPLY
1861 obj_handle_t handle; /* handle to the snapshot */
1862 @END
1865 /* Get the next process from a snapshot */
1866 @REQ(next_process)
1867 obj_handle_t handle; /* handle to the snapshot */
1868 int reset; /* reset snapshot position? */
1869 @REPLY
1870 int count; /* process usage count */
1871 process_id_t pid; /* process id */
1872 process_id_t ppid; /* parent process id */
1873 int threads; /* number of threads */
1874 int priority; /* process priority */
1875 int handles; /* number of handles */
1876 int unix_pid; /* Unix pid */
1877 VARARG(filename,unicode_str); /* file name of main exe */
1878 @END
1881 /* Get the next thread from a snapshot */
1882 @REQ(next_thread)
1883 obj_handle_t handle; /* handle to the snapshot */
1884 int reset; /* reset snapshot position? */
1885 @REPLY
1886 int count; /* thread usage count */
1887 process_id_t pid; /* process id */
1888 thread_id_t tid; /* thread id */
1889 int base_pri; /* base priority */
1890 int delta_pri; /* delta priority */
1891 @END
1894 /* Wait for a debug event */
1895 @REQ(wait_debug_event)
1896 int get_handle; /* should we alloc a handle for waiting? */
1897 @REPLY
1898 process_id_t pid; /* process id */
1899 thread_id_t tid; /* thread id */
1900 obj_handle_t wait; /* wait handle if no event ready */
1901 VARARG(event,debug_event); /* debug event data */
1902 @END
1905 /* Queue an exception event */
1906 @REQ(queue_exception_event)
1907 int first; /* first chance exception? */
1908 unsigned int code; /* exception code */
1909 unsigned int flags; /* exception flags */
1910 client_ptr_t record; /* exception record */
1911 client_ptr_t address; /* exception address */
1912 data_size_t len; /* size of parameters */
1913 VARARG(params,uints64,len);/* exception parameters */
1914 VARARG(context,context); /* thread context */
1915 @REPLY
1916 obj_handle_t handle; /* handle to the queued event */
1917 @END
1920 /* Retrieve the status of an exception event */
1921 @REQ(get_exception_status)
1922 obj_handle_t handle; /* handle to the queued event */
1923 @REPLY
1924 VARARG(context,context); /* modified thread context */
1925 @END
1928 /* Continue a debug event */
1929 @REQ(continue_debug_event)
1930 process_id_t pid; /* process id to continue */
1931 thread_id_t tid; /* thread id to continue */
1932 int status; /* continuation status */
1933 @END
1936 /* Start/stop debugging an existing process */
1937 @REQ(debug_process)
1938 process_id_t pid; /* id of the process to debug */
1939 int attach; /* 1=attaching / 0=detaching from the process */
1940 @END
1943 /* Set debugger kill on exit flag */
1944 @REQ(set_debugger_kill_on_exit)
1945 int kill_on_exit; /* 0=detach/1=kill debuggee when debugger dies */
1946 @END
1949 /* Read data from a process address space */
1950 @REQ(read_process_memory)
1951 obj_handle_t handle; /* process handle */
1952 client_ptr_t addr; /* addr to read from */
1953 @REPLY
1954 VARARG(data,bytes); /* result data */
1955 @END
1958 /* Write data to a process address space */
1959 @REQ(write_process_memory)
1960 obj_handle_t handle; /* process handle */
1961 client_ptr_t addr; /* addr to write to */
1962 VARARG(data,bytes); /* data to write */
1963 @END
1966 /* Create a registry key */
1967 @REQ(create_key)
1968 unsigned int access; /* desired access rights */
1969 unsigned int options; /* creation options */
1970 VARARG(objattr,object_attributes); /* object attributes */
1971 VARARG(class,unicode_str); /* class name */
1972 @REPLY
1973 obj_handle_t hkey; /* handle to the created key */
1974 int created; /* has it been newly created? */
1975 @END
1977 /* Open a registry key */
1978 @REQ(open_key)
1979 obj_handle_t parent; /* handle to the parent key */
1980 unsigned int access; /* desired access rights */
1981 unsigned int attributes; /* object attributes */
1982 VARARG(name,unicode_str); /* key name */
1983 @REPLY
1984 obj_handle_t hkey; /* handle to the open key */
1985 @END
1988 /* Delete a registry key */
1989 @REQ(delete_key)
1990 obj_handle_t hkey; /* handle to the key */
1991 @END
1994 /* Flush a registry key */
1995 @REQ(flush_key)
1996 obj_handle_t hkey; /* handle to the key */
1997 @END
2000 /* Enumerate registry subkeys */
2001 @REQ(enum_key)
2002 obj_handle_t hkey; /* handle to registry key */
2003 int index; /* index of subkey (or -1 for current key) */
2004 int info_class; /* requested information class */
2005 @REPLY
2006 int subkeys; /* number of subkeys */
2007 int max_subkey; /* longest subkey name */
2008 int max_class; /* longest class name */
2009 int values; /* number of values */
2010 int max_value; /* longest value name */
2011 int max_data; /* longest value data */
2012 timeout_t modif; /* last modification time */
2013 data_size_t total; /* total length needed for full name and class */
2014 data_size_t namelen; /* length of key name in bytes */
2015 VARARG(name,unicode_str,namelen); /* key name */
2016 VARARG(class,unicode_str); /* class name */
2017 @END
2020 /* Set a value of a registry key */
2021 @REQ(set_key_value)
2022 obj_handle_t hkey; /* handle to registry key */
2023 int type; /* value type */
2024 data_size_t namelen; /* length of value name in bytes */
2025 VARARG(name,unicode_str,namelen); /* value name */
2026 VARARG(data,bytes); /* value data */
2027 @END
2030 /* Retrieve the value of a registry key */
2031 @REQ(get_key_value)
2032 obj_handle_t hkey; /* handle to registry key */
2033 VARARG(name,unicode_str); /* value name */
2034 @REPLY
2035 int type; /* value type */
2036 data_size_t total; /* total length needed for data */
2037 VARARG(data,bytes); /* value data */
2038 @END
2041 /* Enumerate a value of a registry key */
2042 @REQ(enum_key_value)
2043 obj_handle_t hkey; /* handle to registry key */
2044 int index; /* value index */
2045 int info_class; /* requested information class */
2046 @REPLY
2047 int type; /* value type */
2048 data_size_t total; /* total length needed for full name and data */
2049 data_size_t namelen; /* length of value name in bytes */
2050 VARARG(name,unicode_str,namelen); /* value name */
2051 VARARG(data,bytes); /* value data */
2052 @END
2055 /* Delete a value of a registry key */
2056 @REQ(delete_key_value)
2057 obj_handle_t hkey; /* handle to registry key */
2058 VARARG(name,unicode_str); /* value name */
2059 @END
2062 /* Load a registry branch from a file */
2063 @REQ(load_registry)
2064 obj_handle_t file; /* file to load from */
2065 VARARG(objattr,object_attributes); /* object attributes */
2066 @END
2069 /* UnLoad a registry branch from a file */
2070 @REQ(unload_registry)
2071 obj_handle_t hkey; /* root key to unload to */
2072 @END
2075 /* Save a registry branch to a file */
2076 @REQ(save_registry)
2077 obj_handle_t hkey; /* key to save */
2078 obj_handle_t file; /* file to save to */
2079 @END
2082 /* Add a registry key change notification */
2083 @REQ(set_registry_notification)
2084 obj_handle_t hkey; /* key to watch for changes */
2085 obj_handle_t event; /* event to set */
2086 int subtree; /* should we watch the whole subtree? */
2087 unsigned int filter; /* things to watch */
2088 @END
2091 /* Create a waitable timer */
2092 @REQ(create_timer)
2093 unsigned int access; /* wanted access rights */
2094 int manual; /* manual reset */
2095 VARARG(objattr,object_attributes); /* object attributes */
2096 @REPLY
2097 obj_handle_t handle; /* handle to the timer */
2098 @END
2101 /* Open a waitable timer */
2102 @REQ(open_timer)
2103 unsigned int access; /* wanted access rights */
2104 unsigned int attributes; /* object attributes */
2105 obj_handle_t rootdir; /* root directory */
2106 VARARG(name,unicode_str); /* object name */
2107 @REPLY
2108 obj_handle_t handle; /* handle to the timer */
2109 @END
2111 /* Set a waitable timer */
2112 @REQ(set_timer)
2113 obj_handle_t handle; /* handle to the timer */
2114 timeout_t expire; /* next expiration absolute time */
2115 client_ptr_t callback; /* callback function */
2116 client_ptr_t arg; /* callback argument */
2117 int period; /* timer period in ms */
2118 @REPLY
2119 int signaled; /* was the timer signaled before this call ? */
2120 @END
2122 /* Cancel a waitable timer */
2123 @REQ(cancel_timer)
2124 obj_handle_t handle; /* handle to the timer */
2125 @REPLY
2126 int signaled; /* was the timer signaled before this calltime ? */
2127 @END
2129 /* Get information on a waitable timer */
2130 @REQ(get_timer_info)
2131 obj_handle_t handle; /* handle to the timer */
2132 @REPLY
2133 timeout_t when; /* absolute time when the timer next expires */
2134 int signaled; /* is the timer signaled? */
2135 @END
2138 /* Retrieve the current context of a thread */
2139 @REQ(get_thread_context)
2140 obj_handle_t handle; /* thread handle */
2141 unsigned int flags; /* context flags */
2142 int suspend; /* suspend the thread if needed */
2143 @REPLY
2144 int self; /* was it a handle to the current thread? */
2145 VARARG(context,context); /* thread context */
2146 @END
2149 /* Set the current context of a thread */
2150 @REQ(set_thread_context)
2151 obj_handle_t handle; /* thread handle */
2152 int suspend; /* suspend the thread if needed */
2153 VARARG(context,context); /* thread context */
2154 @REPLY
2155 int self; /* was it a handle to the current thread? */
2156 @END
2159 /* Fetch a selector entry for a thread */
2160 @REQ(get_selector_entry)
2161 obj_handle_t handle; /* thread handle */
2162 int entry; /* LDT entry */
2163 @REPLY
2164 unsigned int base; /* selector base */
2165 unsigned int limit; /* selector limit */
2166 unsigned char flags; /* selector flags */
2167 @END
2170 /* Add an atom */
2171 @REQ(add_atom)
2172 obj_handle_t table; /* which table to add atom to */
2173 VARARG(name,unicode_str); /* atom name */
2174 @REPLY
2175 atom_t atom; /* resulting atom */
2176 @END
2179 /* Delete an atom */
2180 @REQ(delete_atom)
2181 obj_handle_t table; /* which table to delete atom from */
2182 atom_t atom; /* atom handle */
2183 @END
2186 /* Find an atom */
2187 @REQ(find_atom)
2188 obj_handle_t table; /* which table to find atom from */
2189 VARARG(name,unicode_str); /* atom name */
2190 @REPLY
2191 atom_t atom; /* atom handle */
2192 @END
2195 /* Get information about an atom */
2196 @REQ(get_atom_information)
2197 obj_handle_t table; /* which table to find atom from */
2198 atom_t atom; /* atom handle */
2199 @REPLY
2200 int count; /* atom lock count */
2201 int pinned; /* whether the atom has been pinned */
2202 data_size_t total; /* actual length of atom name */
2203 VARARG(name,unicode_str); /* atom name */
2204 @END
2207 /* Set information about an atom */
2208 @REQ(set_atom_information)
2209 obj_handle_t table; /* which table to find atom from */
2210 atom_t atom; /* atom handle */
2211 int pinned; /* whether to bump atom information */
2212 @END
2215 /* Empty an atom table */
2216 @REQ(empty_atom_table)
2217 obj_handle_t table; /* which table to find atom from */
2218 int if_pinned; /* whether to delete pinned atoms */
2219 @END
2222 /* Init an atom table */
2223 @REQ(init_atom_table)
2224 int entries; /* number of entries (only for local) */
2225 @REPLY
2226 obj_handle_t table; /* handle to the atom table */
2227 @END
2230 /* Get the message queue of the current thread */
2231 @REQ(get_msg_queue)
2232 @REPLY
2233 obj_handle_t handle; /* handle to the queue */
2234 @END
2237 /* Set the file descriptor associated to the current thread queue */
2238 @REQ(set_queue_fd)
2239 obj_handle_t handle; /* handle to the file descriptor */
2240 @END
2243 /* Set the current message queue wakeup mask */
2244 @REQ(set_queue_mask)
2245 unsigned int wake_mask; /* wakeup bits mask */
2246 unsigned int changed_mask; /* changed bits mask */
2247 int skip_wait; /* will we skip waiting if signaled? */
2248 @REPLY
2249 unsigned int wake_bits; /* current wake bits */
2250 unsigned int changed_bits; /* current changed bits */
2251 @END
2254 /* Get the current message queue status */
2255 @REQ(get_queue_status)
2256 unsigned int clear_bits; /* should we clear the change bits? */
2257 @REPLY
2258 unsigned int wake_bits; /* wake bits */
2259 unsigned int changed_bits; /* changed bits since last time */
2260 @END
2263 /* Retrieve the process idle event */
2264 @REQ(get_process_idle_event)
2265 obj_handle_t handle; /* process handle */
2266 @REPLY
2267 obj_handle_t event; /* handle to idle event */
2268 @END
2271 /* Send a message to a thread queue */
2272 @REQ(send_message)
2273 thread_id_t id; /* thread id */
2274 int type; /* message type (see below) */
2275 int flags; /* message flags (see below) */
2276 user_handle_t win; /* window handle */
2277 unsigned int msg; /* message code */
2278 lparam_t wparam; /* parameters */
2279 lparam_t lparam; /* parameters */
2280 timeout_t timeout; /* timeout for reply */
2281 VARARG(data,message_data); /* message data for sent messages */
2282 @END
2284 @REQ(post_quit_message)
2285 int exit_code; /* exit code to return */
2286 @END
2288 enum message_type
2290 MSG_ASCII, /* Ascii message (from SendMessageA) */
2291 MSG_UNICODE, /* Unicode message (from SendMessageW) */
2292 MSG_NOTIFY, /* notify message (from SendNotifyMessageW), always Unicode */
2293 MSG_CALLBACK, /* callback message (from SendMessageCallbackW), always Unicode */
2294 MSG_CALLBACK_RESULT,/* result of a callback message */
2295 MSG_OTHER_PROCESS, /* sent from other process, may include vararg data, always Unicode */
2296 MSG_POSTED, /* posted message (from PostMessageW), always Unicode */
2297 MSG_HARDWARE, /* hardware message */
2298 MSG_WINEVENT, /* winevent message */
2299 MSG_HOOK_LL /* low-level hardware hook */
2301 #define SEND_MSG_ABORT_IF_HUNG 0x01
2304 /* Send a hardware message to a thread queue */
2305 @REQ(send_hardware_message)
2306 user_handle_t win; /* window handle */
2307 hw_input_t input; /* input data */
2308 unsigned int flags; /* flags (see below) */
2309 @REPLY
2310 int wait; /* do we need to wait for a reply? */
2311 int prev_x; /* previous cursor position */
2312 int prev_y;
2313 int new_x; /* new cursor position */
2314 int new_y;
2315 VARARG(keystate,bytes); /* global state array for all the keys */
2316 @END
2317 #define SEND_HWMSG_INJECTED 0x01
2320 /* Get a message from the current queue */
2321 @REQ(get_message)
2322 unsigned int flags; /* PM_* flags */
2323 user_handle_t get_win; /* window handle to get */
2324 unsigned int get_first; /* first message code to get */
2325 unsigned int get_last; /* last message code to get */
2326 unsigned int hw_id; /* id of the previous hardware message (or 0) */
2327 unsigned int wake_mask; /* wakeup bits mask */
2328 unsigned int changed_mask; /* changed bits mask */
2329 @REPLY
2330 user_handle_t win; /* window handle */
2331 unsigned int msg; /* message code */
2332 lparam_t wparam; /* parameters */
2333 lparam_t lparam; /* parameters */
2334 int type; /* message type */
2335 int x; /* message x position */
2336 int y; /* message y position */
2337 unsigned int time; /* message time */
2338 unsigned int active_hooks; /* active hooks bitmap */
2339 data_size_t total; /* total size of extra data */
2340 VARARG(data,message_data); /* message data for sent messages */
2341 @END
2344 /* Reply to a sent message */
2345 @REQ(reply_message)
2346 int remove; /* should we remove the message? */
2347 lparam_t result; /* message result */
2348 VARARG(data,bytes); /* message data for sent messages */
2349 @END
2352 /* Accept the current hardware message */
2353 @REQ(accept_hardware_message)
2354 unsigned int hw_id; /* id of the hardware message */
2355 int remove; /* should we remove the message? */
2356 @END
2359 /* Retrieve the reply for the last message sent */
2360 @REQ(get_message_reply)
2361 int cancel; /* cancel message if not ready? */
2362 @REPLY
2363 lparam_t result; /* message result */
2364 VARARG(data,bytes); /* message data for sent messages */
2365 @END
2368 /* Set a window timer */
2369 @REQ(set_win_timer)
2370 user_handle_t win; /* window handle */
2371 unsigned int msg; /* message to post */
2372 unsigned int rate; /* timer rate in ms */
2373 lparam_t id; /* timer id */
2374 lparam_t lparam; /* message lparam (callback proc) */
2375 @REPLY
2376 lparam_t id; /* timer id */
2377 @END
2380 /* Kill a window timer */
2381 @REQ(kill_win_timer)
2382 user_handle_t win; /* window handle */
2383 lparam_t id; /* timer id */
2384 unsigned int msg; /* message to post */
2385 @END
2388 /* check if the thread owning the window is hung */
2389 @REQ(is_window_hung)
2390 user_handle_t win; /* window handle */
2391 @REPLY
2392 int is_hung;
2393 @END
2396 /* Retrieve info about a serial port */
2397 @REQ(get_serial_info)
2398 obj_handle_t handle; /* handle to comm port */
2399 int flags;
2400 @REPLY
2401 unsigned int eventmask;
2402 unsigned int cookie;
2403 unsigned int pending_write;
2404 @END
2407 /* Set info about a serial port */
2408 @REQ(set_serial_info)
2409 obj_handle_t handle; /* handle to comm port */
2410 int flags; /* bitmask to set values (see below) */
2411 @END
2412 #define SERIALINFO_PENDING_WRITE 0x04
2413 #define SERIALINFO_PENDING_WAIT 0x08
2416 /* Create an async I/O */
2417 @REQ(register_async)
2418 int type; /* type of queue to look after */
2419 async_data_t async; /* async I/O parameters */
2420 int count; /* count - usually # of bytes to be read/written */
2421 @END
2422 #define ASYNC_TYPE_READ 0x01
2423 #define ASYNC_TYPE_WRITE 0x02
2424 #define ASYNC_TYPE_WAIT 0x03
2427 /* Cancel all async op on a fd */
2428 @REQ(cancel_async)
2429 obj_handle_t handle; /* handle to comm port, socket or file */
2430 client_ptr_t iosb; /* I/O status block (NULL=all) */
2431 int only_thread; /* cancel matching this thread */
2432 @END
2435 /* Retrieve results of an async */
2436 @REQ(get_async_result)
2437 client_ptr_t user_arg; /* user arg used to identify async */
2438 @REPLY
2439 data_size_t size; /* result size (input or output depending on the operation) */
2440 VARARG(out_data,bytes); /* iosb output data */
2441 @END
2444 /* Perform a read on a file object */
2445 @REQ(read)
2446 async_data_t async; /* async I/O parameters */
2447 file_pos_t pos; /* read position */
2448 @REPLY
2449 obj_handle_t wait; /* handle to wait on for blocking read */
2450 unsigned int options; /* device open options */
2451 VARARG(data,bytes); /* read data */
2452 @END
2455 /* Perform a write on a file object */
2456 @REQ(write)
2457 async_data_t async; /* async I/O parameters */
2458 file_pos_t pos; /* write position */
2459 VARARG(data,bytes); /* write data */
2460 @REPLY
2461 obj_handle_t wait; /* handle to wait on for blocking write */
2462 unsigned int options; /* device open options */
2463 data_size_t size; /* size written */
2464 @END
2467 /* Perform an ioctl on a file */
2468 @REQ(ioctl)
2469 ioctl_code_t code; /* ioctl code */
2470 async_data_t async; /* async I/O parameters */
2471 VARARG(in_data,bytes); /* ioctl input data */
2472 @REPLY
2473 obj_handle_t wait; /* handle to wait on for blocking ioctl */
2474 unsigned int options; /* device open options */
2475 VARARG(out_data,bytes); /* ioctl output data */
2476 @END
2479 /* Store results of an async irp */
2480 @REQ(set_irp_result)
2481 obj_handle_t handle; /* handle to the irp */
2482 unsigned int status; /* status of the irp */
2483 data_size_t size; /* result size (input or output depending on the operation) */
2484 VARARG(data,bytes); /* output data of the irp */
2485 @END
2488 /* Create a named pipe */
2489 @REQ(create_named_pipe)
2490 unsigned int access;
2491 unsigned int options;
2492 unsigned int sharing;
2493 unsigned int maxinstances;
2494 unsigned int outsize;
2495 unsigned int insize;
2496 timeout_t timeout;
2497 unsigned int flags;
2498 VARARG(objattr,object_attributes); /* object attributes */
2499 @REPLY
2500 obj_handle_t handle; /* handle to the pipe */
2501 @END
2503 /* flags in create_named_pipe and get_named_pipe_info */
2504 #define NAMED_PIPE_MESSAGE_STREAM_WRITE 0x0001
2505 #define NAMED_PIPE_MESSAGE_STREAM_READ 0x0002
2506 #define NAMED_PIPE_NONBLOCKING_MODE 0x0004
2507 #define NAMED_PIPE_SERVER_END 0x8000
2509 /* Set named pipe information by handle */
2510 @REQ(set_named_pipe_info)
2511 obj_handle_t handle;
2512 unsigned int flags;
2513 @END
2515 /* Create a window */
2516 @REQ(create_window)
2517 user_handle_t parent; /* parent window */
2518 user_handle_t owner; /* owner window */
2519 atom_t atom; /* class atom */
2520 mod_handle_t instance; /* module instance */
2521 int dpi; /* system DPI */
2522 int awareness; /* thread DPI awareness */
2523 VARARG(class,unicode_str); /* class name */
2524 @REPLY
2525 user_handle_t handle; /* created window */
2526 user_handle_t parent; /* full handle of parent */
2527 user_handle_t owner; /* full handle of owner */
2528 int extra; /* number of extra bytes */
2529 client_ptr_t class_ptr; /* pointer to class in client address space */
2530 int dpi; /* window DPI if not per-monitor aware */
2531 int awareness; /* window DPI awareness */
2532 @END
2535 /* Destroy a window */
2536 @REQ(destroy_window)
2537 user_handle_t handle; /* handle to the window */
2538 @END
2541 /* Retrieve the desktop window for the current thread */
2542 @REQ(get_desktop_window)
2543 int force; /* force creation if it doesn't exist */
2544 @REPLY
2545 user_handle_t top_window; /* handle to the desktop window */
2546 user_handle_t msg_window; /* handle to the top-level HWND_MESSAGE parent */
2547 @END
2550 /* Set a window owner */
2551 @REQ(set_window_owner)
2552 user_handle_t handle; /* handle to the window */
2553 user_handle_t owner; /* new owner */
2554 @REPLY
2555 user_handle_t full_owner; /* full handle of new owner */
2556 user_handle_t prev_owner; /* full handle of previous owner */
2557 @END
2560 /* Get information from a window handle */
2561 @REQ(get_window_info)
2562 user_handle_t handle; /* handle to the window */
2563 @REPLY
2564 user_handle_t full_handle; /* full 32-bit handle */
2565 user_handle_t last_active; /* last active popup */
2566 process_id_t pid; /* process owning the window */
2567 thread_id_t tid; /* thread owning the window */
2568 atom_t atom; /* class atom */
2569 int is_unicode; /* ANSI or unicode */
2570 int dpi; /* window DPI */
2571 int awareness; /* DPI awareness */
2572 @END
2575 /* Set some information in a window */
2576 @REQ(set_window_info)
2577 unsigned short flags; /* flags for fields to set (see below) */
2578 short int is_unicode; /* ANSI or unicode */
2579 user_handle_t handle; /* handle to the window */
2580 unsigned int style; /* window style */
2581 unsigned int ex_style; /* window extended style */
2582 unsigned int id; /* window id */
2583 mod_handle_t instance; /* creator instance */
2584 lparam_t user_data; /* user-specific data */
2585 int extra_offset; /* offset to set in extra bytes */
2586 data_size_t extra_size; /* size to set in extra bytes */
2587 lparam_t extra_value; /* value to set in extra bytes */
2588 @REPLY
2589 unsigned int old_style; /* old window style */
2590 unsigned int old_ex_style; /* old window extended style */
2591 mod_handle_t old_instance; /* old creator instance */
2592 lparam_t old_user_data; /* old user-specific data */
2593 lparam_t old_extra_value; /* old value in extra bytes */
2594 unsigned int old_id; /* old window id */
2595 @END
2596 #define SET_WIN_STYLE 0x01
2597 #define SET_WIN_EXSTYLE 0x02
2598 #define SET_WIN_ID 0x04
2599 #define SET_WIN_INSTANCE 0x08
2600 #define SET_WIN_USERDATA 0x10
2601 #define SET_WIN_EXTRA 0x20
2602 #define SET_WIN_UNICODE 0x40
2605 /* Set the parent of a window */
2606 @REQ(set_parent)
2607 user_handle_t handle; /* handle to the window */
2608 user_handle_t parent; /* handle to the parent */
2609 @REPLY
2610 user_handle_t old_parent; /* old parent window */
2611 user_handle_t full_parent; /* full handle of new parent */
2612 int dpi; /* new window DPI if not per-monitor aware */
2613 int awareness; /* new DPI awareness */
2614 @END
2617 /* Get a list of the window parents, up to the root of the tree */
2618 @REQ(get_window_parents)
2619 user_handle_t handle; /* handle to the window */
2620 @REPLY
2621 int count; /* total count of parents */
2622 VARARG(parents,user_handles); /* parent handles */
2623 @END
2626 /* Get a list of the window children */
2627 @REQ(get_window_children)
2628 obj_handle_t desktop; /* handle to desktop */
2629 user_handle_t parent; /* parent window */
2630 atom_t atom; /* class atom for the listed children */
2631 thread_id_t tid; /* thread owning the listed children */
2632 VARARG(class,unicode_str); /* class name */
2633 @REPLY
2634 int count; /* total count of children */
2635 VARARG(children,user_handles); /* children handles */
2636 @END
2639 /* Get a list of the window children that contain a given point */
2640 @REQ(get_window_children_from_point)
2641 user_handle_t parent; /* parent window */
2642 int x; /* point in parent coordinates */
2643 int y;
2644 int dpi; /* dpi for the point coordinates */
2645 @REPLY
2646 int count; /* total count of children */
2647 VARARG(children,user_handles); /* children handles */
2648 @END
2651 /* Get window tree information from a window handle */
2652 @REQ(get_window_tree)
2653 user_handle_t handle; /* handle to the window */
2654 @REPLY
2655 user_handle_t parent; /* parent window */
2656 user_handle_t owner; /* owner window */
2657 user_handle_t next_sibling; /* next sibling in Z-order */
2658 user_handle_t prev_sibling; /* prev sibling in Z-order */
2659 user_handle_t first_sibling; /* first sibling in Z-order */
2660 user_handle_t last_sibling; /* last sibling in Z-order */
2661 user_handle_t first_child; /* first child */
2662 user_handle_t last_child; /* last child */
2663 @END
2665 /* Set the position and Z order of a window */
2666 @REQ(set_window_pos)
2667 unsigned short swp_flags; /* SWP_* flags */
2668 unsigned short paint_flags; /* paint flags (see below) */
2669 user_handle_t handle; /* handle to the window */
2670 user_handle_t previous; /* previous window in Z order */
2671 rectangle_t window; /* window rectangle (in parent coords) */
2672 rectangle_t client; /* client rectangle (in parent coords) */
2673 VARARG(valid,rectangles); /* valid rectangles from WM_NCCALCSIZE (in parent coords) */
2674 @REPLY
2675 unsigned int new_style; /* new window style */
2676 unsigned int new_ex_style; /* new window extended style */
2677 user_handle_t surface_win; /* parent window that holds the surface */
2678 int needs_update; /* whether the surface region needs an update */
2679 @END
2680 #define SET_WINPOS_PAINT_SURFACE 0x01 /* window has a paintable surface */
2681 #define SET_WINPOS_PIXEL_FORMAT 0x02 /* window has a custom pixel format */
2683 /* Get the window and client rectangles of a window */
2684 @REQ(get_window_rectangles)
2685 user_handle_t handle; /* handle to the window */
2686 int relative; /* coords relative to (see below) */
2687 int dpi; /* DPI to map to, or zero for per-monitor DPI */
2688 @REPLY
2689 rectangle_t window; /* window rectangle */
2690 rectangle_t client; /* client rectangle */
2691 @END
2692 enum coords_relative
2694 COORDS_CLIENT, /* relative to client area */
2695 COORDS_WINDOW, /* relative to whole window area */
2696 COORDS_PARENT, /* relative to parent's client area */
2697 COORDS_SCREEN /* relative to screen origin */
2701 /* Get the window text */
2702 @REQ(get_window_text)
2703 user_handle_t handle; /* handle to the window */
2704 @REPLY
2705 data_size_t length; /* total length in WCHARs */
2706 VARARG(text,unicode_str); /* window text */
2707 @END
2710 /* Set the window text */
2711 @REQ(set_window_text)
2712 user_handle_t handle; /* handle to the window */
2713 VARARG(text,unicode_str); /* window text */
2714 @END
2717 /* Get the coordinates offset between two windows */
2718 @REQ(get_windows_offset)
2719 user_handle_t from; /* handle to the first window */
2720 user_handle_t to; /* handle to the second window */
2721 int dpi; /* DPI to map to, or zero for per-monitor DPI */
2722 @REPLY
2723 int x; /* x coordinate offset */
2724 int y; /* y coordinate offset */
2725 int mirror; /* whether to mirror the x coordinate */
2726 @END
2729 /* Get the visible region of a window */
2730 @REQ(get_visible_region)
2731 user_handle_t window; /* handle to the window */
2732 unsigned int flags; /* DCX flags */
2733 @REPLY
2734 user_handle_t top_win; /* top window to clip against */
2735 rectangle_t top_rect; /* top window visible rect with screen coords */
2736 rectangle_t win_rect; /* window rect in screen coords */
2737 unsigned int paint_flags; /* paint flags (from SET_WINPOS_* flags) */
2738 data_size_t total_size; /* total size of the resulting region */
2739 VARARG(region,rectangles); /* list of rectangles for the region (in screen coords) */
2740 @END
2743 /* Get the visible surface region of a window */
2744 @REQ(get_surface_region)
2745 user_handle_t window; /* handle to the window */
2746 @REPLY
2747 rectangle_t visible_rect; /* window visible rect in screen coords */
2748 data_size_t total_size; /* total size of the resulting region */
2749 VARARG(region,rectangles); /* list of rectangles for the region (in screen coords) */
2750 @END
2753 /* Get the window region */
2754 @REQ(get_window_region)
2755 user_handle_t window; /* handle to the window */
2756 @REPLY
2757 data_size_t total_size; /* total size of the resulting region */
2758 VARARG(region,rectangles); /* list of rectangles for the region (in window coords) */
2759 @END
2762 /* Set the window region */
2763 @REQ(set_window_region)
2764 user_handle_t window; /* handle to the window */
2765 int redraw; /* redraw the window? */
2766 VARARG(region,rectangles); /* list of rectangles for the region (in window coords) */
2767 @END
2770 /* Get the window update region */
2771 @REQ(get_update_region)
2772 user_handle_t window; /* handle to the window */
2773 user_handle_t from_child; /* child to start searching from */
2774 unsigned int flags; /* update flags (see below) */
2775 @REPLY
2776 user_handle_t child; /* child to repaint (or window itself) */
2777 unsigned int flags; /* resulting update flags (see below) */
2778 data_size_t total_size; /* total size of the resulting region */
2779 VARARG(region,rectangles); /* list of rectangles for the region (in screen coords) */
2780 @END
2781 #define UPDATE_NONCLIENT 0x001 /* get region for repainting non-client area */
2782 #define UPDATE_ERASE 0x002 /* get region for erasing client area */
2783 #define UPDATE_PAINT 0x004 /* get region for painting client area */
2784 #define UPDATE_INTERNALPAINT 0x008 /* get region if internal paint is pending */
2785 #define UPDATE_ALLCHILDREN 0x010 /* force repaint of all children */
2786 #define UPDATE_NOCHILDREN 0x020 /* don't try to repaint any children */
2787 #define UPDATE_NOREGION 0x040 /* don't return a region, only the flags */
2788 #define UPDATE_DELAYED_ERASE 0x080 /* still needs erase after BeginPaint */
2789 #define UPDATE_CLIPCHILDREN 0x100 /* remove clipped children from the update region */
2792 /* Update the z order of a window so that a given rectangle is fully visible */
2793 @REQ(update_window_zorder)
2794 user_handle_t window; /* handle to the window */
2795 rectangle_t rect; /* rectangle that must be visible (in client coords) */
2796 @END
2799 /* Mark parts of a window as needing a redraw */
2800 @REQ(redraw_window)
2801 user_handle_t window; /* handle to the window */
2802 unsigned int flags; /* RDW_* flags */
2803 VARARG(region,rectangles); /* list of rectangles for the region (in window coords) */
2804 @END
2807 /* Set a window property */
2808 @REQ(set_window_property)
2809 user_handle_t window; /* handle to the window */
2810 lparam_t data; /* data to store */
2811 atom_t atom; /* property atom (if no name specified) */
2812 VARARG(name,unicode_str); /* property name */
2813 @END
2816 /* Remove a window property */
2817 @REQ(remove_window_property)
2818 user_handle_t window; /* handle to the window */
2819 atom_t atom; /* property atom (if no name specified) */
2820 VARARG(name,unicode_str); /* property name */
2821 @REPLY
2822 lparam_t data; /* data stored in property */
2823 @END
2826 /* Get a window property */
2827 @REQ(get_window_property)
2828 user_handle_t window; /* handle to the window */
2829 atom_t atom; /* property atom (if no name specified) */
2830 VARARG(name,unicode_str); /* property name */
2831 @REPLY
2832 lparam_t data; /* data stored in property */
2833 @END
2836 /* Get the list of properties of a window */
2837 @REQ(get_window_properties)
2838 user_handle_t window; /* handle to the window */
2839 @REPLY
2840 int total; /* total number of properties */
2841 VARARG(props,properties); /* list of properties */
2842 @END
2845 /* Create a window station */
2846 @REQ(create_winstation)
2847 unsigned int flags; /* window station flags */
2848 unsigned int access; /* wanted access rights */
2849 unsigned int attributes; /* object attributes */
2850 obj_handle_t rootdir; /* root directory */
2851 VARARG(name,unicode_str); /* object name */
2852 @REPLY
2853 obj_handle_t handle; /* handle to the window station */
2854 @END
2857 /* Open a handle to a window station */
2858 @REQ(open_winstation)
2859 unsigned int access; /* wanted access rights */
2860 unsigned int attributes; /* object attributes */
2861 obj_handle_t rootdir; /* root directory */
2862 VARARG(name,unicode_str); /* object name */
2863 @REPLY
2864 obj_handle_t handle; /* handle to the window station */
2865 @END
2868 /* Close a window station */
2869 @REQ(close_winstation)
2870 obj_handle_t handle; /* handle to the window station */
2871 @END
2874 /* Get the process current window station */
2875 @REQ(get_process_winstation)
2876 @REPLY
2877 obj_handle_t handle; /* handle to the window station */
2878 @END
2881 /* Set the process current window station */
2882 @REQ(set_process_winstation)
2883 obj_handle_t handle; /* handle to the window station */
2884 @END
2887 /* Enumerate window stations */
2888 @REQ(enum_winstation)
2889 unsigned int index; /* current index */
2890 @REPLY
2891 unsigned int next; /* next index */
2892 VARARG(name,unicode_str); /* window station name */
2893 @END
2896 /* Create a desktop */
2897 @REQ(create_desktop)
2898 unsigned int flags; /* desktop flags */
2899 unsigned int access; /* wanted access rights */
2900 unsigned int attributes; /* object attributes */
2901 VARARG(name,unicode_str); /* object name */
2902 @REPLY
2903 obj_handle_t handle; /* handle to the desktop */
2904 @END
2907 /* Open a handle to a desktop */
2908 @REQ(open_desktop)
2909 obj_handle_t winsta; /* window station to open (null allowed) */
2910 unsigned int flags; /* desktop flags */
2911 unsigned int access; /* wanted access rights */
2912 unsigned int attributes; /* object attributes */
2913 VARARG(name,unicode_str); /* object name */
2914 @REPLY
2915 obj_handle_t handle; /* handle to the desktop */
2916 @END
2919 /* Open a handle to current input desktop */
2920 @REQ(open_input_desktop)
2921 unsigned int flags; /* desktop flags */
2922 unsigned int access; /* wanted access rights */
2923 unsigned int attributes; /* object attributes */
2924 @REPLY
2925 obj_handle_t handle; /* handle to the desktop */
2926 @END
2929 /* Close a desktop */
2930 @REQ(close_desktop)
2931 obj_handle_t handle; /* handle to the desktop */
2932 @END
2935 /* Get the thread current desktop */
2936 @REQ(get_thread_desktop)
2937 thread_id_t tid; /* thread id */
2938 @REPLY
2939 obj_handle_t handle; /* handle to the desktop */
2940 @END
2943 /* Set the thread current desktop */
2944 @REQ(set_thread_desktop)
2945 obj_handle_t handle; /* handle to the desktop */
2946 @END
2949 /* Enumerate desktops */
2950 @REQ(enum_desktop)
2951 obj_handle_t winstation; /* handle to the window station */
2952 unsigned int index; /* current index */
2953 @REPLY
2954 unsigned int next; /* next index */
2955 VARARG(name,unicode_str); /* window station name */
2956 @END
2959 /* Get/set information about a user object (window station or desktop) */
2960 @REQ(set_user_object_info)
2961 obj_handle_t handle; /* handle to the object */
2962 unsigned int flags; /* information to set/get */
2963 unsigned int obj_flags; /* new object flags */
2964 @REPLY
2965 int is_desktop; /* is object a desktop? */
2966 unsigned int old_obj_flags; /* old object flags */
2967 VARARG(name,unicode_str); /* object name */
2968 @END
2969 #define SET_USER_OBJECT_SET_FLAGS 1
2970 #define SET_USER_OBJECT_GET_FULL_NAME 2
2973 /* Register a hotkey */
2974 @REQ(register_hotkey)
2975 user_handle_t window; /* handle to the window */
2976 int id; /* hotkey identifier */
2977 unsigned int flags; /* modifier keys */
2978 unsigned int vkey; /* virtual key code */
2979 @REPLY
2980 int replaced; /* did we replace an existing hotkey? */
2981 unsigned int flags; /* flags of replaced hotkey */
2982 unsigned int vkey; /* virtual key code of replaced hotkey */
2983 @END
2986 /* Unregister a hotkey */
2987 @REQ(unregister_hotkey)
2988 user_handle_t window; /* handle to the window */
2989 int id; /* hotkey identifier */
2990 @REPLY
2991 unsigned int flags; /* flags of removed hotkey */
2992 unsigned int vkey; /* virtual key code of removed hotkey */
2993 @END
2996 /* Attach (or detach) thread inputs */
2997 @REQ(attach_thread_input)
2998 thread_id_t tid_from; /* thread to be attached */
2999 thread_id_t tid_to; /* thread to which tid_from should be attached */
3000 int attach; /* is it an attach? */
3001 @END
3004 /* Get input data for a given thread */
3005 @REQ(get_thread_input)
3006 thread_id_t tid; /* id of thread */
3007 @REPLY
3008 user_handle_t focus; /* handle to the focus window */
3009 user_handle_t capture; /* handle to the capture window */
3010 user_handle_t active; /* handle to the active window */
3011 user_handle_t foreground; /* handle to the global foreground window */
3012 user_handle_t menu_owner; /* handle to the menu owner */
3013 user_handle_t move_size; /* handle to the moving/resizing window */
3014 user_handle_t caret; /* handle to the caret window */
3015 user_handle_t cursor; /* handle to the cursor */
3016 int show_count; /* cursor show count */
3017 rectangle_t rect; /* caret rectangle */
3018 @END
3021 /* Get the time of the last input event */
3022 @REQ(get_last_input_time)
3023 @REPLY
3024 unsigned int time;
3025 @END
3028 /* Retrieve queue keyboard state for a given thread */
3029 @REQ(get_key_state)
3030 thread_id_t tid; /* id of thread */
3031 int key; /* optional key code or -1 */
3032 @REPLY
3033 unsigned char state; /* state of specified key */
3034 VARARG(keystate,bytes); /* state array for all the keys */
3035 @END
3037 /* Set queue keyboard state for a given thread */
3038 @REQ(set_key_state)
3039 thread_id_t tid; /* id of thread */
3040 int async; /* whether to change the async state too */
3041 VARARG(keystate,bytes); /* state array for all the keys */
3042 @END
3044 /* Set the system foreground window */
3045 @REQ(set_foreground_window)
3046 user_handle_t handle; /* handle to the foreground window */
3047 @REPLY
3048 user_handle_t previous; /* handle to the previous foreground window */
3049 int send_msg_old; /* whether we have to send a msg to the old window */
3050 int send_msg_new; /* whether we have to send a msg to the new window */
3051 @END
3053 /* Set the current thread focus window */
3054 @REQ(set_focus_window)
3055 user_handle_t handle; /* handle to the focus window */
3056 @REPLY
3057 user_handle_t previous; /* handle to the previous focus window */
3058 @END
3060 /* Set the current thread active window */
3061 @REQ(set_active_window)
3062 user_handle_t handle; /* handle to the active window */
3063 @REPLY
3064 user_handle_t previous; /* handle to the previous active window */
3065 @END
3067 /* Set the current thread capture window */
3068 @REQ(set_capture_window)
3069 user_handle_t handle; /* handle to the capture window */
3070 unsigned int flags; /* capture flags (see below) */
3071 @REPLY
3072 user_handle_t previous; /* handle to the previous capture window */
3073 user_handle_t full_handle; /* full 32-bit handle of new capture window */
3074 @END
3075 #define CAPTURE_MENU 0x01 /* capture is for a menu */
3076 #define CAPTURE_MOVESIZE 0x02 /* capture is for moving/resizing */
3079 /* Set the current thread caret window */
3080 @REQ(set_caret_window)
3081 user_handle_t handle; /* handle to the caret window */
3082 int width; /* caret width */
3083 int height; /* caret height */
3084 @REPLY
3085 user_handle_t previous; /* handle to the previous caret window */
3086 rectangle_t old_rect; /* previous caret rectangle */
3087 int old_hide; /* previous hide count */
3088 int old_state; /* previous caret state (1=on, 0=off) */
3089 @END
3092 /* Set the current thread caret information */
3093 @REQ(set_caret_info)
3094 unsigned int flags; /* caret flags (see below) */
3095 user_handle_t handle; /* handle to the caret window */
3096 int x; /* caret x position */
3097 int y; /* caret y position */
3098 int hide; /* increment for hide count (can be negative to show it) */
3099 int state; /* caret state (see below) */
3100 @REPLY
3101 user_handle_t full_handle; /* handle to the current caret window */
3102 rectangle_t old_rect; /* previous caret rectangle */
3103 int old_hide; /* previous hide count */
3104 int old_state; /* previous caret state (1=on, 0=off) */
3105 @END
3106 #define SET_CARET_POS 0x01 /* set the caret position from x,y */
3107 #define SET_CARET_HIDE 0x02 /* increment the caret hide count */
3108 #define SET_CARET_STATE 0x04 /* set the caret on/off state */
3109 enum caret_state
3111 CARET_STATE_OFF, /* off */
3112 CARET_STATE_ON, /* on */
3113 CARET_STATE_TOGGLE, /* toggle current state */
3114 CARET_STATE_ON_IF_MOVED /* on if the position differs, unchanged otherwise */
3118 /* Set a window hook */
3119 @REQ(set_hook)
3120 int id; /* id of the hook */
3121 process_id_t pid; /* id of process to set the hook into */
3122 thread_id_t tid; /* id of thread to set the hook into */
3123 int event_min;
3124 int event_max;
3125 client_ptr_t proc; /* hook procedure */
3126 int flags;
3127 int unicode; /* is it a unicode hook? */
3128 VARARG(module,unicode_str); /* module name */
3129 @REPLY
3130 user_handle_t handle; /* handle to the hook */
3131 unsigned int active_hooks; /* active hooks bitmap */
3132 @END
3135 /* Remove a window hook */
3136 @REQ(remove_hook)
3137 user_handle_t handle; /* handle to the hook */
3138 client_ptr_t proc; /* hook procedure if handle is 0 */
3139 int id; /* id of the hook if handle is 0 */
3140 @REPLY
3141 unsigned int active_hooks; /* active hooks bitmap */
3142 @END
3145 /* Start calling a hook chain */
3146 @REQ(start_hook_chain)
3147 int id; /* id of the hook */
3148 int event; /* signalled event */
3149 user_handle_t window; /* handle to the event window */
3150 int object_id; /* object id for out of context winevent */
3151 int child_id; /* child id for out of context winevent */
3152 @REPLY
3153 user_handle_t handle; /* handle to the next hook */
3154 process_id_t pid; /* process id for low-level keyboard/mouse hooks */
3155 thread_id_t tid; /* thread id for low-level keyboard/mouse hooks */
3156 int unicode; /* is it a unicode hook? */
3157 client_ptr_t proc; /* hook procedure */
3158 unsigned int active_hooks; /* active hooks bitmap */
3159 VARARG(module,unicode_str); /* module name */
3160 @END
3163 /* Finished calling a hook chain */
3164 @REQ(finish_hook_chain)
3165 int id; /* id of the hook */
3166 @END
3169 /* Get the hook information */
3170 @REQ(get_hook_info)
3171 user_handle_t handle; /* handle to the current hook */
3172 int get_next; /* do we want info about current or next hook? */
3173 int event; /* signalled event */
3174 user_handle_t window; /* handle to the event window */
3175 int object_id; /* object id for out of context winevent */
3176 int child_id; /* child id for out of context winevent */
3177 @REPLY
3178 user_handle_t handle; /* handle to the hook */
3179 int id; /* id of the hook */
3180 process_id_t pid; /* process id for low-level keyboard/mouse hooks */
3181 thread_id_t tid; /* thread id for low-level keyboard/mouse hooks */
3182 client_ptr_t proc; /* hook procedure */
3183 int unicode; /* is it a unicode hook? */
3184 VARARG(module,unicode_str); /* module name */
3185 @END
3188 /* Create a window class */
3189 @REQ(create_class)
3190 int local; /* is it a local class? */
3191 atom_t atom; /* class atom */
3192 unsigned int style; /* class style */
3193 mod_handle_t instance; /* module instance */
3194 int extra; /* number of extra class bytes */
3195 int win_extra; /* number of window extra bytes */
3196 client_ptr_t client_ptr; /* pointer to class in client address space */
3197 data_size_t name_offset; /* base class name offset for specified atom */
3198 VARARG(name,unicode_str); /* class name */
3199 @REPLY
3200 atom_t atom; /* resulting class atom */
3201 @END
3204 /* Destroy a window class */
3205 @REQ(destroy_class)
3206 atom_t atom; /* class atom */
3207 mod_handle_t instance; /* module instance */
3208 VARARG(name,unicode_str); /* class name */
3209 @REPLY
3210 client_ptr_t client_ptr; /* pointer to class in client address space */
3211 @END
3214 /* Set some information in a class */
3215 @REQ(set_class_info)
3216 user_handle_t window; /* handle to the window */
3217 unsigned int flags; /* flags for info to set (see below) */
3218 atom_t atom; /* class atom */
3219 unsigned int style; /* class style */
3220 int win_extra; /* number of window extra bytes */
3221 mod_handle_t instance; /* module instance */
3222 int extra_offset; /* offset to set in extra bytes */
3223 data_size_t extra_size; /* size to set in extra bytes */
3224 lparam_t extra_value; /* value to set in extra bytes */
3225 @REPLY
3226 atom_t old_atom; /* previous class atom */
3227 atom_t base_atom; /* base class atom */
3228 mod_handle_t old_instance; /* previous module instance */
3229 lparam_t old_extra_value; /* old value in extra bytes */
3230 unsigned int old_style; /* previous class style */
3231 int old_extra; /* previous number of class extra bytes */
3232 int old_win_extra; /* previous number of window extra bytes */
3233 @END
3234 #define SET_CLASS_ATOM 0x0001
3235 #define SET_CLASS_STYLE 0x0002
3236 #define SET_CLASS_WINEXTRA 0x0004
3237 #define SET_CLASS_INSTANCE 0x0008
3238 #define SET_CLASS_EXTRA 0x0010
3241 /* Open the clipboard */
3242 @REQ(open_clipboard)
3243 user_handle_t window; /* clipboard window */
3244 @REPLY
3245 user_handle_t owner; /* current clipboard owner */
3246 @END
3249 /* Close the clipboard */
3250 @REQ(close_clipboard)
3251 @REPLY
3252 user_handle_t viewer; /* first clipboard viewer */
3253 user_handle_t owner; /* current clipboard owner */
3254 @END
3257 /* Empty the clipboard and grab ownership */
3258 @REQ(empty_clipboard)
3259 @END
3262 /* Add a data format to the clipboard */
3263 @REQ(set_clipboard_data)
3264 unsigned int format; /* clipboard format of the data */
3265 unsigned int lcid; /* locale id to use for synthesizing text formats */
3266 VARARG(data,bytes); /* data contents */
3267 @REPLY
3268 unsigned int seqno; /* sequence number for the set data */
3269 @END
3272 /* Fetch a data format from the clipboard */
3273 @REQ(get_clipboard_data)
3274 unsigned int format; /* clipboard format of the data */
3275 int render; /* will we try to render it if missing? */
3276 int cached; /* do we already have it in the client-side cache? */
3277 unsigned int seqno; /* sequence number for the data in the cache */
3278 @REPLY
3279 unsigned int from; /* for synthesized data, format to generate it from */
3280 user_handle_t owner; /* clipboard owner for delayed-rendered formats */
3281 unsigned int seqno; /* sequence number for the originally set data */
3282 data_size_t total; /* total data size */
3283 VARARG(data,bytes); /* data contents */
3284 @END
3287 /* Retrieve a list of available formats */
3288 @REQ(get_clipboard_formats)
3289 unsigned int format; /* specific format to query, return all if 0 */
3290 @REPLY
3291 unsigned int count; /* count of available formats */
3292 VARARG(formats,uints); /* array of available formats */
3293 @END
3296 /* Retrieve the next available format */
3297 @REQ(enum_clipboard_formats)
3298 unsigned int previous; /* previous format, or first if 0 */
3299 @REPLY
3300 unsigned int format; /* next format */
3301 @END
3304 /* Release ownership of the clipboard */
3305 @REQ(release_clipboard)
3306 user_handle_t owner; /* clipboard owner to release */
3307 @REPLY
3308 user_handle_t viewer; /* first clipboard viewer */
3309 user_handle_t owner; /* current clipboard owner */
3310 @END
3313 /* Get clipboard information */
3314 @REQ(get_clipboard_info)
3315 @REPLY
3316 user_handle_t window; /* clipboard window */
3317 user_handle_t owner; /* clipboard owner */
3318 user_handle_t viewer; /* clipboard viewer */
3319 unsigned int seqno; /* current sequence number */
3320 @END
3323 /* Set the clipboard viewer window */
3324 @REQ(set_clipboard_viewer)
3325 user_handle_t viewer; /* clipboard viewer */
3326 user_handle_t previous; /* if non-zero, check that this was the previous viewer */
3327 @REPLY
3328 user_handle_t old_viewer; /* previous clipboard viewer */
3329 user_handle_t owner; /* clipboard owner */
3330 @END
3333 /* Add a clipboard listener window */
3334 @REQ(add_clipboard_listener)
3335 user_handle_t window; /* clipboard listener window */
3336 @END
3339 /* Remove a clipboard listener window */
3340 @REQ(remove_clipboard_listener)
3341 user_handle_t window; /* clipboard listener window */
3342 @END
3345 /* Open a security token */
3346 @REQ(open_token)
3347 obj_handle_t handle; /* handle to the thread or process */
3348 unsigned int access; /* access rights to the new token */
3349 unsigned int attributes;/* object attributes */
3350 unsigned int flags; /* flags (see below) */
3351 @REPLY
3352 obj_handle_t token; /* handle to the token */
3353 @END
3354 #define OPEN_TOKEN_THREAD 1
3355 #define OPEN_TOKEN_AS_SELF 2
3358 /* Set/get the global windows */
3359 @REQ(set_global_windows)
3360 unsigned int flags; /* flags for fields to set (see below) */
3361 user_handle_t shell_window; /* handle to the new shell window */
3362 user_handle_t shell_listview; /* handle to the new shell listview window */
3363 user_handle_t progman_window; /* handle to the new program manager window */
3364 user_handle_t taskman_window; /* handle to the new task manager window */
3365 @REPLY
3366 user_handle_t old_shell_window; /* handle to the shell window */
3367 user_handle_t old_shell_listview; /* handle to the shell listview window */
3368 user_handle_t old_progman_window; /* handle to the new program manager window */
3369 user_handle_t old_taskman_window; /* handle to the new task manager window */
3370 @END
3371 #define SET_GLOBAL_SHELL_WINDOWS 0x01 /* set both main shell and listview windows */
3372 #define SET_GLOBAL_PROGMAN_WINDOW 0x02
3373 #define SET_GLOBAL_TASKMAN_WINDOW 0x04
3375 /* Adjust the privileges held by a token */
3376 @REQ(adjust_token_privileges)
3377 obj_handle_t handle; /* handle to the token */
3378 int disable_all; /* disable all privileges? */
3379 int get_modified_state; /* get modified privileges? */
3380 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges to enable/disable/remove */
3381 @REPLY
3382 unsigned int len; /* total length in bytes required to store token privileges */
3383 VARARG(privileges,LUID_AND_ATTRIBUTES); /* modified privileges */
3384 @END
3386 /* Retrieves the set of privileges held by or available to a token */
3387 @REQ(get_token_privileges)
3388 obj_handle_t handle; /* handle to the token */
3389 @REPLY
3390 unsigned int len; /* total length in bytes required to store token privileges */
3391 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges held by or available to a token */
3392 @END
3394 /* Check the token has the required privileges */
3395 @REQ(check_token_privileges)
3396 obj_handle_t handle; /* handle to the token */
3397 int all_required; /* are all the privileges required for the check to succeed? */
3398 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges to check */
3399 @REPLY
3400 int has_privileges; /* does the token have the required privileges? */
3401 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges held by or available to a token */
3402 @END
3404 @REQ(duplicate_token)
3405 obj_handle_t handle; /* handle to the token to duplicate */
3406 unsigned int access; /* access rights to the new token */
3407 int primary; /* is the new token to be a primary one? */
3408 int impersonation_level; /* impersonation level of the new token */
3409 VARARG(objattr,object_attributes); /* object attributes */
3410 @REPLY
3411 obj_handle_t new_handle; /* duplicated handle */
3412 @END
3414 @REQ(access_check)
3415 obj_handle_t handle; /* handle to the token */
3416 unsigned int desired_access; /* desired access to the object */
3417 unsigned int mapping_read; /* mapping from generic read to specific rights */
3418 unsigned int mapping_write; /* mapping from generic write to specific rights */
3419 unsigned int mapping_execute; /* mapping from generic execute to specific rights */
3420 unsigned int mapping_all; /* mapping from generic all to specific rights */
3421 VARARG(sd,security_descriptor); /* security descriptor to check */
3422 @REPLY
3423 unsigned int access_granted; /* access rights actually granted */
3424 unsigned int access_status; /* was access granted? */
3425 unsigned int privileges_len; /* length needed to store privileges */
3426 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges used during access check */
3427 @END
3429 @REQ(get_token_sid)
3430 obj_handle_t handle; /* handle to the token */
3431 unsigned int which_sid; /* which SID to retrieve from the token */
3432 @REPLY
3433 data_size_t sid_len; /* length needed to store sid */
3434 VARARG(sid,SID); /* the sid specified by which_sid from the token */
3435 @END
3437 @REQ(get_token_groups)
3438 obj_handle_t handle; /* handle to the token */
3439 @REPLY
3440 data_size_t user_len; /* length needed to store user */
3441 VARARG(user,token_groups); /* groups the token's user belongs to */
3442 @END
3444 @REQ(get_token_default_dacl)
3445 obj_handle_t handle; /* handle to the token */
3446 @REPLY
3447 data_size_t acl_len; /* length needed to store access control list */
3448 VARARG(acl,ACL); /* access control list */
3449 @END
3451 @REQ(set_token_default_dacl)
3452 obj_handle_t handle; /* handle to the token */
3453 VARARG(acl,ACL); /* default dacl to set */
3454 @END
3456 @REQ(set_security_object)
3457 obj_handle_t handle; /* handle to the object */
3458 unsigned int security_info; /* which parts of security descriptor to set */
3459 VARARG(sd,security_descriptor); /* security descriptor to set */
3460 @END
3462 @REQ(get_security_object)
3463 obj_handle_t handle; /* handle to the object */
3464 unsigned int security_info; /* which parts of security descriptor to get */
3465 @REPLY
3466 unsigned int sd_len; /* buffer size needed for sd */
3467 VARARG(sd,security_descriptor); /* retrieved security descriptor */
3468 @END
3471 struct handle_info
3473 process_id_t owner;
3474 obj_handle_t handle;
3475 unsigned int access;
3478 /* Return a list of all opened handles */
3479 @REQ(get_system_handles)
3480 @REPLY
3481 unsigned int count; /* number of handles */
3482 VARARG(data,handle_infos); /* array of handle_infos */
3483 @END
3486 /* Create a mailslot */
3487 @REQ(create_mailslot)
3488 unsigned int access; /* wanted access rights */
3489 timeout_t read_timeout;
3490 unsigned int max_msgsize;
3491 VARARG(objattr,object_attributes); /* object attributes */
3492 @REPLY
3493 obj_handle_t handle; /* handle to the mailslot */
3494 @END
3497 /* Set mailslot information */
3498 @REQ(set_mailslot_info)
3499 obj_handle_t handle; /* handle to the mailslot */
3500 timeout_t read_timeout;
3501 unsigned int flags;
3502 @REPLY
3503 timeout_t read_timeout;
3504 unsigned int max_msgsize;
3505 @END
3506 #define MAILSLOT_SET_READ_TIMEOUT 1
3509 /* Create a directory object */
3510 @REQ(create_directory)
3511 unsigned int access; /* access flags */
3512 VARARG(objattr,object_attributes); /* object attributes */
3513 @REPLY
3514 obj_handle_t handle; /* handle to the directory */
3515 @END
3518 /* Open a directory object */
3519 @REQ(open_directory)
3520 unsigned int access; /* access flags */
3521 unsigned int attributes; /* object attributes */
3522 obj_handle_t rootdir; /* root directory */
3523 VARARG(directory_name,unicode_str); /* Directory name */
3524 @REPLY
3525 obj_handle_t handle; /* handle to the directory */
3526 @END
3529 /* Get a directory entry by index */
3530 @REQ(get_directory_entry)
3531 obj_handle_t handle; /* handle to the directory */
3532 unsigned int index; /* entry index */
3533 @REPLY
3534 data_size_t name_len; /* length of the entry name in bytes */
3535 VARARG(name,unicode_str,name_len); /* entry name */
3536 VARARG(type,unicode_str); /* entry type */
3537 @END
3540 /* Create a symbolic link object */
3541 @REQ(create_symlink)
3542 unsigned int access; /* access flags */
3543 VARARG(objattr,object_attributes); /* object attributes */
3544 VARARG(target_name,unicode_str); /* target name */
3545 @REPLY
3546 obj_handle_t handle; /* handle to the symlink */
3547 @END
3550 /* Open a symbolic link object */
3551 @REQ(open_symlink)
3552 unsigned int access; /* access flags */
3553 unsigned int attributes; /* object attributes */
3554 obj_handle_t rootdir; /* root directory */
3555 VARARG(name,unicode_str); /* symlink name */
3556 @REPLY
3557 obj_handle_t handle; /* handle to the symlink */
3558 @END
3561 /* Query a symbolic link object */
3562 @REQ(query_symlink)
3563 obj_handle_t handle; /* handle to the symlink */
3564 @REPLY
3565 data_size_t total; /* total needed size for name */
3566 VARARG(target_name,unicode_str); /* target name */
3567 @END
3570 /* Query basic object information */
3571 @REQ(get_object_info)
3572 obj_handle_t handle; /* handle to the object */
3573 @REPLY
3574 unsigned int access; /* granted access mask */
3575 unsigned int ref_count; /* object ref count */
3576 unsigned int handle_count; /* object handle count */
3577 data_size_t total; /* total needed size for name */
3578 VARARG(name,unicode_str); /* object name */
3579 @END
3582 /* Query object type name information */
3583 @REQ(get_object_type)
3584 obj_handle_t handle; /* handle to the object */
3585 @REPLY
3586 data_size_t total; /* needed size for type name */
3587 VARARG(type,unicode_str); /* type name */
3588 @END
3591 /* Unlink a named object */
3592 @REQ(unlink_object)
3593 obj_handle_t handle; /* handle to the object */
3594 @END
3597 /* Query the impersonation level of an impersonation token */
3598 @REQ(get_token_impersonation_level)
3599 obj_handle_t handle; /* handle to the object */
3600 @REPLY
3601 int impersonation_level; /* impersonation level of the impersonation token */
3602 @END
3604 /* Allocate a locally-unique identifier */
3605 @REQ(allocate_locally_unique_id)
3606 @REPLY
3607 luid_t luid;
3608 @END
3611 /* Create a device manager */
3612 @REQ(create_device_manager)
3613 unsigned int access; /* wanted access rights */
3614 unsigned int attributes; /* object attributes */
3615 @REPLY
3616 obj_handle_t handle; /* handle to the device */
3617 @END
3620 /* Create a device */
3621 @REQ(create_device)
3622 obj_handle_t rootdir; /* root directory */
3623 client_ptr_t user_ptr; /* opaque ptr for use by client */
3624 obj_handle_t manager; /* device manager */
3625 VARARG(name,unicode_str); /* object name */
3626 @END
3629 /* Delete a device */
3630 @REQ(delete_device)
3631 obj_handle_t manager; /* handle to the device manager */
3632 client_ptr_t device; /* pointer to the device */
3633 @END
3636 /* Retrieve the next pending device irp request */
3637 @REQ(get_next_device_request)
3638 obj_handle_t manager; /* handle to the device manager */
3639 obj_handle_t prev; /* handle to the previous irp */
3640 unsigned int status; /* status of the previous irp */
3641 client_ptr_t user_ptr; /* user pointer of the previous irp */
3642 @REPLY
3643 irp_params_t params; /* irp parameters */
3644 obj_handle_t next; /* handle to the next irp */
3645 thread_id_t client_tid; /* tid of thread calling irp */
3646 client_ptr_t client_thread; /* pointer to thread object of calling irp */
3647 data_size_t in_size; /* total needed input size */
3648 VARARG(next_data,bytes); /* input data of the next irp */
3649 @END
3652 /* Get kernel pointer from server object */
3653 @REQ(get_kernel_object_ptr)
3654 obj_handle_t manager; /* handle to the device manager */
3655 obj_handle_t handle; /* object handle */
3656 @REPLY
3657 client_ptr_t user_ptr; /* kernel object pointer */
3658 @END
3661 /* Associate kernel pointer with server object */
3662 @REQ(set_kernel_object_ptr)
3663 obj_handle_t manager; /* handle to the device manager */
3664 obj_handle_t handle; /* object handle */
3665 client_ptr_t user_ptr; /* kernel object pointer */
3666 @END
3669 /* Grab server object reference from kernel object pointer */
3670 @REQ(grab_kernel_object)
3671 obj_handle_t manager; /* handle to the device manager */
3672 client_ptr_t user_ptr; /* kernel object pointer */
3673 @END
3676 /* Release server object reference from kernel object pointer */
3677 @REQ(release_kernel_object)
3678 obj_handle_t manager; /* handle to the device manager */
3679 client_ptr_t user_ptr; /* kernel object pointer */
3680 @END
3683 /* Get handle from kernel object pointer */
3684 @REQ(get_kernel_object_handle)
3685 obj_handle_t manager; /* handle to the device manager */
3686 client_ptr_t user_ptr; /* kernel object pointer */
3687 unsigned int access; /* wanted access rights */
3688 @REPLY
3689 obj_handle_t handle; /* kernel object handle */
3690 @END
3693 /* Make the current process a system process */
3694 @REQ(make_process_system)
3695 @REPLY
3696 obj_handle_t event; /* event signaled when all user processes have exited */
3697 @END
3700 /* Get detailed fixed-size information about a token */
3701 @REQ(get_token_statistics)
3702 obj_handle_t handle; /* handle to the object */
3703 @REPLY
3704 luid_t token_id; /* locally-unique identifier of the token */
3705 luid_t modified_id; /* locally-unique identifier of the modified version of the token */
3706 int primary; /* is the token primary or impersonation? */
3707 int impersonation_level; /* level of impersonation */
3708 int group_count; /* the number of groups the token is a member of */
3709 int privilege_count; /* the number of privileges the token has */
3710 @END
3713 /* Create I/O completion port */
3714 @REQ(create_completion)
3715 unsigned int access; /* desired access to a port */
3716 unsigned int concurrent; /* max number of concurrent active threads */
3717 VARARG(objattr,object_attributes); /* object attributes */
3718 @REPLY
3719 obj_handle_t handle; /* port handle */
3720 @END
3723 /* Open I/O completion port */
3724 @REQ(open_completion)
3725 unsigned int access; /* desired access to a port */
3726 unsigned int attributes; /* object attributes */
3727 obj_handle_t rootdir; /* root directory */
3728 VARARG(filename,unicode_str); /* port name */
3729 @REPLY
3730 obj_handle_t handle; /* port handle */
3731 @END
3734 /* add completion to completion port */
3735 @REQ(add_completion)
3736 obj_handle_t handle; /* port handle */
3737 apc_param_t ckey; /* completion key */
3738 apc_param_t cvalue; /* completion value */
3739 apc_param_t information; /* IO_STATUS_BLOCK Information */
3740 unsigned int status; /* completion result */
3741 @END
3744 /* get completion from completion port queue */
3745 @REQ(remove_completion)
3746 obj_handle_t handle; /* port handle */
3747 @REPLY
3748 apc_param_t ckey; /* completion key */
3749 apc_param_t cvalue; /* completion value */
3750 apc_param_t information; /* IO_STATUS_BLOCK Information */
3751 unsigned int status; /* completion result */
3752 @END
3755 /* get completion queue depth */
3756 @REQ(query_completion)
3757 obj_handle_t handle; /* port handle */
3758 @REPLY
3759 unsigned int depth; /* completion queue depth */
3760 @END
3763 /* associate object with completion port */
3764 @REQ(set_completion_info)
3765 obj_handle_t handle; /* object handle */
3766 apc_param_t ckey; /* completion key */
3767 obj_handle_t chandle; /* port handle */
3768 @END
3771 /* check for associated completion and push msg */
3772 @REQ(add_fd_completion)
3773 obj_handle_t handle; /* async' object */
3774 apc_param_t cvalue; /* completion value */
3775 apc_param_t information; /* IO_STATUS_BLOCK Information */
3776 unsigned int status; /* completion status */
3777 int async; /* completion is an async result */
3778 @END
3781 /* set fd completion information */
3782 @REQ(set_fd_completion_mode)
3783 obj_handle_t handle; /* handle to a file or directory */
3784 unsigned int flags; /* completion notification flags */
3785 @END
3788 /* set fd disposition information */
3789 @REQ(set_fd_disp_info)
3790 obj_handle_t handle; /* handle to a file or directory */
3791 int unlink; /* whether to unlink file on close */
3792 @END
3795 /* set fd name information */
3796 @REQ(set_fd_name_info)
3797 obj_handle_t handle; /* handle to a file or directory */
3798 obj_handle_t rootdir; /* root directory */
3799 int link; /* link instead of renaming */
3800 VARARG(filename,string); /* new file name */
3801 @END
3804 /* Retrieve layered info for a window */
3805 @REQ(get_window_layered_info)
3806 user_handle_t handle; /* handle to the window */
3807 @REPLY
3808 unsigned int color_key; /* color key */
3809 unsigned int alpha; /* alpha (0..255) */
3810 unsigned int flags; /* LWA_* flags */
3811 @END
3814 /* Set layered info for a window */
3815 @REQ(set_window_layered_info)
3816 user_handle_t handle; /* handle to the window */
3817 unsigned int color_key; /* color key */
3818 unsigned int alpha; /* alpha (0..255) */
3819 unsigned int flags; /* LWA_* flags */
3820 @END
3823 /* Allocate an arbitrary user handle */
3824 @REQ(alloc_user_handle)
3825 @REPLY
3826 user_handle_t handle; /* allocated handle */
3827 @END
3830 /* Free an arbitrary user handle */
3831 @REQ(free_user_handle)
3832 user_handle_t handle; /* handle to free*/
3833 @END
3836 /* Set/get the current cursor */
3837 @REQ(set_cursor)
3838 unsigned int flags; /* flags for fields to set (see below) */
3839 user_handle_t handle; /* handle to the cursor */
3840 int show_count; /* show count increment/decrement */
3841 int x; /* cursor position */
3842 int y;
3843 rectangle_t clip; /* cursor clip rectangle */
3844 unsigned int clip_msg; /* message to post on cursor clip changes */
3845 @REPLY
3846 user_handle_t prev_handle; /* previous handle */
3847 int prev_count; /* previous show count */
3848 int prev_x; /* previous position */
3849 int prev_y;
3850 int new_x; /* new position */
3851 int new_y;
3852 rectangle_t new_clip; /* new clip rectangle */
3853 unsigned int last_change; /* time of last position change */
3854 @END
3855 #define SET_CURSOR_HANDLE 0x01
3856 #define SET_CURSOR_COUNT 0x02
3857 #define SET_CURSOR_POS 0x04
3858 #define SET_CURSOR_CLIP 0x08
3859 #define SET_CURSOR_NOCLIP 0x10
3862 /* Modify the list of registered rawinput devices */
3863 @REQ(update_rawinput_devices)
3864 VARARG(devices,rawinput_devices);
3865 @END
3868 /* Retrieve the suspended context of a thread */
3869 @REQ(get_suspend_context)
3870 @REPLY
3871 VARARG(context,context); /* thread context */
3872 @END
3875 /* Store the suspend context of a thread */
3876 @REQ(set_suspend_context)
3877 VARARG(context,context); /* thread context */
3878 @END
3881 /* Create a new job object */
3882 @REQ(create_job)
3883 unsigned int access; /* wanted access rights */
3884 VARARG(objattr,object_attributes); /* object attributes */
3885 @REPLY
3886 obj_handle_t handle; /* handle to the job */
3887 @END
3890 /* Open a job object */
3891 @REQ(open_job)
3892 unsigned int access; /* wanted access rights */
3893 unsigned int attributes; /* object attributes */
3894 obj_handle_t rootdir; /* root directory */
3895 VARARG(name,unicode_str); /* object name */
3896 @REPLY
3897 obj_handle_t handle; /* handle to the job */
3898 @END
3901 /* Assign a job object to a process */
3902 @REQ(assign_job)
3903 obj_handle_t job; /* handle to the job */
3904 obj_handle_t process; /* handle to the process */
3905 @END
3908 /* Check if a process is associated with a job */
3909 @REQ(process_in_job)
3910 obj_handle_t job; /* handle to the job */
3911 obj_handle_t process; /* handle to the process */
3912 @END
3915 /* Set limit flags on a job */
3916 @REQ(set_job_limits)
3917 obj_handle_t handle; /* handle to the job */
3918 unsigned int limit_flags; /* new limit flags */
3919 @END
3922 /* Set new completion port for a job */
3923 @REQ(set_job_completion_port)
3924 obj_handle_t job; /* handle to the job */
3925 obj_handle_t port; /* handle to the completion port */
3926 client_ptr_t key; /* key to send with completion messages */
3927 @END
3930 /* Terminate all processes associated with the job */
3931 @REQ(terminate_job)
3932 obj_handle_t handle; /* handle to the job */
3933 int status; /* process exit code */
3934 @END
3937 /* Suspend a process */
3938 @REQ(suspend_process)
3939 obj_handle_t handle; /* process handle */
3940 @END
3943 /* Resume a process */
3944 @REQ(resume_process)
3945 obj_handle_t handle; /* process handle */
3946 @END