mshtml: Pass listener type as a string to remove_event_listener.
[wine.git] / server / protocol.def
bloba3f46409f81b2b4fca1f113b264acfa8e6f4d6b1
1 /* -*- C -*-
3 * Wine server protocol definition
5 * Copyright (C) 2001 Alexandre Julliard
7 * This file is used by tools/make_requests to build the
8 * protocol structures in include/wine/server_protocol.h
10 * This library is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU Lesser General Public
12 * License as published by the Free Software Foundation; either
13 * version 2.1 of the License, or (at your option) any later version.
15 * This library is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * Lesser General Public License for more details.
20 * You should have received a copy of the GNU Lesser General Public
21 * License along with this library; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
25 @HEADER /* start of C declarations */
27 #include <stdarg.h>
28 #include <stdlib.h>
29 #include <time.h>
31 #include <windef.h>
32 #include <winbase.h>
34 typedef unsigned int obj_handle_t;
35 typedef unsigned int user_handle_t;
36 typedef unsigned int atom_t;
37 typedef unsigned int process_id_t;
38 typedef unsigned int thread_id_t;
39 typedef unsigned int data_size_t;
40 typedef unsigned int ioctl_code_t;
41 typedef unsigned __int64 lparam_t;
42 typedef unsigned __int64 apc_param_t;
43 typedef unsigned __int64 mem_size_t;
44 typedef unsigned __int64 file_pos_t;
45 typedef unsigned __int64 client_ptr_t;
46 typedef unsigned __int64 affinity_t;
47 typedef client_ptr_t mod_handle_t;
49 struct request_header
51 int req; /* request code */
52 data_size_t request_size; /* request variable part size */
53 data_size_t reply_size; /* reply variable part maximum size */
56 struct reply_header
58 unsigned int error; /* error result */
59 data_size_t reply_size; /* reply variable part size */
62 /* placeholder structure for the maximum allowed request size */
63 /* this is used to construct the generic_request union */
64 struct request_max_size
66 int pad[16]; /* the max request size is 16 ints */
69 #define FIRST_USER_HANDLE 0x0020 /* first possible value for low word of user handle */
70 #define LAST_USER_HANDLE 0xffef /* last possible value for low word of user handle */
73 /* debug event data */
74 typedef union
76 int code; /* event code */
77 struct
79 int code; /* EXCEPTION_DEBUG_EVENT */
80 int first; /* first chance exception? */
81 unsigned int exc_code; /* exception code */
82 unsigned int flags; /* exception flags */
83 client_ptr_t record; /* exception record */
84 client_ptr_t address; /* exception address */
85 int nb_params; /* number of parameters */
86 int __pad;
87 client_ptr_t params[15]; /* parameters */
88 } exception;
89 struct
91 int code; /* CREATE_THREAD_DEBUG_EVENT */
92 obj_handle_t handle; /* handle to the new thread */
93 client_ptr_t teb; /* thread teb (in debugged process address space) */
94 client_ptr_t start; /* thread startup routine */
95 } create_thread;
96 struct
98 int code; /* CREATE_PROCESS_DEBUG_EVENT */
99 obj_handle_t file; /* handle to the process exe file */
100 obj_handle_t process; /* handle to the new process */
101 obj_handle_t thread; /* handle to the new thread */
102 mod_handle_t base; /* base of executable image */
103 int dbg_offset; /* offset of debug info in file */
104 int dbg_size; /* size of debug info */
105 client_ptr_t teb; /* thread teb (in debugged process address space) */
106 client_ptr_t start; /* thread startup routine */
107 client_ptr_t name; /* image name (optional) */
108 int unicode; /* is it Unicode? */
109 } create_process;
110 struct
112 int code; /* EXIT_THREAD_DEBUG_EVENT/EXIT_PROCESS_DEBUG_EVENT */
113 int exit_code; /* thread or process exit code */
114 } exit;
115 struct
117 int code; /* LOAD_DLL_DEBUG_EVENT */
118 obj_handle_t handle; /* file handle for the dll */
119 mod_handle_t base; /* base address of the dll */
120 int dbg_offset; /* offset of debug info in file */
121 int dbg_size; /* size of debug info */
122 client_ptr_t name; /* image name (optional) */
123 int unicode; /* is it Unicode? */
124 } load_dll;
125 struct
127 int code; /* UNLOAD_DLL_DEBUG_EVENT */
128 int __pad;
129 mod_handle_t base; /* base address of the dll */
130 } unload_dll;
131 } debug_event_t;
133 /* supported CPU types */
134 enum cpu_type
136 CPU_x86, CPU_x86_64, CPU_POWERPC, CPU_ARM, CPU_ARM64
138 typedef int cpu_type_t;
140 /* context data */
141 typedef struct
143 cpu_type_t cpu; /* cpu type */
144 unsigned int flags; /* SERVER_CTX_* flags */
145 union
147 struct { unsigned int eip, ebp, esp, eflags, cs, ss; } i386_regs;
148 struct { unsigned __int64 rip, rbp, rsp;
149 unsigned int cs, ss, flags, __pad; } x86_64_regs;
150 struct { unsigned int iar, msr, ctr, lr, dar, dsisr, trap, __pad; } powerpc_regs;
151 struct { unsigned int sp, lr, pc, cpsr; } arm_regs;
152 struct { unsigned __int64 sp, pc, pstate; } arm64_regs;
153 } ctl; /* selected by SERVER_CTX_CONTROL */
154 union
156 struct { unsigned int eax, ebx, ecx, edx, esi, edi; } i386_regs;
157 struct { unsigned __int64 rax,rbx, rcx, rdx, rsi, rdi,
158 r8, r9, r10, r11, r12, r13, r14, r15; } x86_64_regs;
159 struct { unsigned int gpr[32], cr, xer; } powerpc_regs;
160 struct { unsigned int r[13]; } arm_regs;
161 struct { unsigned __int64 x[31]; } arm64_regs;
162 } integer; /* selected by SERVER_CTX_INTEGER */
163 union
165 struct { unsigned int ds, es, fs, gs; } i386_regs;
166 struct { unsigned int ds, es, fs, gs; } x86_64_regs;
167 } seg; /* selected by SERVER_CTX_SEGMENTS */
168 union
170 struct { unsigned int ctrl, status, tag, err_off, err_sel, data_off, data_sel, cr0npx;
171 unsigned char regs[80]; } i386_regs;
172 struct { struct { unsigned __int64 low, high; } fpregs[32]; } x86_64_regs;
173 struct { double fpr[32], fpscr; } powerpc_regs;
174 } fp; /* selected by SERVER_CTX_FLOATING_POINT */
175 union
177 struct { unsigned int dr0, dr1, dr2, dr3, dr6, dr7; } i386_regs;
178 struct { unsigned __int64 dr0, dr1, dr2, dr3, dr6, dr7; } x86_64_regs;
179 struct { unsigned int dr[8]; } powerpc_regs;
180 } debug; /* selected by SERVER_CTX_DEBUG_REGISTERS */
181 union
183 unsigned char i386_regs[512];
184 } ext; /* selected by SERVER_CTX_EXTENDED_REGISTERS */
185 } context_t;
187 #define SERVER_CTX_CONTROL 0x01
188 #define SERVER_CTX_INTEGER 0x02
189 #define SERVER_CTX_SEGMENTS 0x04
190 #define SERVER_CTX_FLOATING_POINT 0x08
191 #define SERVER_CTX_DEBUG_REGISTERS 0x10
192 #define SERVER_CTX_EXTENDED_REGISTERS 0x20
194 /* structure used in sending an fd from client to server */
195 struct send_fd
197 thread_id_t tid; /* thread id */
198 int fd; /* file descriptor on client-side */
201 /* structure sent by the server on the wait fifo */
202 struct wake_up_reply
204 client_ptr_t cookie; /* magic cookie that was passed in select_request */
205 int signaled; /* wait result */
206 int __pad;
209 /* NT-style timeout, in 100ns units, negative means relative timeout */
210 typedef __int64 timeout_t;
211 #define TIMEOUT_INFINITE (((timeout_t)0x7fffffff) << 32 | 0xffffffff)
213 /* structure for process startup info */
214 typedef struct
216 unsigned int debug_flags;
217 unsigned int console_flags;
218 obj_handle_t console;
219 obj_handle_t hstdin;
220 obj_handle_t hstdout;
221 obj_handle_t hstderr;
222 unsigned int x;
223 unsigned int y;
224 unsigned int xsize;
225 unsigned int ysize;
226 unsigned int xchars;
227 unsigned int ychars;
228 unsigned int attribute;
229 unsigned int flags;
230 unsigned int show;
231 data_size_t curdir_len;
232 data_size_t dllpath_len;
233 data_size_t imagepath_len;
234 data_size_t cmdline_len;
235 data_size_t title_len;
236 data_size_t desktop_len;
237 data_size_t shellinfo_len;
238 data_size_t runtime_len;
239 /* VARARG(curdir,unicode_str,curdir_len); */
240 /* VARARG(dllpath,unicode_str,dllpath_len); */
241 /* VARARG(imagepath,unicode_str,imagepath_len); */
242 /* VARARG(cmdline,unicode_str,cmdline_len); */
243 /* VARARG(title,unicode_str,title_len); */
244 /* VARARG(desktop,unicode_str,desktop_len); */
245 /* VARARG(shellinfo,unicode_str,shellinfo_len); */
246 /* VARARG(runtime,unicode_str,runtime_len); */
247 } startup_info_t;
249 /* structure returned in the list of window properties */
250 typedef struct
252 atom_t atom; /* property atom */
253 int string; /* was atom a string originally? */
254 lparam_t data; /* data stored in property */
255 } property_data_t;
257 /* structure to specify window rectangles */
258 typedef struct
260 int left;
261 int top;
262 int right;
263 int bottom;
264 } rectangle_t;
266 /* structure for parameters of async I/O calls */
267 typedef struct
269 obj_handle_t handle; /* object to perform I/O on */
270 obj_handle_t event; /* event to signal when done */
271 client_ptr_t iosb; /* I/O status block in client addr space */
272 client_ptr_t user; /* opaque user data containing callback pointer and async-specific data */
273 client_ptr_t apc; /* user APC to call */
274 apc_param_t apc_context; /* user APC context or completion value */
275 } async_data_t;
277 /* structures for extra message data */
279 struct hardware_msg_data
281 lparam_t info; /* extra info */
282 unsigned int hw_id; /* unique id */
283 unsigned int flags; /* hook flags */
284 union
286 int type;
287 struct
289 int type; /* RIM_TYPEKEYBOARD */
290 unsigned int message; /* message generated by this rawinput event */
291 unsigned short vkey; /* virtual key code */
292 unsigned short scan; /* scan code */
293 } kbd;
294 struct
296 int type; /* RIM_TYPEMOUSE */
297 int x; /* x coordinate */
298 int y; /* y coordinate */
299 unsigned int data; /* mouse data */
300 } mouse;
301 } rawinput;
304 struct callback_msg_data
306 client_ptr_t callback; /* callback function */
307 lparam_t data; /* user data for callback */
308 lparam_t result; /* message result */
311 struct winevent_msg_data
313 user_handle_t hook; /* hook handle */
314 thread_id_t tid; /* thread id */
315 client_ptr_t hook_proc; /* hook proc address */
316 /* followed by module name if any */
319 typedef union
321 int type;
322 struct
324 int type; /* INPUT_KEYBOARD */
325 unsigned short vkey; /* virtual key code */
326 unsigned short scan; /* scan code */
327 unsigned int flags; /* event flags */
328 unsigned int time; /* event time */
329 lparam_t info; /* extra info */
330 } kbd;
331 struct
333 int type; /* INPUT_MOUSE */
334 int x; /* coordinates */
335 int y;
336 unsigned int data; /* mouse data */
337 unsigned int flags; /* event flags */
338 unsigned int time; /* event time */
339 lparam_t info; /* extra info */
340 } mouse;
341 struct
343 int type; /* INPUT_HARDWARE */
344 unsigned int msg; /* message code */
345 lparam_t lparam; /* message param */
346 } hw;
347 } hw_input_t;
349 typedef union
351 unsigned char bytes[1]; /* raw data for sent messages */
352 struct hardware_msg_data hardware;
353 struct callback_msg_data callback;
354 struct winevent_msg_data winevent;
355 } message_data_t;
357 /* structure for console char/attribute info */
358 typedef struct
360 WCHAR ch;
361 unsigned short attr;
362 } char_info_t;
364 /* structure returned in filesystem events */
365 struct filesystem_event
367 int action;
368 data_size_t len;
369 char name[1];
372 typedef struct
374 unsigned int low_part;
375 int high_part;
376 } luid_t;
378 #define MAX_ACL_LEN 65535
380 struct security_descriptor
382 unsigned int control; /* SE_ flags */
383 data_size_t owner_len;
384 data_size_t group_len;
385 data_size_t sacl_len;
386 data_size_t dacl_len;
387 /* VARARG(owner,SID); */
388 /* VARARG(group,SID); */
389 /* VARARG(sacl,ACL); */
390 /* VARARG(dacl,ACL); */
393 struct object_attributes
395 obj_handle_t rootdir; /* root directory */
396 unsigned int attributes; /* object attributes */
397 data_size_t sd_len; /* length of security_descriptor data. may be 0 */
398 data_size_t name_len; /* length of the name string. may be 0 */
399 /* VARARG(sd,security_descriptor); */
400 /* VARARG(name,unicode_str); */
403 struct token_groups
405 unsigned int count;
406 /* unsigned int attributes[count]; */
407 /* VARARG(sids,SID); */
410 enum select_op
412 SELECT_NONE,
413 SELECT_WAIT,
414 SELECT_WAIT_ALL,
415 SELECT_SIGNAL_AND_WAIT,
416 SELECT_KEYED_EVENT_WAIT,
417 SELECT_KEYED_EVENT_RELEASE
420 typedef union
422 enum select_op op;
423 struct
425 enum select_op op; /* SELECT_WAIT or SELECT_WAIT_ALL */
426 obj_handle_t handles[MAXIMUM_WAIT_OBJECTS];
427 } wait;
428 struct
430 enum select_op op; /* SELECT_SIGNAL_AND_WAIT */
431 obj_handle_t wait;
432 obj_handle_t signal; /* must be last in the structure so we can remove it on retries */
433 } signal_and_wait;
434 struct
436 enum select_op op; /* SELECT_KEYED_EVENT_WAIT or SELECT_KEYED_EVENT_RELEASE */
437 obj_handle_t handle;
438 client_ptr_t key;
439 } keyed_event;
440 } select_op_t;
442 enum apc_type
444 APC_NONE,
445 APC_USER,
446 APC_TIMER,
447 APC_ASYNC_IO,
448 APC_VIRTUAL_ALLOC,
449 APC_VIRTUAL_FREE,
450 APC_VIRTUAL_QUERY,
451 APC_VIRTUAL_PROTECT,
452 APC_VIRTUAL_FLUSH,
453 APC_VIRTUAL_LOCK,
454 APC_VIRTUAL_UNLOCK,
455 APC_MAP_VIEW,
456 APC_UNMAP_VIEW,
457 APC_CREATE_THREAD
460 typedef union
462 enum apc_type type;
463 struct
465 enum apc_type type; /* APC_USER */
466 int __pad;
467 client_ptr_t func; /* void (__stdcall *func)(ULONG_PTR,ULONG_PTR,ULONG_PTR); */
468 apc_param_t args[3]; /* arguments for user function */
469 } user;
470 struct
472 enum apc_type type; /* APC_TIMER */
473 int __pad;
474 client_ptr_t func; /* void (__stdcall *func)(void*, unsigned int, unsigned int); */
475 timeout_t time; /* absolute time of expiration */
476 client_ptr_t arg; /* user argument */
477 } timer;
478 struct
480 enum apc_type type; /* APC_ASYNC_IO */
481 unsigned int status; /* I/O status */
482 client_ptr_t user; /* user pointer */
483 client_ptr_t sb; /* status block */
484 } async_io;
485 struct
487 enum apc_type type; /* APC_VIRTUAL_ALLOC */
488 unsigned int op_type; /* type of operation */
489 client_ptr_t addr; /* requested address */
490 mem_size_t size; /* allocation size */
491 unsigned int zero_bits; /* allocation alignment */
492 unsigned int prot; /* memory protection flags */
493 } virtual_alloc;
494 struct
496 enum apc_type type; /* APC_VIRTUAL_FREE */
497 unsigned int op_type; /* type of operation */
498 client_ptr_t addr; /* requested address */
499 mem_size_t size; /* allocation size */
500 } virtual_free;
501 struct
503 enum apc_type type; /* APC_VIRTUAL_QUERY */
504 int __pad;
505 client_ptr_t addr; /* requested address */
506 } virtual_query;
507 struct
509 enum apc_type type; /* APC_VIRTUAL_PROTECT */
510 unsigned int prot; /* new protection flags */
511 client_ptr_t addr; /* requested address */
512 mem_size_t size; /* requested size */
513 } virtual_protect;
514 struct
516 enum apc_type type; /* APC_VIRTUAL_FLUSH */
517 int __pad;
518 client_ptr_t addr; /* requested address */
519 mem_size_t size; /* requested size */
520 } virtual_flush;
521 struct
523 enum apc_type type; /* APC_VIRTUAL_LOCK */
524 int __pad;
525 client_ptr_t addr; /* requested address */
526 mem_size_t size; /* requested size */
527 } virtual_lock;
528 struct
530 enum apc_type type; /* APC_VIRTUAL_UNLOCK */
531 int __pad;
532 client_ptr_t addr; /* requested address */
533 mem_size_t size; /* requested size */
534 } virtual_unlock;
535 struct
537 enum apc_type type; /* APC_MAP_VIEW */
538 obj_handle_t handle; /* mapping handle */
539 client_ptr_t addr; /* requested address */
540 mem_size_t size; /* allocation size */
541 file_pos_t offset; /* file offset */
542 unsigned int alloc_type;/* allocation type */
543 unsigned short zero_bits; /* allocation alignment */
544 unsigned short prot; /* memory protection flags */
545 } map_view;
546 struct
548 enum apc_type type; /* APC_UNMAP_VIEW */
549 int __pad;
550 client_ptr_t addr; /* view address */
551 } unmap_view;
552 struct
554 enum apc_type type; /* APC_CREATE_THREAD */
555 int suspend; /* suspended thread? */
556 client_ptr_t func; /* void (__stdcall *func)(void*); start function */
557 client_ptr_t arg; /* argument for start function */
558 mem_size_t reserve; /* reserve size for thread stack */
559 mem_size_t commit; /* commit size for thread stack */
560 } create_thread;
561 } apc_call_t;
563 typedef union
565 enum apc_type type;
566 struct
568 enum apc_type type; /* APC_ASYNC_IO */
569 unsigned int status; /* new status of async operation */
570 unsigned int total; /* bytes transferred */
571 } async_io;
572 struct
574 enum apc_type type; /* APC_VIRTUAL_ALLOC */
575 unsigned int status; /* status returned by call */
576 client_ptr_t addr; /* resulting address */
577 mem_size_t size; /* resulting size */
578 } virtual_alloc;
579 struct
581 enum apc_type type; /* APC_VIRTUAL_FREE */
582 unsigned int status; /* status returned by call */
583 client_ptr_t addr; /* resulting address */
584 mem_size_t size; /* resulting size */
585 } virtual_free;
586 struct
588 enum apc_type type; /* APC_VIRTUAL_QUERY */
589 unsigned int status; /* status returned by call */
590 client_ptr_t base; /* resulting base address */
591 client_ptr_t alloc_base;/* resulting allocation base */
592 mem_size_t size; /* resulting region size */
593 unsigned short state; /* resulting region state */
594 unsigned short prot; /* resulting region protection */
595 unsigned short alloc_prot;/* resulting allocation protection */
596 unsigned short alloc_type;/* resulting region allocation type */
597 } virtual_query;
598 struct
600 enum apc_type type; /* APC_VIRTUAL_PROTECT */
601 unsigned int status; /* status returned by call */
602 client_ptr_t addr; /* resulting address */
603 mem_size_t size; /* resulting size */
604 unsigned int prot; /* old protection flags */
605 } virtual_protect;
606 struct
608 enum apc_type type; /* APC_VIRTUAL_FLUSH */
609 unsigned int status; /* status returned by call */
610 client_ptr_t addr; /* resulting address */
611 mem_size_t size; /* resulting size */
612 } virtual_flush;
613 struct
615 enum apc_type type; /* APC_VIRTUAL_LOCK */
616 unsigned int status; /* status returned by call */
617 client_ptr_t addr; /* resulting address */
618 mem_size_t size; /* resulting size */
619 } virtual_lock;
620 struct
622 enum apc_type type; /* APC_VIRTUAL_UNLOCK */
623 unsigned int status; /* status returned by call */
624 client_ptr_t addr; /* resulting address */
625 mem_size_t size; /* resulting size */
626 } virtual_unlock;
627 struct
629 enum apc_type type; /* APC_MAP_VIEW */
630 unsigned int status; /* status returned by call */
631 client_ptr_t addr; /* resulting address */
632 mem_size_t size; /* resulting size */
633 } map_view;
634 struct
636 enum apc_type type; /* APC_MAP_VIEW */
637 unsigned int status; /* status returned by call */
638 } unmap_view;
639 struct
641 enum apc_type type; /* APC_CREATE_THREAD */
642 unsigned int status; /* status returned by call */
643 thread_id_t tid; /* thread id */
644 obj_handle_t handle; /* handle to new thread */
645 } create_thread;
646 } apc_result_t;
648 typedef union
650 unsigned int major; /* irp major function */
651 struct
653 unsigned int major; /* IRP_MJ_CREATE */
654 unsigned int access; /* access rights */
655 unsigned int sharing; /* sharing flags */
656 unsigned int options; /* file options */
657 client_ptr_t device; /* opaque ptr for the device */
658 } create;
659 struct
661 unsigned int major; /* IRP_MJ_CLOSE */
662 int __pad;
663 client_ptr_t file; /* opaque ptr for the file object */
664 } close;
665 struct
667 unsigned int major; /* IRP_MJ_READ */
668 unsigned int key; /* driver key */
669 client_ptr_t file; /* opaque ptr for the file object */
670 file_pos_t pos; /* file position */
671 } read;
672 struct
674 unsigned int major; /* IRP_MJ_WRITE */
675 unsigned int key; /* driver key */
676 client_ptr_t file; /* opaque ptr for the file object */
677 file_pos_t pos; /* file position */
678 } write;
679 struct
681 unsigned int major; /* IRP_MJ_FLUSH_BUFFERS */
682 int __pad;
683 client_ptr_t file; /* opaque ptr for the file object */
684 } flush;
685 struct
687 unsigned int major; /* IRP_MJ_DEVICE_CONTROL */
688 ioctl_code_t code; /* ioctl code */
689 client_ptr_t file; /* opaque ptr for the file object */
690 } ioctl;
691 } irp_params_t;
693 /* information about a PE image mapping, roughly equivalent to SECTION_IMAGE_INFORMATION */
694 typedef struct
696 client_ptr_t base;
697 client_ptr_t entry_point;
698 mem_size_t map_size;
699 mem_size_t stack_size;
700 mem_size_t stack_commit;
701 unsigned int zerobits;
702 unsigned int subsystem;
703 unsigned short subsystem_low;
704 unsigned short subsystem_high;
705 unsigned int gp;
706 unsigned short image_charact;
707 unsigned short dll_charact;
708 unsigned short machine;
709 unsigned char contains_code;
710 unsigned char image_flags;
711 unsigned int loader_flags;
712 unsigned int header_size;
713 unsigned int file_size;
714 unsigned int checksum;
715 } pe_image_info_t;
717 struct rawinput_device
719 unsigned short usage_page;
720 unsigned short usage;
721 unsigned int flags;
722 user_handle_t target;
725 /****************************************************************/
726 /* Request declarations */
728 /* Create a new process from the context of the parent */
729 @REQ(new_process)
730 int inherit_all; /* inherit all handles from parent */
731 unsigned int create_flags; /* creation flags */
732 int socket_fd; /* file descriptor for process socket */
733 obj_handle_t exe_file; /* file handle for main exe */
734 unsigned int process_access; /* access rights for process object */
735 unsigned int process_attr; /* attributes for process object */
736 unsigned int thread_access; /* access rights for thread object */
737 unsigned int thread_attr; /* attributes for thread object */
738 cpu_type_t cpu; /* CPU that the new process will use */
739 data_size_t info_size; /* size of startup info */
740 VARARG(info,startup_info,info_size); /* startup information */
741 VARARG(env,unicode_str); /* environment for new process */
742 @REPLY
743 obj_handle_t info; /* new process info handle */
744 process_id_t pid; /* process id */
745 obj_handle_t phandle; /* process handle (in the current process) */
746 thread_id_t tid; /* thread id */
747 obj_handle_t thandle; /* thread handle (in the current process) */
748 @END
751 /* Retrieve information about a newly started process */
752 @REQ(get_new_process_info)
753 obj_handle_t info; /* info handle returned from new_process_request */
754 @REPLY
755 int success; /* did the process start successfully? */
756 int exit_code; /* process exit code if failed */
757 @END
760 /* Create a new thread from the context of the parent */
761 @REQ(new_thread)
762 unsigned int access; /* wanted access rights */
763 unsigned int attributes; /* object attributes */
764 int suspend; /* new thread should be suspended on creation */
765 int request_fd; /* fd for request pipe */
766 @REPLY
767 thread_id_t tid; /* thread id */
768 obj_handle_t handle; /* thread handle (in the current process) */
769 @END
772 /* Retrieve the new process startup info */
773 @REQ(get_startup_info)
774 @REPLY
775 obj_handle_t exe_file; /* file handle for main exe */
776 data_size_t info_size; /* size of startup info */
777 VARARG(info,startup_info,info_size); /* startup information */
778 VARARG(env,unicode_str); /* environment */
779 @END
782 /* Signal the end of the process initialization */
783 @REQ(init_process_done)
784 int gui; /* is it a GUI process? */
785 mod_handle_t module; /* main module base address */
786 client_ptr_t ldt_copy; /* address of LDT copy (in thread address space) */
787 client_ptr_t entry; /* process entry point */
788 @REPLY
789 int suspend; /* is process suspended? */
790 @END
793 /* Initialize a thread; called from the child after fork()/clone() */
794 @REQ(init_thread)
795 int unix_pid; /* Unix pid of new thread */
796 int unix_tid; /* Unix tid of new thread */
797 int debug_level; /* new debug level */
798 client_ptr_t teb; /* TEB of new thread (in thread address space) */
799 client_ptr_t entry; /* entry point or PEB if initial thread (in thread address space) */
800 int reply_fd; /* fd for reply pipe */
801 int wait_fd; /* fd for blocking calls pipe */
802 cpu_type_t cpu; /* CPU that this thread is running on */
803 @REPLY
804 process_id_t pid; /* process id of the new thread's process */
805 thread_id_t tid; /* thread id of the new thread */
806 timeout_t server_start; /* server start time */
807 data_size_t info_size; /* total size of startup info */
808 int version; /* protocol version */
809 unsigned int all_cpus; /* bitset of supported CPUs */
810 int suspend; /* is thread suspended? */
811 @END
814 /* Terminate a process */
815 @REQ(terminate_process)
816 obj_handle_t handle; /* process handle to terminate */
817 int exit_code; /* process exit code */
818 @REPLY
819 int self; /* suicide? */
820 @END
823 /* Terminate a thread */
824 @REQ(terminate_thread)
825 obj_handle_t handle; /* thread handle to terminate */
826 int exit_code; /* thread exit code */
827 @REPLY
828 int self; /* suicide? */
829 int last; /* last thread in this process? */
830 @END
833 /* Retrieve information about a process */
834 @REQ(get_process_info)
835 obj_handle_t handle; /* process handle */
836 @REPLY
837 process_id_t pid; /* server process id */
838 process_id_t ppid; /* server process id of parent */
839 affinity_t affinity; /* process affinity mask */
840 client_ptr_t peb; /* PEB address in process address space */
841 timeout_t start_time; /* process start time */
842 timeout_t end_time; /* process end time */
843 int exit_code; /* process exit code */
844 int priority; /* priority class */
845 cpu_type_t cpu; /* CPU that this process is running on */
846 short int debugger_present; /* process is being debugged */
847 short int debug_children; /* inherit debugger to child processes */
848 @END
851 /* Retrieve information about a process memory usage */
852 @REQ(get_process_vm_counters)
853 obj_handle_t handle; /* process handle */
854 @REPLY
855 mem_size_t peak_virtual_size; /* peak virtual memory in bytes */
856 mem_size_t virtual_size; /* virtual memory in bytes */
857 mem_size_t peak_working_set_size; /* peak real memory in bytes */
858 mem_size_t working_set_size; /* real memory in bytes */
859 mem_size_t pagefile_usage; /* commit charge in bytes */
860 mem_size_t peak_pagefile_usage; /* peak commit charge in bytes */
861 @END
864 /* Set a process information */
865 @REQ(set_process_info)
866 obj_handle_t handle; /* process handle */
867 int mask; /* setting mask (see below) */
868 int priority; /* priority class */
869 affinity_t affinity; /* affinity mask */
870 @END
871 #define SET_PROCESS_INFO_PRIORITY 0x01
872 #define SET_PROCESS_INFO_AFFINITY 0x02
875 /* Retrieve information about a thread */
876 @REQ(get_thread_info)
877 obj_handle_t handle; /* thread handle */
878 thread_id_t tid_in; /* thread id (optional) */
879 @REPLY
880 process_id_t pid; /* server process id */
881 thread_id_t tid; /* server thread id */
882 client_ptr_t teb; /* thread teb pointer */
883 client_ptr_t entry_point; /* thread entry point */
884 affinity_t affinity; /* thread affinity mask */
885 int exit_code; /* thread exit code */
886 int priority; /* thread priority level */
887 int last; /* last thread in process */
888 @END
891 /* Retrieve information about thread times */
892 @REQ(get_thread_times)
893 obj_handle_t handle; /* thread handle */
894 @REPLY
895 timeout_t creation_time; /* thread creation time */
896 timeout_t exit_time; /* thread exit time */
897 @END
900 /* Set a thread information */
901 @REQ(set_thread_info)
902 obj_handle_t handle; /* thread handle */
903 int mask; /* setting mask (see below) */
904 int priority; /* priority class */
905 affinity_t affinity; /* affinity mask */
906 client_ptr_t entry_point; /* thread entry point */
907 obj_handle_t token; /* impersonation token */
908 @END
909 #define SET_THREAD_INFO_PRIORITY 0x01
910 #define SET_THREAD_INFO_AFFINITY 0x02
911 #define SET_THREAD_INFO_TOKEN 0x04
912 #define SET_THREAD_INFO_ENTRYPOINT 0x08
915 /* Retrieve information about a module */
916 @REQ(get_dll_info)
917 obj_handle_t handle; /* process handle */
918 mod_handle_t base_address; /* base address of module */
919 @REPLY
920 client_ptr_t entry_point;
921 data_size_t filename_len; /* buffer len in bytes required to store filename */
922 VARARG(filename,unicode_str); /* file name of module */
923 @END
926 /* Suspend a thread */
927 @REQ(suspend_thread)
928 obj_handle_t handle; /* thread handle */
929 @REPLY
930 int count; /* new suspend count */
931 @END
934 /* Resume a thread */
935 @REQ(resume_thread)
936 obj_handle_t handle; /* thread handle */
937 @REPLY
938 int count; /* new suspend count */
939 @END
942 /* Notify the server that a dll has been loaded */
943 @REQ(load_dll)
944 data_size_t dbg_offset; /* debug info offset */
945 mod_handle_t base; /* base address */
946 client_ptr_t name; /* ptr to ptr to name (in process addr space) */
947 data_size_t dbg_size; /* debug info size */
948 VARARG(filename,unicode_str); /* file name of dll */
949 @END
952 /* Notify the server that a dll is being unloaded */
953 @REQ(unload_dll)
954 mod_handle_t base; /* base address */
955 @END
958 /* Queue an APC for a thread or process */
959 @REQ(queue_apc)
960 obj_handle_t handle; /* thread or process handle */
961 apc_call_t call; /* call arguments */
962 @REPLY
963 obj_handle_t handle; /* APC handle */
964 int self; /* run APC in caller itself? */
965 @END
968 /* Get the result of an APC call */
969 @REQ(get_apc_result)
970 obj_handle_t handle; /* handle to the APC */
971 @REPLY
972 apc_result_t result; /* result of the APC */
973 @END
976 /* Close a handle for the current process */
977 @REQ(close_handle)
978 obj_handle_t handle; /* handle to close */
979 @END
982 /* Set a handle information */
983 @REQ(set_handle_info)
984 obj_handle_t handle; /* handle we are interested in */
985 int flags; /* new handle flags */
986 int mask; /* mask for flags to set */
987 @REPLY
988 int old_flags; /* old flag value */
989 @END
992 /* Duplicate a handle */
993 @REQ(dup_handle)
994 obj_handle_t src_process; /* src process handle */
995 obj_handle_t src_handle; /* src handle to duplicate */
996 obj_handle_t dst_process; /* dst process handle */
997 unsigned int access; /* wanted access rights */
998 unsigned int attributes; /* object attributes */
999 unsigned int options; /* duplicate options (see below) */
1000 @REPLY
1001 obj_handle_t handle; /* duplicated handle in dst process */
1002 int self; /* is the source the current process? */
1003 int closed; /* whether the source handle has been closed */
1004 @END
1005 #define DUP_HANDLE_CLOSE_SOURCE DUPLICATE_CLOSE_SOURCE
1006 #define DUP_HANDLE_SAME_ACCESS DUPLICATE_SAME_ACCESS
1007 #define DUP_HANDLE_MAKE_GLOBAL 0x80000000 /* Not a Windows flag */
1010 /* Open a handle to a process */
1011 @REQ(open_process)
1012 process_id_t pid; /* process id to open */
1013 unsigned int access; /* wanted access rights */
1014 unsigned int attributes; /* object attributes */
1015 @REPLY
1016 obj_handle_t handle; /* handle to the process */
1017 @END
1020 /* Open a handle to a thread */
1021 @REQ(open_thread)
1022 thread_id_t tid; /* thread id to open */
1023 unsigned int access; /* wanted access rights */
1024 unsigned int attributes; /* object attributes */
1025 @REPLY
1026 obj_handle_t handle; /* handle to the thread */
1027 @END
1030 /* Wait for handles */
1031 @REQ(select)
1032 int flags; /* wait flags (see below) */
1033 client_ptr_t cookie; /* magic cookie to return to client */
1034 timeout_t timeout; /* timeout */
1035 obj_handle_t prev_apc; /* handle to previous APC */
1036 VARARG(result,apc_result); /* result of previous APC */
1037 VARARG(data,select_op); /* operation-specific data */
1038 @REPLY
1039 timeout_t timeout; /* timeout converted to absolute */
1040 apc_call_t call; /* APC call arguments */
1041 obj_handle_t apc_handle; /* handle to next APC */
1042 @END
1043 #define SELECT_ALERTABLE 1
1044 #define SELECT_INTERRUPTIBLE 2
1047 /* Create an event */
1048 @REQ(create_event)
1049 unsigned int access; /* wanted access rights */
1050 int manual_reset; /* manual reset event */
1051 int initial_state; /* initial state of the event */
1052 VARARG(objattr,object_attributes); /* object attributes */
1053 @REPLY
1054 obj_handle_t handle; /* handle to the event */
1055 @END
1057 /* Event operation */
1058 @REQ(event_op)
1059 obj_handle_t handle; /* handle to event */
1060 int op; /* event operation (see below) */
1061 @END
1062 enum event_op { PULSE_EVENT, SET_EVENT, RESET_EVENT };
1064 @REQ(query_event)
1065 obj_handle_t handle; /* handle to event */
1066 @REPLY
1067 int manual_reset; /* manual reset event */
1068 int state; /* current state of the event */
1069 @END
1071 /* Open an event */
1072 @REQ(open_event)
1073 unsigned int access; /* wanted access rights */
1074 unsigned int attributes; /* object attributes */
1075 obj_handle_t rootdir; /* root directory */
1076 VARARG(name,unicode_str); /* object name */
1077 @REPLY
1078 obj_handle_t handle; /* handle to the event */
1079 @END
1082 /* Create a keyed event */
1083 @REQ(create_keyed_event)
1084 unsigned int access; /* wanted access rights */
1085 VARARG(objattr,object_attributes); /* object attributes */
1086 @REPLY
1087 obj_handle_t handle; /* handle to the event */
1088 @END
1090 /* Open a keyed event */
1091 @REQ(open_keyed_event)
1092 unsigned int access; /* wanted access rights */
1093 unsigned int attributes; /* object attributes */
1094 obj_handle_t rootdir; /* root directory */
1095 VARARG(name,unicode_str); /* object name */
1096 @REPLY
1097 obj_handle_t handle; /* handle to the event */
1098 @END
1101 /* Create a mutex */
1102 @REQ(create_mutex)
1103 unsigned int access; /* wanted access rights */
1104 int owned; /* initially owned? */
1105 VARARG(objattr,object_attributes); /* object attributes */
1106 @REPLY
1107 obj_handle_t handle; /* handle to the mutex */
1108 @END
1111 /* Release a mutex */
1112 @REQ(release_mutex)
1113 obj_handle_t handle; /* handle to the mutex */
1114 @REPLY
1115 unsigned int prev_count; /* value of internal counter, before release */
1116 @END
1119 /* Open a mutex */
1120 @REQ(open_mutex)
1121 unsigned int access; /* wanted access rights */
1122 unsigned int attributes; /* object attributes */
1123 obj_handle_t rootdir; /* root directory */
1124 VARARG(name,unicode_str); /* object name */
1125 @REPLY
1126 obj_handle_t handle; /* handle to the mutex */
1127 @END
1130 /* Query a mutex */
1131 @REQ(query_mutex)
1132 obj_handle_t handle; /* handle to mutex */
1133 @REPLY
1134 unsigned int count; /* current count of mutex */
1135 int owned; /* true if owned by current thread */
1136 int abandoned; /* true if abandoned */
1137 @END
1140 /* Create a semaphore */
1141 @REQ(create_semaphore)
1142 unsigned int access; /* wanted access rights */
1143 unsigned int initial; /* initial count */
1144 unsigned int max; /* maximum count */
1145 VARARG(objattr,object_attributes); /* object attributes */
1146 @REPLY
1147 obj_handle_t handle; /* handle to the semaphore */
1148 @END
1151 /* Release a semaphore */
1152 @REQ(release_semaphore)
1153 obj_handle_t handle; /* handle to the semaphore */
1154 unsigned int count; /* count to add to semaphore */
1155 @REPLY
1156 unsigned int prev_count; /* previous semaphore count */
1157 @END
1159 @REQ(query_semaphore)
1160 obj_handle_t handle; /* handle to the semaphore */
1161 @REPLY
1162 unsigned int current; /* current count */
1163 unsigned int max; /* maximum count */
1164 @END
1166 /* Open a semaphore */
1167 @REQ(open_semaphore)
1168 unsigned int access; /* wanted access rights */
1169 unsigned int attributes; /* object attributes */
1170 obj_handle_t rootdir; /* root directory */
1171 VARARG(name,unicode_str); /* object name */
1172 @REPLY
1173 obj_handle_t handle; /* handle to the semaphore */
1174 @END
1177 /* Create a file */
1178 @REQ(create_file)
1179 unsigned int access; /* wanted access rights */
1180 unsigned int sharing; /* sharing flags */
1181 int create; /* file create action */
1182 unsigned int options; /* file options */
1183 unsigned int attrs; /* file attributes for creation */
1184 VARARG(objattr,object_attributes); /* object attributes */
1185 VARARG(filename,string); /* file name */
1186 @REPLY
1187 obj_handle_t handle; /* handle to the file */
1188 @END
1191 /* Open a file object */
1192 @REQ(open_file_object)
1193 unsigned int access; /* wanted access rights */
1194 unsigned int attributes; /* open attributes */
1195 obj_handle_t rootdir; /* root directory */
1196 unsigned int sharing; /* sharing flags */
1197 unsigned int options; /* file options */
1198 VARARG(filename,unicode_str); /* file name */
1199 @REPLY
1200 obj_handle_t handle; /* handle to the file */
1201 @END
1204 /* Allocate a file handle for a Unix fd */
1205 @REQ(alloc_file_handle)
1206 unsigned int access; /* wanted access rights */
1207 unsigned int attributes; /* object attributes */
1208 int fd; /* file descriptor on the client side */
1209 @REPLY
1210 obj_handle_t handle; /* handle to the file */
1211 @END
1214 /* Get the Unix name from a file handle */
1215 @REQ(get_handle_unix_name)
1216 obj_handle_t handle; /* file handle */
1217 @REPLY
1218 data_size_t name_len; /* unix name length */
1219 VARARG(name,string); /* unix name */
1220 @END
1223 /* Get a Unix fd to access a file */
1224 @REQ(get_handle_fd)
1225 obj_handle_t handle; /* handle to the file */
1226 @REPLY
1227 int type; /* file type (see below) */
1228 int cacheable; /* can fd be cached in the client? */
1229 unsigned int access; /* file access rights */
1230 unsigned int options; /* file open options */
1231 @END
1232 enum server_fd_type
1234 FD_TYPE_INVALID, /* invalid file (no associated fd) */
1235 FD_TYPE_FILE, /* regular file */
1236 FD_TYPE_DIR, /* directory */
1237 FD_TYPE_SOCKET, /* socket */
1238 FD_TYPE_SERIAL, /* serial port */
1239 FD_TYPE_PIPE, /* named pipe */
1240 FD_TYPE_MAILSLOT, /* mailslot */
1241 FD_TYPE_CHAR, /* unspecified char device */
1242 FD_TYPE_DEVICE, /* Windows device file */
1243 FD_TYPE_NB_TYPES
1247 /* Retrieve (or allocate) the client-side directory cache entry */
1248 @REQ(get_directory_cache_entry)
1249 obj_handle_t handle; /* handle to the directory */
1250 @REPLY
1251 int entry; /* cache entry on the client side */
1252 VARARG(free,ints); /* entries that can be freed */
1253 @END
1256 /* Flush a file buffers */
1257 @REQ(flush)
1258 async_data_t async; /* async I/O parameters */
1259 @REPLY
1260 obj_handle_t event; /* event set when finished */
1261 @END
1263 /* Queries volume information */
1264 @REQ(get_volume_info)
1265 obj_handle_t handle; /* handle to the file */
1266 unsigned int info_class; /* queried information class */
1267 @REPLY
1268 VARARG(data,bytes); /* volume info data */
1269 @END
1271 /* Lock a region of a file */
1272 @REQ(lock_file)
1273 obj_handle_t handle; /* handle to the file */
1274 file_pos_t offset; /* offset of start of lock */
1275 file_pos_t count; /* count of bytes to lock */
1276 int shared; /* shared or exclusive lock? */
1277 int wait; /* do we want to wait? */
1278 @REPLY
1279 obj_handle_t handle; /* handle to wait on */
1280 int overlapped; /* is it an overlapped I/O handle? */
1281 @END
1284 /* Unlock a region of a file */
1285 @REQ(unlock_file)
1286 obj_handle_t handle; /* handle to the file */
1287 file_pos_t offset; /* offset of start of unlock */
1288 file_pos_t count; /* count of bytes to unlock */
1289 @END
1292 /* Create a socket */
1293 @REQ(create_socket)
1294 unsigned int access; /* wanted access rights */
1295 unsigned int attributes; /* object attributes */
1296 int family; /* family, see socket manpage */
1297 int type; /* type, see socket manpage */
1298 int protocol; /* protocol, see socket manpage */
1299 unsigned int flags; /* socket flags */
1300 @REPLY
1301 obj_handle_t handle; /* handle to the new socket */
1302 @END
1305 /* Accept a socket */
1306 @REQ(accept_socket)
1307 obj_handle_t lhandle; /* handle to the listening socket */
1308 unsigned int access; /* wanted access rights */
1309 unsigned int attributes; /* object attributes */
1310 @REPLY
1311 obj_handle_t handle; /* handle to the new socket */
1312 @END
1315 /* Accept into an initialized socket */
1316 @REQ(accept_into_socket)
1317 obj_handle_t lhandle; /* handle to the listening socket */
1318 obj_handle_t ahandle; /* handle to the accepting socket */
1319 @END
1322 /* Set socket event parameters */
1323 @REQ(set_socket_event)
1324 obj_handle_t handle; /* handle to the socket */
1325 unsigned int mask; /* event mask */
1326 obj_handle_t event; /* event object */
1327 user_handle_t window; /* window to send the message to */
1328 unsigned int msg; /* message to send */
1329 @END
1332 /* Get socket event parameters */
1333 @REQ(get_socket_event)
1334 obj_handle_t handle; /* handle to the socket */
1335 int service; /* clear pending? */
1336 obj_handle_t c_event; /* event to clear */
1337 @REPLY
1338 unsigned int mask; /* event mask */
1339 unsigned int pmask; /* pending events */
1340 unsigned int state; /* status bits */
1341 VARARG(errors,ints); /* event errors */
1342 @END
1345 /* Get socket info */
1346 @REQ(get_socket_info)
1347 obj_handle_t handle; /* handle to the socket */
1348 @REPLY
1349 int family; /* family, see socket manpage */
1350 int type; /* type, see socket manpage */
1351 int protocol; /* protocol, see socket manpage */
1352 @END
1355 /* Re-enable pending socket events */
1356 @REQ(enable_socket_event)
1357 obj_handle_t handle; /* handle to the socket */
1358 unsigned int mask; /* events to re-enable */
1359 unsigned int sstate; /* status bits to set */
1360 unsigned int cstate; /* status bits to clear */
1361 @END
1363 @REQ(set_socket_deferred)
1364 obj_handle_t handle; /* handle to the socket */
1365 obj_handle_t deferred; /* handle to the socket for which accept() is deferred */
1366 @END
1368 /* Allocate a console (only used by a console renderer) */
1369 @REQ(alloc_console)
1370 unsigned int access; /* wanted access rights */
1371 unsigned int attributes; /* object attributes */
1372 process_id_t pid; /* pid of process which shall be attached to the console */
1373 int input_fd; /* if pid=-1 (bare console to current process), fd for input */
1374 @REPLY
1375 obj_handle_t handle_in; /* handle to console input */
1376 obj_handle_t event; /* handle to renderer events change notification */
1377 @END
1380 /* Free the console of the current process */
1381 @REQ(free_console)
1382 @END
1385 #define CONSOLE_RENDERER_NONE_EVENT 0x00
1386 #define CONSOLE_RENDERER_TITLE_EVENT 0x01
1387 #define CONSOLE_RENDERER_ACTIVE_SB_EVENT 0x02
1388 #define CONSOLE_RENDERER_SB_RESIZE_EVENT 0x03
1389 #define CONSOLE_RENDERER_UPDATE_EVENT 0x04
1390 #define CONSOLE_RENDERER_CURSOR_POS_EVENT 0x05
1391 #define CONSOLE_RENDERER_CURSOR_GEOM_EVENT 0x06
1392 #define CONSOLE_RENDERER_DISPLAY_EVENT 0x07
1393 #define CONSOLE_RENDERER_EXIT_EVENT 0x08
1394 struct console_renderer_event
1396 short event;
1397 union
1399 struct update
1401 short top;
1402 short bottom;
1403 } update;
1404 struct resize
1406 short width;
1407 short height;
1408 } resize;
1409 struct cursor_pos
1411 short x;
1412 short y;
1413 } cursor_pos;
1414 struct cursor_geom
1416 short visible;
1417 short size;
1418 } cursor_geom;
1419 struct display
1421 short left;
1422 short top;
1423 short width;
1424 short height;
1425 } display;
1426 } u;
1429 /* retrieve console events for the renderer */
1430 @REQ(get_console_renderer_events)
1431 obj_handle_t handle; /* handle to console input events */
1432 @REPLY
1433 VARARG(data,bytes); /* the various console_renderer_events */
1434 @END
1437 /* Open a handle to the process console */
1438 @REQ(open_console)
1439 obj_handle_t from; /* 0 (resp 1) input (resp output) of current process console */
1440 /* otherwise console_in handle to get active screen buffer? */
1441 unsigned int access; /* wanted access rights */
1442 unsigned int attributes; /* object attributes */
1443 int share; /* share mask (only for output handles) */
1444 @REPLY
1445 obj_handle_t handle; /* handle to the console */
1446 @END
1449 /* Get the input queue wait event */
1450 @REQ(get_console_wait_event)
1451 @REPLY
1452 obj_handle_t handle;
1453 @END
1455 /* Get a console mode (input or output) */
1456 @REQ(get_console_mode)
1457 obj_handle_t handle; /* handle to the console */
1458 @REPLY
1459 int mode; /* console mode */
1460 @END
1463 /* Set a console mode (input or output) */
1464 @REQ(set_console_mode)
1465 obj_handle_t handle; /* handle to the console */
1466 int mode; /* console mode */
1467 @END
1470 /* Set info about a console (input only) */
1471 @REQ(set_console_input_info)
1472 obj_handle_t handle; /* handle to console input, or 0 for process' console */
1473 int mask; /* setting mask (see below) */
1474 obj_handle_t active_sb; /* active screen buffer */
1475 int history_mode; /* whether we duplicate lines in history */
1476 int history_size; /* number of lines in history */
1477 int edition_mode; /* index to the edition mode flavors */
1478 int input_cp; /* console input codepage */
1479 int output_cp; /* console output codepage */
1480 user_handle_t win; /* console window if backend supports it */
1481 VARARG(title,unicode_str); /* console title */
1482 @END
1483 #define SET_CONSOLE_INPUT_INFO_ACTIVE_SB 0x01
1484 #define SET_CONSOLE_INPUT_INFO_TITLE 0x02
1485 #define SET_CONSOLE_INPUT_INFO_HISTORY_MODE 0x04
1486 #define SET_CONSOLE_INPUT_INFO_HISTORY_SIZE 0x08
1487 #define SET_CONSOLE_INPUT_INFO_EDITION_MODE 0x10
1488 #define SET_CONSOLE_INPUT_INFO_INPUT_CODEPAGE 0x20
1489 #define SET_CONSOLE_INPUT_INFO_OUTPUT_CODEPAGE 0x40
1490 #define SET_CONSOLE_INPUT_INFO_WIN 0x80
1493 /* Get info about a console (input only) */
1494 @REQ(get_console_input_info)
1495 obj_handle_t handle; /* handle to console input, or 0 for process' console */
1496 @REPLY
1497 int history_mode; /* whether we duplicate lines in history */
1498 int history_size; /* number of lines in history */
1499 int history_index; /* number of used lines in history */
1500 int edition_mode; /* index to the edition mode flavors */
1501 int input_cp; /* console input codepage */
1502 int output_cp; /* console output codepage */
1503 user_handle_t win; /* console window if backend supports it */
1504 VARARG(title,unicode_str); /* console title */
1505 @END
1508 /* appends a string to console's history */
1509 @REQ(append_console_input_history)
1510 obj_handle_t handle; /* handle to console input, or 0 for process' console */
1511 VARARG(line,unicode_str); /* line to add */
1512 @END
1515 /* appends a string to console's history */
1516 @REQ(get_console_input_history)
1517 obj_handle_t handle; /* handle to console input, or 0 for process' console */
1518 int index; /* index to get line from */
1519 @REPLY
1520 int total; /* total length of line in Unicode chars */
1521 VARARG(line,unicode_str); /* line to add */
1522 @END
1525 /* creates a new screen buffer on process' console */
1526 @REQ(create_console_output)
1527 obj_handle_t handle_in; /* handle to console input, or 0 for process' console */
1528 unsigned int access; /* wanted access rights */
1529 unsigned int attributes; /* object attributes */
1530 unsigned int share; /* sharing credentials */
1531 int fd; /* for bare consoles, fd the screen-buffer is attached to */
1532 @REPLY
1533 obj_handle_t handle_out; /* handle to the screen buffer */
1534 @END
1537 /* Set info about a console (output only) */
1538 @REQ(set_console_output_info)
1539 obj_handle_t handle; /* handle to the console */
1540 int mask; /* setting mask (see below) */
1541 short int cursor_size; /* size of cursor (percentage filled) */
1542 short int cursor_visible;/* cursor visibility flag */
1543 short int cursor_x; /* position of cursor (x, y) */
1544 short int cursor_y;
1545 short int width; /* width of the screen buffer */
1546 short int height; /* height of the screen buffer */
1547 short int attr; /* default fill attributes (screen colors) */
1548 short int popup_attr; /* pop-up color attributes */
1549 short int win_left; /* window actually displayed by renderer */
1550 short int win_top; /* the rect area is expressed within the */
1551 short int win_right; /* boundaries of the screen buffer */
1552 short int win_bottom;
1553 short int max_width; /* maximum size (width x height) for the window */
1554 short int max_height;
1555 short int font_width; /* font size (width x height) */
1556 short int font_height;
1557 VARARG(colors,uints); /* color table */
1558 @END
1559 #define SET_CONSOLE_OUTPUT_INFO_CURSOR_GEOM 0x0001
1560 #define SET_CONSOLE_OUTPUT_INFO_CURSOR_POS 0x0002
1561 #define SET_CONSOLE_OUTPUT_INFO_SIZE 0x0004
1562 #define SET_CONSOLE_OUTPUT_INFO_ATTR 0x0008
1563 #define SET_CONSOLE_OUTPUT_INFO_DISPLAY_WINDOW 0x0010
1564 #define SET_CONSOLE_OUTPUT_INFO_MAX_SIZE 0x0020
1565 #define SET_CONSOLE_OUTPUT_INFO_FONT 0x0040
1566 #define SET_CONSOLE_OUTPUT_INFO_COLORTABLE 0x0080
1567 #define SET_CONSOLE_OUTPUT_INFO_POPUP_ATTR 0x0100
1570 /* Get info about a console (output only) */
1571 @REQ(get_console_output_info)
1572 obj_handle_t handle; /* handle to the console */
1573 @REPLY
1574 short int cursor_size; /* size of cursor (percentage filled) */
1575 short int cursor_visible;/* cursor visibility flag */
1576 short int cursor_x; /* position of cursor (x, y) */
1577 short int cursor_y;
1578 short int width; /* width of the screen buffer */
1579 short int height; /* height of the screen buffer */
1580 short int attr; /* default fill attributes (screen colors) */
1581 short int popup_attr; /* pop-up color attributes */
1582 short int win_left; /* window actually displayed by renderer */
1583 short int win_top; /* the rect area is expressed within the */
1584 short int win_right; /* boundaries of the screen buffer */
1585 short int win_bottom;
1586 short int max_width; /* maximum size (width x height) for the window */
1587 short int max_height;
1588 short int font_width; /* font size (width x height) */
1589 short int font_height;
1590 VARARG(colors,uints); /* color table */
1591 @END
1593 /* Add input records to a console input queue */
1594 @REQ(write_console_input)
1595 obj_handle_t handle; /* handle to the console input */
1596 VARARG(rec,input_records); /* input records */
1597 @REPLY
1598 int written; /* number of records written */
1599 @END
1602 /* Fetch input records from a console input queue */
1603 @REQ(read_console_input)
1604 obj_handle_t handle; /* handle to the console input */
1605 int flush; /* flush the retrieved records from the queue? */
1606 @REPLY
1607 int read; /* number of records read */
1608 VARARG(rec,input_records); /* input records */
1609 @END
1612 /* write data (chars and/or attributes) in a screen buffer */
1613 @REQ(write_console_output)
1614 obj_handle_t handle; /* handle to the console output */
1615 int x; /* position where to start writing */
1616 int y;
1617 int mode; /* char info (see below) */
1618 int wrap; /* wrap around at end of line? */
1619 VARARG(data,bytes); /* info to write */
1620 @REPLY
1621 int written; /* number of char infos actually written */
1622 int width; /* width of screen buffer */
1623 int height; /* height of screen buffer */
1624 @END
1625 enum char_info_mode
1627 CHAR_INFO_MODE_TEXT, /* characters only */
1628 CHAR_INFO_MODE_ATTR, /* attributes only */
1629 CHAR_INFO_MODE_TEXTATTR, /* both characters and attributes */
1630 CHAR_INFO_MODE_TEXTSTDATTR /* characters but use standard attributes */
1634 /* fill a screen buffer with constant data (chars and/or attributes) */
1635 @REQ(fill_console_output)
1636 obj_handle_t handle; /* handle to the console output */
1637 int x; /* position where to start writing */
1638 int y;
1639 int mode; /* char info mode */
1640 int count; /* number to write */
1641 int wrap; /* wrap around at end of line? */
1642 char_info_t data; /* data to write */
1643 @REPLY
1644 int written; /* number of char infos actually written */
1645 @END
1648 /* read data (chars and/or attributes) from a screen buffer */
1649 @REQ(read_console_output)
1650 obj_handle_t handle; /* handle to the console output */
1651 int x; /* position (x,y) where to start reading */
1652 int y;
1653 int mode; /* char info mode */
1654 int wrap; /* wrap around at end of line? */
1655 @REPLY
1656 int width; /* width of screen buffer */
1657 int height; /* height of screen buffer */
1658 VARARG(data,bytes);
1659 @END
1662 /* move a rect (of data) in screen buffer content */
1663 @REQ(move_console_output)
1664 obj_handle_t handle; /* handle to the console output */
1665 short int x_src; /* position (x, y) of rect to start moving from */
1666 short int y_src;
1667 short int x_dst; /* position (x, y) of rect to move to */
1668 short int y_dst;
1669 short int w; /* size of the rect (width, height) to move */
1670 short int h;
1671 @END
1674 /* Sends a signal to a process group */
1675 @REQ(send_console_signal)
1676 int signal; /* the signal to send */
1677 process_id_t group_id; /* the group to send the signal to */
1678 @END
1681 /* enable directory change notifications */
1682 @REQ(read_directory_changes)
1683 unsigned int filter; /* notification filter */
1684 int subtree; /* watch the subtree? */
1685 int want_data; /* flag indicating whether change data should be collected */
1686 async_data_t async; /* async I/O parameters */
1687 @END
1690 @REQ(read_change)
1691 obj_handle_t handle;
1692 @REPLY
1693 VARARG(events,filesystem_event); /* collected filesystem events */
1694 @END
1697 /* Create a file mapping */
1698 @REQ(create_mapping)
1699 unsigned int access; /* wanted access rights */
1700 unsigned int flags; /* SEC_* flags */
1701 unsigned int file_access; /* file access rights */
1702 mem_size_t size; /* mapping size */
1703 obj_handle_t file_handle; /* file handle */
1704 VARARG(objattr,object_attributes); /* object attributes */
1705 @REPLY
1706 obj_handle_t handle; /* handle to the mapping */
1707 @END
1710 /* Open a mapping */
1711 @REQ(open_mapping)
1712 unsigned int access; /* wanted access rights */
1713 unsigned int attributes; /* object attributes */
1714 obj_handle_t rootdir; /* root directory */
1715 VARARG(name,unicode_str); /* object name */
1716 @REPLY
1717 obj_handle_t handle; /* handle to the mapping */
1718 @END
1721 /* Get information about a file mapping */
1722 @REQ(get_mapping_info)
1723 obj_handle_t handle; /* handle to the mapping */
1724 unsigned int access; /* wanted access rights */
1725 @REPLY
1726 mem_size_t size; /* mapping size */
1727 unsigned int flags; /* SEC_* flags */
1728 obj_handle_t shared_file; /* shared mapping file handle */
1729 VARARG(image,pe_image_info);/* image info for SEC_IMAGE mappings */
1730 @END
1733 /* Add a memory view in the current process */
1734 @REQ(map_view)
1735 obj_handle_t mapping; /* file mapping handle */
1736 unsigned int access; /* wanted access rights */
1737 client_ptr_t base; /* view base address (page-aligned) */
1738 mem_size_t size; /* view size */
1739 file_pos_t start; /* start offset in mapping */
1740 @END
1743 /* Unmap a memory view from the current process */
1744 @REQ(unmap_view)
1745 client_ptr_t base; /* view base address */
1746 @END
1749 /* Get a range of committed pages in a file mapping */
1750 @REQ(get_mapping_committed_range)
1751 client_ptr_t base; /* view base address */
1752 file_pos_t offset; /* starting offset (page-aligned, in bytes) */
1753 @REPLY
1754 mem_size_t size; /* size of range starting at offset (page-aligned, in bytes) */
1755 int committed; /* whether it is a committed range */
1756 @END
1759 /* Add a range to the committed pages in a file mapping */
1760 @REQ(add_mapping_committed_range)
1761 client_ptr_t base; /* view base address */
1762 file_pos_t offset; /* starting offset (page-aligned, in bytes) */
1763 mem_size_t size; /* size to set (page-aligned, in bytes) or 0 if only retrieving */
1764 @END
1767 /* Check if two memory maps are for the same file */
1768 @REQ(is_same_mapping)
1769 client_ptr_t base1; /* first view base address */
1770 client_ptr_t base2; /* second view base address */
1771 @END
1774 #define SNAP_PROCESS 0x00000001
1775 #define SNAP_THREAD 0x00000002
1776 /* Create a snapshot */
1777 @REQ(create_snapshot)
1778 unsigned int attributes; /* object attributes */
1779 unsigned int flags; /* snapshot flags (SNAP_*) */
1780 @REPLY
1781 obj_handle_t handle; /* handle to the snapshot */
1782 @END
1785 /* Get the next process from a snapshot */
1786 @REQ(next_process)
1787 obj_handle_t handle; /* handle to the snapshot */
1788 int reset; /* reset snapshot position? */
1789 @REPLY
1790 int count; /* process usage count */
1791 process_id_t pid; /* process id */
1792 process_id_t ppid; /* parent process id */
1793 int threads; /* number of threads */
1794 int priority; /* process priority */
1795 int handles; /* number of handles */
1796 int unix_pid; /* Unix pid */
1797 VARARG(filename,unicode_str); /* file name of main exe */
1798 @END
1801 /* Get the next thread from a snapshot */
1802 @REQ(next_thread)
1803 obj_handle_t handle; /* handle to the snapshot */
1804 int reset; /* reset snapshot position? */
1805 @REPLY
1806 int count; /* thread usage count */
1807 process_id_t pid; /* process id */
1808 thread_id_t tid; /* thread id */
1809 int base_pri; /* base priority */
1810 int delta_pri; /* delta priority */
1811 @END
1814 /* Wait for a debug event */
1815 @REQ(wait_debug_event)
1816 int get_handle; /* should we alloc a handle for waiting? */
1817 @REPLY
1818 process_id_t pid; /* process id */
1819 thread_id_t tid; /* thread id */
1820 obj_handle_t wait; /* wait handle if no event ready */
1821 VARARG(event,debug_event); /* debug event data */
1822 @END
1825 /* Queue an exception event */
1826 @REQ(queue_exception_event)
1827 int first; /* first chance exception? */
1828 unsigned int code; /* exception code */
1829 unsigned int flags; /* exception flags */
1830 client_ptr_t record; /* exception record */
1831 client_ptr_t address; /* exception address */
1832 data_size_t len; /* size of parameters */
1833 VARARG(params,uints64,len);/* exception parameters */
1834 VARARG(context,context); /* thread context */
1835 @REPLY
1836 obj_handle_t handle; /* handle to the queued event */
1837 @END
1840 /* Retrieve the status of an exception event */
1841 @REQ(get_exception_status)
1842 obj_handle_t handle; /* handle to the queued event */
1843 @REPLY
1844 VARARG(context,context); /* modified thread context */
1845 @END
1848 /* Continue a debug event */
1849 @REQ(continue_debug_event)
1850 process_id_t pid; /* process id to continue */
1851 thread_id_t tid; /* thread id to continue */
1852 int status; /* continuation status */
1853 @END
1856 /* Start/stop debugging an existing process */
1857 @REQ(debug_process)
1858 process_id_t pid; /* id of the process to debug */
1859 int attach; /* 1=attaching / 0=detaching from the process */
1860 @END
1863 /* Simulate a breakpoint in a process */
1864 @REQ(debug_break)
1865 obj_handle_t handle; /* process handle */
1866 @REPLY
1867 int self; /* was it the caller itself? */
1868 @END
1871 /* Set debugger kill on exit flag */
1872 @REQ(set_debugger_kill_on_exit)
1873 int kill_on_exit; /* 0=detach/1=kill debuggee when debugger dies */
1874 @END
1877 /* Read data from a process address space */
1878 @REQ(read_process_memory)
1879 obj_handle_t handle; /* process handle */
1880 client_ptr_t addr; /* addr to read from */
1881 @REPLY
1882 VARARG(data,bytes); /* result data */
1883 @END
1886 /* Write data to a process address space */
1887 @REQ(write_process_memory)
1888 obj_handle_t handle; /* process handle */
1889 client_ptr_t addr; /* addr to write to */
1890 VARARG(data,bytes); /* data to write */
1891 @END
1894 /* Create a registry key */
1895 @REQ(create_key)
1896 unsigned int access; /* desired access rights */
1897 unsigned int options; /* creation options */
1898 VARARG(objattr,object_attributes); /* object attributes */
1899 VARARG(class,unicode_str); /* class name */
1900 @REPLY
1901 obj_handle_t hkey; /* handle to the created key */
1902 int created; /* has it been newly created? */
1903 @END
1905 /* Open a registry key */
1906 @REQ(open_key)
1907 obj_handle_t parent; /* handle to the parent key */
1908 unsigned int access; /* desired access rights */
1909 unsigned int attributes; /* object attributes */
1910 VARARG(name,unicode_str); /* key name */
1911 @REPLY
1912 obj_handle_t hkey; /* handle to the open key */
1913 @END
1916 /* Delete a registry key */
1917 @REQ(delete_key)
1918 obj_handle_t hkey; /* handle to the key */
1919 @END
1922 /* Flush a registry key */
1923 @REQ(flush_key)
1924 obj_handle_t hkey; /* handle to the key */
1925 @END
1928 /* Enumerate registry subkeys */
1929 @REQ(enum_key)
1930 obj_handle_t hkey; /* handle to registry key */
1931 int index; /* index of subkey (or -1 for current key) */
1932 int info_class; /* requested information class */
1933 @REPLY
1934 int subkeys; /* number of subkeys */
1935 int max_subkey; /* longest subkey name */
1936 int max_class; /* longest class name */
1937 int values; /* number of values */
1938 int max_value; /* longest value name */
1939 int max_data; /* longest value data */
1940 timeout_t modif; /* last modification time */
1941 data_size_t total; /* total length needed for full name and class */
1942 data_size_t namelen; /* length of key name in bytes */
1943 VARARG(name,unicode_str,namelen); /* key name */
1944 VARARG(class,unicode_str); /* class name */
1945 @END
1948 /* Set a value of a registry key */
1949 @REQ(set_key_value)
1950 obj_handle_t hkey; /* handle to registry key */
1951 int type; /* value type */
1952 data_size_t namelen; /* length of value name in bytes */
1953 VARARG(name,unicode_str,namelen); /* value name */
1954 VARARG(data,bytes); /* value data */
1955 @END
1958 /* Retrieve the value of a registry key */
1959 @REQ(get_key_value)
1960 obj_handle_t hkey; /* handle to registry key */
1961 VARARG(name,unicode_str); /* value name */
1962 @REPLY
1963 int type; /* value type */
1964 data_size_t total; /* total length needed for data */
1965 VARARG(data,bytes); /* value data */
1966 @END
1969 /* Enumerate a value of a registry key */
1970 @REQ(enum_key_value)
1971 obj_handle_t hkey; /* handle to registry key */
1972 int index; /* value index */
1973 int info_class; /* requested information class */
1974 @REPLY
1975 int type; /* value type */
1976 data_size_t total; /* total length needed for full name and data */
1977 data_size_t namelen; /* length of value name in bytes */
1978 VARARG(name,unicode_str,namelen); /* value name */
1979 VARARG(data,bytes); /* value data */
1980 @END
1983 /* Delete a value of a registry key */
1984 @REQ(delete_key_value)
1985 obj_handle_t hkey; /* handle to registry key */
1986 VARARG(name,unicode_str); /* value name */
1987 @END
1990 /* Load a registry branch from a file */
1991 @REQ(load_registry)
1992 obj_handle_t file; /* file to load from */
1993 VARARG(objattr,object_attributes); /* object attributes */
1994 @END
1997 /* UnLoad a registry branch from a file */
1998 @REQ(unload_registry)
1999 obj_handle_t hkey; /* root key to unload to */
2000 @END
2003 /* Save a registry branch to a file */
2004 @REQ(save_registry)
2005 obj_handle_t hkey; /* key to save */
2006 obj_handle_t file; /* file to save to */
2007 @END
2010 /* Add a registry key change notification */
2011 @REQ(set_registry_notification)
2012 obj_handle_t hkey; /* key to watch for changes */
2013 obj_handle_t event; /* event to set */
2014 int subtree; /* should we watch the whole subtree? */
2015 unsigned int filter; /* things to watch */
2016 @END
2019 /* Create a waitable timer */
2020 @REQ(create_timer)
2021 unsigned int access; /* wanted access rights */
2022 int manual; /* manual reset */
2023 VARARG(objattr,object_attributes); /* object attributes */
2024 @REPLY
2025 obj_handle_t handle; /* handle to the timer */
2026 @END
2029 /* Open a waitable timer */
2030 @REQ(open_timer)
2031 unsigned int access; /* wanted access rights */
2032 unsigned int attributes; /* object attributes */
2033 obj_handle_t rootdir; /* root directory */
2034 VARARG(name,unicode_str); /* object name */
2035 @REPLY
2036 obj_handle_t handle; /* handle to the timer */
2037 @END
2039 /* Set a waitable timer */
2040 @REQ(set_timer)
2041 obj_handle_t handle; /* handle to the timer */
2042 timeout_t expire; /* next expiration absolute time */
2043 client_ptr_t callback; /* callback function */
2044 client_ptr_t arg; /* callback argument */
2045 int period; /* timer period in ms */
2046 @REPLY
2047 int signaled; /* was the timer signaled before this call ? */
2048 @END
2050 /* Cancel a waitable timer */
2051 @REQ(cancel_timer)
2052 obj_handle_t handle; /* handle to the timer */
2053 @REPLY
2054 int signaled; /* was the timer signaled before this calltime ? */
2055 @END
2057 /* Get information on a waitable timer */
2058 @REQ(get_timer_info)
2059 obj_handle_t handle; /* handle to the timer */
2060 @REPLY
2061 timeout_t when; /* absolute time when the timer next expires */
2062 int signaled; /* is the timer signaled? */
2063 @END
2066 /* Retrieve the current context of a thread */
2067 @REQ(get_thread_context)
2068 obj_handle_t handle; /* thread handle */
2069 unsigned int flags; /* context flags */
2070 int suspend; /* suspend the thread if needed */
2071 @REPLY
2072 int self; /* was it a handle to the current thread? */
2073 VARARG(context,context); /* thread context */
2074 @END
2077 /* Set the current context of a thread */
2078 @REQ(set_thread_context)
2079 obj_handle_t handle; /* thread handle */
2080 int suspend; /* suspend the thread if needed */
2081 VARARG(context,context); /* thread context */
2082 @REPLY
2083 int self; /* was it a handle to the current thread? */
2084 @END
2087 /* Fetch a selector entry for a thread */
2088 @REQ(get_selector_entry)
2089 obj_handle_t handle; /* thread handle */
2090 int entry; /* LDT entry */
2091 @REPLY
2092 unsigned int base; /* selector base */
2093 unsigned int limit; /* selector limit */
2094 unsigned char flags; /* selector flags */
2095 @END
2098 /* Add an atom */
2099 @REQ(add_atom)
2100 obj_handle_t table; /* which table to add atom to */
2101 VARARG(name,unicode_str); /* atom name */
2102 @REPLY
2103 atom_t atom; /* resulting atom */
2104 @END
2107 /* Delete an atom */
2108 @REQ(delete_atom)
2109 obj_handle_t table; /* which table to delete atom from */
2110 atom_t atom; /* atom handle */
2111 @END
2114 /* Find an atom */
2115 @REQ(find_atom)
2116 obj_handle_t table; /* which table to find atom from */
2117 VARARG(name,unicode_str); /* atom name */
2118 @REPLY
2119 atom_t atom; /* atom handle */
2120 @END
2123 /* Get information about an atom */
2124 @REQ(get_atom_information)
2125 obj_handle_t table; /* which table to find atom from */
2126 atom_t atom; /* atom handle */
2127 @REPLY
2128 int count; /* atom lock count */
2129 int pinned; /* whether the atom has been pinned */
2130 data_size_t total; /* actual length of atom name */
2131 VARARG(name,unicode_str); /* atom name */
2132 @END
2135 /* Set information about an atom */
2136 @REQ(set_atom_information)
2137 obj_handle_t table; /* which table to find atom from */
2138 atom_t atom; /* atom handle */
2139 int pinned; /* whether to bump atom information */
2140 @END
2143 /* Empty an atom table */
2144 @REQ(empty_atom_table)
2145 obj_handle_t table; /* which table to find atom from */
2146 int if_pinned; /* whether to delete pinned atoms */
2147 @END
2150 /* Init an atom table */
2151 @REQ(init_atom_table)
2152 int entries; /* number of entries (only for local) */
2153 @REPLY
2154 obj_handle_t table; /* handle to the atom table */
2155 @END
2158 /* Get the message queue of the current thread */
2159 @REQ(get_msg_queue)
2160 @REPLY
2161 obj_handle_t handle; /* handle to the queue */
2162 @END
2165 /* Set the file descriptor associated to the current thread queue */
2166 @REQ(set_queue_fd)
2167 obj_handle_t handle; /* handle to the file descriptor */
2168 @END
2171 /* Set the current message queue wakeup mask */
2172 @REQ(set_queue_mask)
2173 unsigned int wake_mask; /* wakeup bits mask */
2174 unsigned int changed_mask; /* changed bits mask */
2175 int skip_wait; /* will we skip waiting if signaled? */
2176 @REPLY
2177 unsigned int wake_bits; /* current wake bits */
2178 unsigned int changed_bits; /* current changed bits */
2179 @END
2182 /* Get the current message queue status */
2183 @REQ(get_queue_status)
2184 unsigned int clear_bits; /* should we clear the change bits? */
2185 @REPLY
2186 unsigned int wake_bits; /* wake bits */
2187 unsigned int changed_bits; /* changed bits since last time */
2188 @END
2191 /* Retrieve the process idle event */
2192 @REQ(get_process_idle_event)
2193 obj_handle_t handle; /* process handle */
2194 @REPLY
2195 obj_handle_t event; /* handle to idle event */
2196 @END
2199 /* Send a message to a thread queue */
2200 @REQ(send_message)
2201 thread_id_t id; /* thread id */
2202 int type; /* message type (see below) */
2203 int flags; /* message flags (see below) */
2204 user_handle_t win; /* window handle */
2205 unsigned int msg; /* message code */
2206 lparam_t wparam; /* parameters */
2207 lparam_t lparam; /* parameters */
2208 timeout_t timeout; /* timeout for reply */
2209 VARARG(data,message_data); /* message data for sent messages */
2210 @END
2212 @REQ(post_quit_message)
2213 int exit_code; /* exit code to return */
2214 @END
2216 enum message_type
2218 MSG_ASCII, /* Ascii message (from SendMessageA) */
2219 MSG_UNICODE, /* Unicode message (from SendMessageW) */
2220 MSG_NOTIFY, /* notify message (from SendNotifyMessageW), always Unicode */
2221 MSG_CALLBACK, /* callback message (from SendMessageCallbackW), always Unicode */
2222 MSG_CALLBACK_RESULT,/* result of a callback message */
2223 MSG_OTHER_PROCESS, /* sent from other process, may include vararg data, always Unicode */
2224 MSG_POSTED, /* posted message (from PostMessageW), always Unicode */
2225 MSG_HARDWARE, /* hardware message */
2226 MSG_WINEVENT, /* winevent message */
2227 MSG_HOOK_LL /* low-level hardware hook */
2229 #define SEND_MSG_ABORT_IF_HUNG 0x01
2232 /* Send a hardware message to a thread queue */
2233 @REQ(send_hardware_message)
2234 user_handle_t win; /* window handle */
2235 hw_input_t input; /* input data */
2236 unsigned int flags; /* flags (see below) */
2237 @REPLY
2238 int wait; /* do we need to wait for a reply? */
2239 int prev_x; /* previous cursor position */
2240 int prev_y;
2241 int new_x; /* new cursor position */
2242 int new_y;
2243 VARARG(keystate,bytes); /* global state array for all the keys */
2244 @END
2245 #define SEND_HWMSG_INJECTED 0x01
2248 /* Get a message from the current queue */
2249 @REQ(get_message)
2250 unsigned int flags; /* PM_* flags */
2251 user_handle_t get_win; /* window handle to get */
2252 unsigned int get_first; /* first message code to get */
2253 unsigned int get_last; /* last message code to get */
2254 unsigned int hw_id; /* id of the previous hardware message (or 0) */
2255 unsigned int wake_mask; /* wakeup bits mask */
2256 unsigned int changed_mask; /* changed bits mask */
2257 @REPLY
2258 user_handle_t win; /* window handle */
2259 unsigned int msg; /* message code */
2260 lparam_t wparam; /* parameters */
2261 lparam_t lparam; /* parameters */
2262 int type; /* message type */
2263 int x; /* message x position */
2264 int y; /* message y position */
2265 unsigned int time; /* message time */
2266 unsigned int active_hooks; /* active hooks bitmap */
2267 data_size_t total; /* total size of extra data */
2268 VARARG(data,message_data); /* message data for sent messages */
2269 @END
2272 /* Reply to a sent message */
2273 @REQ(reply_message)
2274 int remove; /* should we remove the message? */
2275 lparam_t result; /* message result */
2276 VARARG(data,bytes); /* message data for sent messages */
2277 @END
2280 /* Accept the current hardware message */
2281 @REQ(accept_hardware_message)
2282 unsigned int hw_id; /* id of the hardware message */
2283 int remove; /* should we remove the message? */
2284 @END
2287 /* Retrieve the reply for the last message sent */
2288 @REQ(get_message_reply)
2289 int cancel; /* cancel message if not ready? */
2290 @REPLY
2291 lparam_t result; /* message result */
2292 VARARG(data,bytes); /* message data for sent messages */
2293 @END
2296 /* Set a window timer */
2297 @REQ(set_win_timer)
2298 user_handle_t win; /* window handle */
2299 unsigned int msg; /* message to post */
2300 unsigned int rate; /* timer rate in ms */
2301 lparam_t id; /* timer id */
2302 lparam_t lparam; /* message lparam (callback proc) */
2303 @REPLY
2304 lparam_t id; /* timer id */
2305 @END
2308 /* Kill a window timer */
2309 @REQ(kill_win_timer)
2310 user_handle_t win; /* window handle */
2311 lparam_t id; /* timer id */
2312 unsigned int msg; /* message to post */
2313 @END
2316 /* check if the thread owning the window is hung */
2317 @REQ(is_window_hung)
2318 user_handle_t win; /* window handle */
2319 @REPLY
2320 int is_hung;
2321 @END
2324 /* Retrieve info about a serial port */
2325 @REQ(get_serial_info)
2326 obj_handle_t handle; /* handle to comm port */
2327 int flags;
2328 @REPLY
2329 unsigned int eventmask;
2330 unsigned int cookie;
2331 unsigned int pending_write;
2332 @END
2335 /* Set info about a serial port */
2336 @REQ(set_serial_info)
2337 obj_handle_t handle; /* handle to comm port */
2338 int flags; /* bitmask to set values (see below) */
2339 @END
2340 #define SERIALINFO_PENDING_WRITE 0x04
2341 #define SERIALINFO_PENDING_WAIT 0x08
2344 /* Create an async I/O */
2345 @REQ(register_async)
2346 int type; /* type of queue to look after */
2347 async_data_t async; /* async I/O parameters */
2348 int count; /* count - usually # of bytes to be read/written */
2349 @END
2350 #define ASYNC_TYPE_READ 0x01
2351 #define ASYNC_TYPE_WRITE 0x02
2352 #define ASYNC_TYPE_WAIT 0x03
2355 /* Cancel all async op on a fd */
2356 @REQ(cancel_async)
2357 obj_handle_t handle; /* handle to comm port, socket or file */
2358 client_ptr_t iosb; /* I/O status block (NULL=all) */
2359 int only_thread; /* cancel matching this thread */
2360 @END
2363 /* Retrieve results of an async */
2364 @REQ(get_async_result)
2365 client_ptr_t user_arg; /* user arg used to identify async */
2366 @REPLY
2367 data_size_t size; /* result size (input or output depending on the operation) */
2368 VARARG(out_data,bytes); /* iosb output data */
2369 @END
2372 /* Perform a read on a file object */
2373 @REQ(read)
2374 async_data_t async; /* async I/O parameters */
2375 file_pos_t pos; /* read position */
2376 @REPLY
2377 obj_handle_t wait; /* handle to wait on for blocking read */
2378 unsigned int options; /* device open options */
2379 VARARG(data,bytes); /* read data */
2380 @END
2383 /* Perform a write on a file object */
2384 @REQ(write)
2385 async_data_t async; /* async I/O parameters */
2386 file_pos_t pos; /* write position */
2387 VARARG(data,bytes); /* write data */
2388 @REPLY
2389 obj_handle_t wait; /* handle to wait on for blocking write */
2390 unsigned int options; /* device open options */
2391 data_size_t size; /* size written */
2392 @END
2395 /* Perform an ioctl on a file */
2396 @REQ(ioctl)
2397 ioctl_code_t code; /* ioctl code */
2398 async_data_t async; /* async I/O parameters */
2399 VARARG(in_data,bytes); /* ioctl input data */
2400 @REPLY
2401 obj_handle_t wait; /* handle to wait on for blocking ioctl */
2402 unsigned int options; /* device open options */
2403 VARARG(out_data,bytes); /* ioctl output data */
2404 @END
2407 /* Store results of an async irp */
2408 @REQ(set_irp_result)
2409 obj_handle_t handle; /* handle to the irp */
2410 unsigned int status; /* status of the irp */
2411 data_size_t size; /* result size (input or output depending on the operation) */
2412 client_ptr_t file_ptr; /* opaque pointer to the file object */
2413 VARARG(data,bytes); /* output data of the irp */
2414 @END
2417 /* Create a named pipe */
2418 @REQ(create_named_pipe)
2419 unsigned int access;
2420 unsigned int options;
2421 unsigned int sharing;
2422 unsigned int maxinstances;
2423 unsigned int outsize;
2424 unsigned int insize;
2425 timeout_t timeout;
2426 unsigned int flags;
2427 VARARG(objattr,object_attributes); /* object attributes */
2428 @REPLY
2429 obj_handle_t handle; /* handle to the pipe */
2430 @END
2432 /* flags in create_named_pipe and get_named_pipe_info */
2433 #define NAMED_PIPE_MESSAGE_STREAM_WRITE 0x0001
2434 #define NAMED_PIPE_MESSAGE_STREAM_READ 0x0002
2435 #define NAMED_PIPE_NONBLOCKING_MODE 0x0004
2436 #define NAMED_PIPE_SERVER_END 0x8000
2438 /* Get named pipe information by handle */
2439 @REQ(get_named_pipe_info)
2440 obj_handle_t handle;
2441 @REPLY
2442 unsigned int flags;
2443 unsigned int sharing;
2444 unsigned int maxinstances;
2445 unsigned int instances;
2446 unsigned int outsize;
2447 unsigned int insize;
2448 @END
2450 /* Set named pipe information by handle */
2451 @REQ(set_named_pipe_info)
2452 obj_handle_t handle;
2453 unsigned int flags;
2454 @END
2456 /* Create a window */
2457 @REQ(create_window)
2458 user_handle_t parent; /* parent window */
2459 user_handle_t owner; /* owner window */
2460 atom_t atom; /* class atom */
2461 mod_handle_t instance; /* module instance */
2462 VARARG(class,unicode_str); /* class name */
2463 @REPLY
2464 user_handle_t handle; /* created window */
2465 user_handle_t parent; /* full handle of parent */
2466 user_handle_t owner; /* full handle of owner */
2467 int extra; /* number of extra bytes */
2468 client_ptr_t class_ptr; /* pointer to class in client address space */
2469 @END
2472 /* Destroy a window */
2473 @REQ(destroy_window)
2474 user_handle_t handle; /* handle to the window */
2475 @END
2478 /* Retrieve the desktop window for the current thread */
2479 @REQ(get_desktop_window)
2480 int force; /* force creation if it doesn't exist */
2481 @REPLY
2482 user_handle_t top_window; /* handle to the desktop window */
2483 user_handle_t msg_window; /* handle to the top-level HWND_MESSAGE parent */
2484 @END
2487 /* Set a window owner */
2488 @REQ(set_window_owner)
2489 user_handle_t handle; /* handle to the window */
2490 user_handle_t owner; /* new owner */
2491 @REPLY
2492 user_handle_t full_owner; /* full handle of new owner */
2493 user_handle_t prev_owner; /* full handle of previous owner */
2494 @END
2497 /* Get information from a window handle */
2498 @REQ(get_window_info)
2499 user_handle_t handle; /* handle to the window */
2500 @REPLY
2501 user_handle_t full_handle; /* full 32-bit handle */
2502 user_handle_t last_active; /* last active popup */
2503 process_id_t pid; /* process owning the window */
2504 thread_id_t tid; /* thread owning the window */
2505 atom_t atom; /* class atom */
2506 int is_unicode; /* ANSI or unicode */
2507 @END
2510 /* Set some information in a window */
2511 @REQ(set_window_info)
2512 unsigned short flags; /* flags for fields to set (see below) */
2513 short int is_unicode; /* ANSI or unicode */
2514 user_handle_t handle; /* handle to the window */
2515 unsigned int style; /* window style */
2516 unsigned int ex_style; /* window extended style */
2517 unsigned int id; /* window id */
2518 mod_handle_t instance; /* creator instance */
2519 lparam_t user_data; /* user-specific data */
2520 int extra_offset; /* offset to set in extra bytes */
2521 data_size_t extra_size; /* size to set in extra bytes */
2522 lparam_t extra_value; /* value to set in extra bytes */
2523 @REPLY
2524 unsigned int old_style; /* old window style */
2525 unsigned int old_ex_style; /* old window extended style */
2526 mod_handle_t old_instance; /* old creator instance */
2527 lparam_t old_user_data; /* old user-specific data */
2528 lparam_t old_extra_value; /* old value in extra bytes */
2529 unsigned int old_id; /* old window id */
2530 @END
2531 #define SET_WIN_STYLE 0x01
2532 #define SET_WIN_EXSTYLE 0x02
2533 #define SET_WIN_ID 0x04
2534 #define SET_WIN_INSTANCE 0x08
2535 #define SET_WIN_USERDATA 0x10
2536 #define SET_WIN_EXTRA 0x20
2537 #define SET_WIN_UNICODE 0x40
2540 /* Set the parent of a window */
2541 @REQ(set_parent)
2542 user_handle_t handle; /* handle to the window */
2543 user_handle_t parent; /* handle to the parent */
2544 @REPLY
2545 user_handle_t old_parent; /* old parent window */
2546 user_handle_t full_parent; /* full handle of new parent */
2547 @END
2550 /* Get a list of the window parents, up to the root of the tree */
2551 @REQ(get_window_parents)
2552 user_handle_t handle; /* handle to the window */
2553 @REPLY
2554 int count; /* total count of parents */
2555 VARARG(parents,user_handles); /* parent handles */
2556 @END
2559 /* Get a list of the window children */
2560 @REQ(get_window_children)
2561 obj_handle_t desktop; /* handle to desktop */
2562 user_handle_t parent; /* parent window */
2563 atom_t atom; /* class atom for the listed children */
2564 thread_id_t tid; /* thread owning the listed children */
2565 VARARG(class,unicode_str); /* class name */
2566 @REPLY
2567 int count; /* total count of children */
2568 VARARG(children,user_handles); /* children handles */
2569 @END
2572 /* Get a list of the window children that contain a given point */
2573 @REQ(get_window_children_from_point)
2574 user_handle_t parent; /* parent window */
2575 int x; /* point in parent coordinates */
2576 int y;
2577 @REPLY
2578 int count; /* total count of children */
2579 VARARG(children,user_handles); /* children handles */
2580 @END
2583 /* Get window tree information from a window handle */
2584 @REQ(get_window_tree)
2585 user_handle_t handle; /* handle to the window */
2586 @REPLY
2587 user_handle_t parent; /* parent window */
2588 user_handle_t owner; /* owner window */
2589 user_handle_t next_sibling; /* next sibling in Z-order */
2590 user_handle_t prev_sibling; /* prev sibling in Z-order */
2591 user_handle_t first_sibling; /* first sibling in Z-order */
2592 user_handle_t last_sibling; /* last sibling in Z-order */
2593 user_handle_t first_child; /* first child */
2594 user_handle_t last_child; /* last child */
2595 @END
2597 /* Set the position and Z order of a window */
2598 @REQ(set_window_pos)
2599 unsigned short swp_flags; /* SWP_* flags */
2600 unsigned short paint_flags; /* paint flags (see below) */
2601 user_handle_t handle; /* handle to the window */
2602 user_handle_t previous; /* previous window in Z order */
2603 rectangle_t window; /* window rectangle (in parent coords) */
2604 rectangle_t client; /* client rectangle (in parent coords) */
2605 VARARG(valid,rectangles); /* valid rectangles from WM_NCCALCSIZE (in parent coords) */
2606 @REPLY
2607 unsigned int new_style; /* new window style */
2608 unsigned int new_ex_style; /* new window extended style */
2609 user_handle_t surface_win; /* parent window that holds the surface */
2610 int needs_update; /* whether the surface region needs an update */
2611 @END
2612 #define SET_WINPOS_PAINT_SURFACE 0x01 /* window has a paintable surface */
2613 #define SET_WINPOS_PIXEL_FORMAT 0x02 /* window has a custom pixel format */
2615 /* Get the window and client rectangles of a window */
2616 @REQ(get_window_rectangles)
2617 user_handle_t handle; /* handle to the window */
2618 int relative; /* coords relative to (see below) */
2619 @REPLY
2620 rectangle_t window; /* window rectangle */
2621 rectangle_t visible; /* visible part of the window rectangle */
2622 rectangle_t client; /* client rectangle */
2623 @END
2624 enum coords_relative
2626 COORDS_CLIENT, /* relative to client area */
2627 COORDS_WINDOW, /* relative to whole window area */
2628 COORDS_PARENT, /* relative to parent's client area */
2629 COORDS_SCREEN /* relative to screen origin */
2633 /* Get the window text */
2634 @REQ(get_window_text)
2635 user_handle_t handle; /* handle to the window */
2636 @REPLY
2637 VARARG(text,unicode_str); /* window text */
2638 @END
2641 /* Set the window text */
2642 @REQ(set_window_text)
2643 user_handle_t handle; /* handle to the window */
2644 VARARG(text,unicode_str); /* window text */
2645 @END
2648 /* Get the coordinates offset between two windows */
2649 @REQ(get_windows_offset)
2650 user_handle_t from; /* handle to the first window */
2651 user_handle_t to; /* handle to the second window */
2652 @REPLY
2653 int x; /* x coordinate offset */
2654 int y; /* y coordinate offset */
2655 int mirror; /* whether to mirror the x coordinate */
2656 @END
2659 /* Get the visible region of a window */
2660 @REQ(get_visible_region)
2661 user_handle_t window; /* handle to the window */
2662 unsigned int flags; /* DCX flags */
2663 @REPLY
2664 user_handle_t top_win; /* top window to clip against */
2665 rectangle_t top_rect; /* top window visible rect with screen coords */
2666 rectangle_t win_rect; /* window rect in screen coords */
2667 unsigned int paint_flags; /* paint flags (from SET_WINPOS_* flags) */
2668 data_size_t total_size; /* total size of the resulting region */
2669 VARARG(region,rectangles); /* list of rectangles for the region (in screen coords) */
2670 @END
2673 /* Get the visible surface region of a window */
2674 @REQ(get_surface_region)
2675 user_handle_t window; /* handle to the window */
2676 @REPLY
2677 rectangle_t visible_rect; /* window visible rect in screen coords */
2678 data_size_t total_size; /* total size of the resulting region */
2679 VARARG(region,rectangles); /* list of rectangles for the region (in screen coords) */
2680 @END
2683 /* Get the window region */
2684 @REQ(get_window_region)
2685 user_handle_t window; /* handle to the window */
2686 @REPLY
2687 data_size_t total_size; /* total size of the resulting region */
2688 VARARG(region,rectangles); /* list of rectangles for the region (in window coords) */
2689 @END
2692 /* Set the window region */
2693 @REQ(set_window_region)
2694 user_handle_t window; /* handle to the window */
2695 int redraw; /* redraw the window? */
2696 VARARG(region,rectangles); /* list of rectangles for the region (in window coords) */
2697 @END
2700 /* Get the window update region */
2701 @REQ(get_update_region)
2702 user_handle_t window; /* handle to the window */
2703 user_handle_t from_child; /* child to start searching from */
2704 unsigned int flags; /* update flags (see below) */
2705 @REPLY
2706 user_handle_t child; /* child to repaint (or window itself) */
2707 unsigned int flags; /* resulting update flags (see below) */
2708 data_size_t total_size; /* total size of the resulting region */
2709 VARARG(region,rectangles); /* list of rectangles for the region (in screen coords) */
2710 @END
2711 #define UPDATE_NONCLIENT 0x001 /* get region for repainting non-client area */
2712 #define UPDATE_ERASE 0x002 /* get region for erasing client area */
2713 #define UPDATE_PAINT 0x004 /* get region for painting client area */
2714 #define UPDATE_INTERNALPAINT 0x008 /* get region if internal paint is pending */
2715 #define UPDATE_ALLCHILDREN 0x010 /* force repaint of all children */
2716 #define UPDATE_NOCHILDREN 0x020 /* don't try to repaint any children */
2717 #define UPDATE_NOREGION 0x040 /* don't return a region, only the flags */
2718 #define UPDATE_DELAYED_ERASE 0x080 /* still needs erase after BeginPaint */
2719 #define UPDATE_CLIPCHILDREN 0x100 /* remove clipped children from the update region */
2722 /* Update the z order of a window so that a given rectangle is fully visible */
2723 @REQ(update_window_zorder)
2724 user_handle_t window; /* handle to the window */
2725 rectangle_t rect; /* rectangle that must be visible (in client coords) */
2726 @END
2729 /* Mark parts of a window as needing a redraw */
2730 @REQ(redraw_window)
2731 user_handle_t window; /* handle to the window */
2732 unsigned int flags; /* RDW_* flags */
2733 VARARG(region,rectangles); /* list of rectangles for the region (in window coords) */
2734 @END
2737 /* Set a window property */
2738 @REQ(set_window_property)
2739 user_handle_t window; /* handle to the window */
2740 lparam_t data; /* data to store */
2741 atom_t atom; /* property atom (if no name specified) */
2742 VARARG(name,unicode_str); /* property name */
2743 @END
2746 /* Remove a window property */
2747 @REQ(remove_window_property)
2748 user_handle_t window; /* handle to the window */
2749 atom_t atom; /* property atom (if no name specified) */
2750 VARARG(name,unicode_str); /* property name */
2751 @REPLY
2752 lparam_t data; /* data stored in property */
2753 @END
2756 /* Get a window property */
2757 @REQ(get_window_property)
2758 user_handle_t window; /* handle to the window */
2759 atom_t atom; /* property atom (if no name specified) */
2760 VARARG(name,unicode_str); /* property name */
2761 @REPLY
2762 lparam_t data; /* data stored in property */
2763 @END
2766 /* Get the list of properties of a window */
2767 @REQ(get_window_properties)
2768 user_handle_t window; /* handle to the window */
2769 @REPLY
2770 int total; /* total number of properties */
2771 VARARG(props,properties); /* list of properties */
2772 @END
2775 /* Create a window station */
2776 @REQ(create_winstation)
2777 unsigned int flags; /* window station flags */
2778 unsigned int access; /* wanted access rights */
2779 unsigned int attributes; /* object attributes */
2780 obj_handle_t rootdir; /* root directory */
2781 VARARG(name,unicode_str); /* object name */
2782 @REPLY
2783 obj_handle_t handle; /* handle to the window station */
2784 @END
2787 /* Open a handle to a window station */
2788 @REQ(open_winstation)
2789 unsigned int access; /* wanted access rights */
2790 unsigned int attributes; /* object attributes */
2791 obj_handle_t rootdir; /* root directory */
2792 VARARG(name,unicode_str); /* object name */
2793 @REPLY
2794 obj_handle_t handle; /* handle to the window station */
2795 @END
2798 /* Close a window station */
2799 @REQ(close_winstation)
2800 obj_handle_t handle; /* handle to the window station */
2801 @END
2804 /* Get the process current window station */
2805 @REQ(get_process_winstation)
2806 @REPLY
2807 obj_handle_t handle; /* handle to the window station */
2808 @END
2811 /* Set the process current window station */
2812 @REQ(set_process_winstation)
2813 obj_handle_t handle; /* handle to the window station */
2814 @END
2817 /* Enumerate window stations */
2818 @REQ(enum_winstation)
2819 unsigned int index; /* current index */
2820 @REPLY
2821 unsigned int next; /* next index */
2822 VARARG(name,unicode_str); /* window station name */
2823 @END
2826 /* Create a desktop */
2827 @REQ(create_desktop)
2828 unsigned int flags; /* desktop flags */
2829 unsigned int access; /* wanted access rights */
2830 unsigned int attributes; /* object attributes */
2831 VARARG(name,unicode_str); /* object name */
2832 @REPLY
2833 obj_handle_t handle; /* handle to the desktop */
2834 @END
2837 /* Open a handle to a desktop */
2838 @REQ(open_desktop)
2839 obj_handle_t winsta; /* window station to open (null allowed) */
2840 unsigned int flags; /* desktop flags */
2841 unsigned int access; /* wanted access rights */
2842 unsigned int attributes; /* object attributes */
2843 VARARG(name,unicode_str); /* object name */
2844 @REPLY
2845 obj_handle_t handle; /* handle to the desktop */
2846 @END
2849 /* Open a handle to current input desktop */
2850 @REQ(open_input_desktop)
2851 unsigned int flags; /* desktop flags */
2852 unsigned int access; /* wanted access rights */
2853 unsigned int attributes; /* object attributes */
2854 @REPLY
2855 obj_handle_t handle; /* handle to the desktop */
2856 @END
2859 /* Close a desktop */
2860 @REQ(close_desktop)
2861 obj_handle_t handle; /* handle to the desktop */
2862 @END
2865 /* Get the thread current desktop */
2866 @REQ(get_thread_desktop)
2867 thread_id_t tid; /* thread id */
2868 @REPLY
2869 obj_handle_t handle; /* handle to the desktop */
2870 @END
2873 /* Set the thread current desktop */
2874 @REQ(set_thread_desktop)
2875 obj_handle_t handle; /* handle to the desktop */
2876 @END
2879 /* Enumerate desktops */
2880 @REQ(enum_desktop)
2881 obj_handle_t winstation; /* handle to the window station */
2882 unsigned int index; /* current index */
2883 @REPLY
2884 unsigned int next; /* next index */
2885 VARARG(name,unicode_str); /* window station name */
2886 @END
2889 /* Get/set information about a user object (window station or desktop) */
2890 @REQ(set_user_object_info)
2891 obj_handle_t handle; /* handle to the object */
2892 unsigned int flags; /* information to set/get */
2893 unsigned int obj_flags; /* new object flags */
2894 @REPLY
2895 int is_desktop; /* is object a desktop? */
2896 unsigned int old_obj_flags; /* old object flags */
2897 VARARG(name,unicode_str); /* object name */
2898 @END
2899 #define SET_USER_OBJECT_SET_FLAGS 1
2900 #define SET_USER_OBJECT_GET_FULL_NAME 2
2903 /* Register a hotkey */
2904 @REQ(register_hotkey)
2905 user_handle_t window; /* handle to the window */
2906 int id; /* hotkey identifier */
2907 unsigned int flags; /* modifier keys */
2908 unsigned int vkey; /* virtual key code */
2909 @REPLY
2910 int replaced; /* did we replace an existing hotkey? */
2911 unsigned int flags; /* flags of replaced hotkey */
2912 unsigned int vkey; /* virtual key code of replaced hotkey */
2913 @END
2916 /* Unregister a hotkey */
2917 @REQ(unregister_hotkey)
2918 user_handle_t window; /* handle to the window */
2919 int id; /* hotkey identifier */
2920 @REPLY
2921 unsigned int flags; /* flags of removed hotkey */
2922 unsigned int vkey; /* virtual key code of removed hotkey */
2923 @END
2926 /* Attach (or detach) thread inputs */
2927 @REQ(attach_thread_input)
2928 thread_id_t tid_from; /* thread to be attached */
2929 thread_id_t tid_to; /* thread to which tid_from should be attached */
2930 int attach; /* is it an attach? */
2931 @END
2934 /* Get input data for a given thread */
2935 @REQ(get_thread_input)
2936 thread_id_t tid; /* id of thread */
2937 @REPLY
2938 user_handle_t focus; /* handle to the focus window */
2939 user_handle_t capture; /* handle to the capture window */
2940 user_handle_t active; /* handle to the active window */
2941 user_handle_t foreground; /* handle to the global foreground window */
2942 user_handle_t menu_owner; /* handle to the menu owner */
2943 user_handle_t move_size; /* handle to the moving/resizing window */
2944 user_handle_t caret; /* handle to the caret window */
2945 user_handle_t cursor; /* handle to the cursor */
2946 int show_count; /* cursor show count */
2947 rectangle_t rect; /* caret rectangle */
2948 @END
2951 /* Get the time of the last input event */
2952 @REQ(get_last_input_time)
2953 @REPLY
2954 unsigned int time;
2955 @END
2958 /* Retrieve queue keyboard state for a given thread */
2959 @REQ(get_key_state)
2960 thread_id_t tid; /* id of thread */
2961 int key; /* optional key code or -1 */
2962 @REPLY
2963 unsigned char state; /* state of specified key */
2964 VARARG(keystate,bytes); /* state array for all the keys */
2965 @END
2967 /* Set queue keyboard state for a given thread */
2968 @REQ(set_key_state)
2969 thread_id_t tid; /* id of thread */
2970 int async; /* whether to change the async state too */
2971 VARARG(keystate,bytes); /* state array for all the keys */
2972 @END
2974 /* Set the system foreground window */
2975 @REQ(set_foreground_window)
2976 user_handle_t handle; /* handle to the foreground window */
2977 @REPLY
2978 user_handle_t previous; /* handle to the previous foreground window */
2979 int send_msg_old; /* whether we have to send a msg to the old window */
2980 int send_msg_new; /* whether we have to send a msg to the new window */
2981 @END
2983 /* Set the current thread focus window */
2984 @REQ(set_focus_window)
2985 user_handle_t handle; /* handle to the focus window */
2986 @REPLY
2987 user_handle_t previous; /* handle to the previous focus window */
2988 @END
2990 /* Set the current thread active window */
2991 @REQ(set_active_window)
2992 user_handle_t handle; /* handle to the active window */
2993 @REPLY
2994 user_handle_t previous; /* handle to the previous active window */
2995 @END
2997 /* Set the current thread capture window */
2998 @REQ(set_capture_window)
2999 user_handle_t handle; /* handle to the capture window */
3000 unsigned int flags; /* capture flags (see below) */
3001 @REPLY
3002 user_handle_t previous; /* handle to the previous capture window */
3003 user_handle_t full_handle; /* full 32-bit handle of new capture window */
3004 @END
3005 #define CAPTURE_MENU 0x01 /* capture is for a menu */
3006 #define CAPTURE_MOVESIZE 0x02 /* capture is for moving/resizing */
3009 /* Set the current thread caret window */
3010 @REQ(set_caret_window)
3011 user_handle_t handle; /* handle to the caret window */
3012 int width; /* caret width */
3013 int height; /* caret height */
3014 @REPLY
3015 user_handle_t previous; /* handle to the previous caret window */
3016 rectangle_t old_rect; /* previous caret rectangle */
3017 int old_hide; /* previous hide count */
3018 int old_state; /* previous caret state (1=on, 0=off) */
3019 @END
3022 /* Set the current thread caret information */
3023 @REQ(set_caret_info)
3024 unsigned int flags; /* caret flags (see below) */
3025 user_handle_t handle; /* handle to the caret window */
3026 int x; /* caret x position */
3027 int y; /* caret y position */
3028 int hide; /* increment for hide count (can be negative to show it) */
3029 int state; /* caret state (see below) */
3030 @REPLY
3031 user_handle_t full_handle; /* handle to the current caret window */
3032 rectangle_t old_rect; /* previous caret rectangle */
3033 int old_hide; /* previous hide count */
3034 int old_state; /* previous caret state (1=on, 0=off) */
3035 @END
3036 #define SET_CARET_POS 0x01 /* set the caret position from x,y */
3037 #define SET_CARET_HIDE 0x02 /* increment the caret hide count */
3038 #define SET_CARET_STATE 0x04 /* set the caret on/off state */
3039 enum caret_state
3041 CARET_STATE_OFF, /* off */
3042 CARET_STATE_ON, /* on */
3043 CARET_STATE_TOGGLE, /* toggle current state */
3044 CARET_STATE_ON_IF_MOVED /* on if the position differs, unchanged otherwise */
3048 /* Set a window hook */
3049 @REQ(set_hook)
3050 int id; /* id of the hook */
3051 process_id_t pid; /* id of process to set the hook into */
3052 thread_id_t tid; /* id of thread to set the hook into */
3053 int event_min;
3054 int event_max;
3055 client_ptr_t proc; /* hook procedure */
3056 int flags;
3057 int unicode; /* is it a unicode hook? */
3058 VARARG(module,unicode_str); /* module name */
3059 @REPLY
3060 user_handle_t handle; /* handle to the hook */
3061 unsigned int active_hooks; /* active hooks bitmap */
3062 @END
3065 /* Remove a window hook */
3066 @REQ(remove_hook)
3067 user_handle_t handle; /* handle to the hook */
3068 client_ptr_t proc; /* hook procedure if handle is 0 */
3069 int id; /* id of the hook if handle is 0 */
3070 @REPLY
3071 unsigned int active_hooks; /* active hooks bitmap */
3072 @END
3075 /* Start calling a hook chain */
3076 @REQ(start_hook_chain)
3077 int id; /* id of the hook */
3078 int event; /* signalled event */
3079 user_handle_t window; /* handle to the event window */
3080 int object_id; /* object id for out of context winevent */
3081 int child_id; /* child id for out of context winevent */
3082 @REPLY
3083 user_handle_t handle; /* handle to the next hook */
3084 process_id_t pid; /* process id for low-level keyboard/mouse hooks */
3085 thread_id_t tid; /* thread id for low-level keyboard/mouse hooks */
3086 int unicode; /* is it a unicode hook? */
3087 client_ptr_t proc; /* hook procedure */
3088 unsigned int active_hooks; /* active hooks bitmap */
3089 VARARG(module,unicode_str); /* module name */
3090 @END
3093 /* Finished calling a hook chain */
3094 @REQ(finish_hook_chain)
3095 int id; /* id of the hook */
3096 @END
3099 /* Get the hook information */
3100 @REQ(get_hook_info)
3101 user_handle_t handle; /* handle to the current hook */
3102 int get_next; /* do we want info about current or next hook? */
3103 int event; /* signalled event */
3104 user_handle_t window; /* handle to the event window */
3105 int object_id; /* object id for out of context winevent */
3106 int child_id; /* child id for out of context winevent */
3107 @REPLY
3108 user_handle_t handle; /* handle to the hook */
3109 int id; /* id of the hook */
3110 process_id_t pid; /* process id for low-level keyboard/mouse hooks */
3111 thread_id_t tid; /* thread id for low-level keyboard/mouse hooks */
3112 client_ptr_t proc; /* hook procedure */
3113 int unicode; /* is it a unicode hook? */
3114 VARARG(module,unicode_str); /* module name */
3115 @END
3118 /* Create a window class */
3119 @REQ(create_class)
3120 int local; /* is it a local class? */
3121 atom_t atom; /* class atom */
3122 unsigned int style; /* class style */
3123 mod_handle_t instance; /* module instance */
3124 int extra; /* number of extra class bytes */
3125 int win_extra; /* number of window extra bytes */
3126 client_ptr_t client_ptr; /* pointer to class in client address space */
3127 VARARG(name,unicode_str); /* class name */
3128 @REPLY
3129 atom_t atom; /* resulting class atom */
3130 @END
3133 /* Destroy a window class */
3134 @REQ(destroy_class)
3135 atom_t atom; /* class atom */
3136 mod_handle_t instance; /* module instance */
3137 VARARG(name,unicode_str); /* class name */
3138 @REPLY
3139 client_ptr_t client_ptr; /* pointer to class in client address space */
3140 @END
3143 /* Set some information in a class */
3144 @REQ(set_class_info)
3145 user_handle_t window; /* handle to the window */
3146 unsigned int flags; /* flags for info to set (see below) */
3147 atom_t atom; /* class atom */
3148 unsigned int style; /* class style */
3149 int win_extra; /* number of window extra bytes */
3150 mod_handle_t instance; /* module instance */
3151 int extra_offset; /* offset to set in extra bytes */
3152 data_size_t extra_size; /* size to set in extra bytes */
3153 lparam_t extra_value; /* value to set in extra bytes */
3154 @REPLY
3155 atom_t old_atom; /* previous class atom */
3156 unsigned int old_style; /* previous class style */
3157 int old_extra; /* previous number of class extra bytes */
3158 int old_win_extra; /* previous number of window extra bytes */
3159 mod_handle_t old_instance; /* previous module instance */
3160 lparam_t old_extra_value; /* old value in extra bytes */
3161 @END
3162 #define SET_CLASS_ATOM 0x0001
3163 #define SET_CLASS_STYLE 0x0002
3164 #define SET_CLASS_WINEXTRA 0x0004
3165 #define SET_CLASS_INSTANCE 0x0008
3166 #define SET_CLASS_EXTRA 0x0010
3169 /* Open the clipboard */
3170 @REQ(open_clipboard)
3171 user_handle_t window; /* clipboard window */
3172 @REPLY
3173 user_handle_t owner; /* current clipboard owner */
3174 @END
3177 /* Close the clipboard */
3178 @REQ(close_clipboard)
3179 @REPLY
3180 user_handle_t viewer; /* first clipboard viewer */
3181 user_handle_t owner; /* current clipboard owner */
3182 @END
3185 /* Empty the clipboard and grab ownership */
3186 @REQ(empty_clipboard)
3187 @END
3190 /* Add a data format to the clipboard */
3191 @REQ(set_clipboard_data)
3192 unsigned int format; /* clipboard format of the data */
3193 unsigned int lcid; /* locale id to use for synthesizing text formats */
3194 VARARG(data,bytes); /* data contents */
3195 @REPLY
3196 unsigned int seqno; /* sequence number for the set data */
3197 @END
3200 /* Fetch a data format from the clipboard */
3201 @REQ(get_clipboard_data)
3202 unsigned int format; /* clipboard format of the data */
3203 int render; /* will we try to render it if missing? */
3204 int cached; /* do we already have it in the client-side cache? */
3205 unsigned int seqno; /* sequence number for the data in the cache */
3206 @REPLY
3207 unsigned int from; /* for synthesized data, format to generate it from */
3208 user_handle_t owner; /* clipboard owner for delayed-rendered formats */
3209 unsigned int seqno; /* sequence number for the originally set data */
3210 data_size_t total; /* total data size */
3211 VARARG(data,bytes); /* data contents */
3212 @END
3215 /* Retrieve a list of available formats */
3216 @REQ(get_clipboard_formats)
3217 unsigned int format; /* specific format to query, return all if 0 */
3218 @REPLY
3219 unsigned int count; /* count of available formats */
3220 VARARG(formats,uints); /* array of available formats */
3221 @END
3224 /* Retrieve the next available format */
3225 @REQ(enum_clipboard_formats)
3226 unsigned int previous; /* previous format, or first if 0 */
3227 @REPLY
3228 unsigned int format; /* next format */
3229 @END
3232 /* Release ownership of the clipboard */
3233 @REQ(release_clipboard)
3234 user_handle_t owner; /* clipboard owner to release */
3235 @REPLY
3236 user_handle_t viewer; /* first clipboard viewer */
3237 user_handle_t owner; /* current clipboard owner */
3238 @END
3241 /* Get clipboard information */
3242 @REQ(get_clipboard_info)
3243 @REPLY
3244 user_handle_t window; /* clipboard window */
3245 user_handle_t owner; /* clipboard owner */
3246 user_handle_t viewer; /* clipboard viewer */
3247 unsigned int seqno; /* current sequence number */
3248 @END
3251 /* Set the clipboard viewer window */
3252 @REQ(set_clipboard_viewer)
3253 user_handle_t viewer; /* clipboard viewer */
3254 user_handle_t previous; /* if non-zero, check that this was the previous viewer */
3255 @REPLY
3256 user_handle_t old_viewer; /* previous clipboard viewer */
3257 user_handle_t owner; /* clipboard owner */
3258 @END
3261 /* Add a clipboard listener window */
3262 @REQ(add_clipboard_listener)
3263 user_handle_t window; /* clipboard listener window */
3264 @END
3267 /* Remove a clipboard listener window */
3268 @REQ(remove_clipboard_listener)
3269 user_handle_t window; /* clipboard listener window */
3270 @END
3273 /* Open a security token */
3274 @REQ(open_token)
3275 obj_handle_t handle; /* handle to the thread or process */
3276 unsigned int access; /* access rights to the new token */
3277 unsigned int attributes;/* object attributes */
3278 unsigned int flags; /* flags (see below) */
3279 @REPLY
3280 obj_handle_t token; /* handle to the token */
3281 @END
3282 #define OPEN_TOKEN_THREAD 1
3283 #define OPEN_TOKEN_AS_SELF 2
3286 /* Set/get the global windows */
3287 @REQ(set_global_windows)
3288 unsigned int flags; /* flags for fields to set (see below) */
3289 user_handle_t shell_window; /* handle to the new shell window */
3290 user_handle_t shell_listview; /* handle to the new shell listview window */
3291 user_handle_t progman_window; /* handle to the new program manager window */
3292 user_handle_t taskman_window; /* handle to the new task manager window */
3293 @REPLY
3294 user_handle_t old_shell_window; /* handle to the shell window */
3295 user_handle_t old_shell_listview; /* handle to the shell listview window */
3296 user_handle_t old_progman_window; /* handle to the new program manager window */
3297 user_handle_t old_taskman_window; /* handle to the new task manager window */
3298 @END
3299 #define SET_GLOBAL_SHELL_WINDOWS 0x01 /* set both main shell and listview windows */
3300 #define SET_GLOBAL_PROGMAN_WINDOW 0x02
3301 #define SET_GLOBAL_TASKMAN_WINDOW 0x04
3303 /* Adjust the privileges held by a token */
3304 @REQ(adjust_token_privileges)
3305 obj_handle_t handle; /* handle to the token */
3306 int disable_all; /* disable all privileges? */
3307 int get_modified_state; /* get modified privileges? */
3308 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges to enable/disable/remove */
3309 @REPLY
3310 unsigned int len; /* total length in bytes required to store token privileges */
3311 VARARG(privileges,LUID_AND_ATTRIBUTES); /* modified privileges */
3312 @END
3314 /* Retrieves the set of privileges held by or available to a token */
3315 @REQ(get_token_privileges)
3316 obj_handle_t handle; /* handle to the token */
3317 @REPLY
3318 unsigned int len; /* total length in bytes required to store token privileges */
3319 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges held by or available to a token */
3320 @END
3322 /* Check the token has the required privileges */
3323 @REQ(check_token_privileges)
3324 obj_handle_t handle; /* handle to the token */
3325 int all_required; /* are all the privileges required for the check to succeed? */
3326 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges to check */
3327 @REPLY
3328 int has_privileges; /* does the token have the required privileges? */
3329 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges held by or available to a token */
3330 @END
3332 @REQ(duplicate_token)
3333 obj_handle_t handle; /* handle to the token to duplicate */
3334 unsigned int access; /* access rights to the new token */
3335 int primary; /* is the new token to be a primary one? */
3336 int impersonation_level; /* impersonation level of the new token */
3337 VARARG(objattr,object_attributes); /* object attributes */
3338 @REPLY
3339 obj_handle_t new_handle; /* duplicated handle */
3340 @END
3342 @REQ(access_check)
3343 obj_handle_t handle; /* handle to the token */
3344 unsigned int desired_access; /* desired access to the object */
3345 unsigned int mapping_read; /* mapping from generic read to specific rights */
3346 unsigned int mapping_write; /* mapping from generic write to specific rights */
3347 unsigned int mapping_execute; /* mapping from generic execute to specific rights */
3348 unsigned int mapping_all; /* mapping from generic all to specific rights */
3349 VARARG(sd,security_descriptor); /* security descriptor to check */
3350 @REPLY
3351 unsigned int access_granted; /* access rights actually granted */
3352 unsigned int access_status; /* was access granted? */
3353 unsigned int privileges_len; /* length needed to store privileges */
3354 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges used during access check */
3355 @END
3357 @REQ(get_token_sid)
3358 obj_handle_t handle; /* handle to the token */
3359 unsigned int which_sid; /* which SID to retrieve from the token */
3360 @REPLY
3361 data_size_t sid_len; /* length needed to store sid */
3362 VARARG(sid,SID); /* the sid specified by which_sid from the token */
3363 @END
3365 @REQ(get_token_groups)
3366 obj_handle_t handle; /* handle to the token */
3367 @REPLY
3368 data_size_t user_len; /* length needed to store user */
3369 VARARG(user,token_groups); /* groups the token's user belongs to */
3370 @END
3372 @REQ(get_token_default_dacl)
3373 obj_handle_t handle; /* handle to the token */
3374 @REPLY
3375 data_size_t acl_len; /* length needed to store access control list */
3376 VARARG(acl,ACL); /* access control list */
3377 @END
3379 @REQ(set_token_default_dacl)
3380 obj_handle_t handle; /* handle to the token */
3381 VARARG(acl,ACL); /* default dacl to set */
3382 @END
3384 @REQ(set_security_object)
3385 obj_handle_t handle; /* handle to the object */
3386 unsigned int security_info; /* which parts of security descriptor to set */
3387 VARARG(sd,security_descriptor); /* security descriptor to set */
3388 @END
3390 @REQ(get_security_object)
3391 obj_handle_t handle; /* handle to the object */
3392 unsigned int security_info; /* which parts of security descriptor to get */
3393 @REPLY
3394 unsigned int sd_len; /* buffer size needed for sd */
3395 VARARG(sd,security_descriptor); /* retrieved security descriptor */
3396 @END
3399 struct handle_info
3401 process_id_t owner;
3402 obj_handle_t handle;
3403 unsigned int access;
3406 /* Return a list of all opened handles */
3407 @REQ(get_system_handles)
3408 @REPLY
3409 unsigned int count; /* number of handles */
3410 VARARG(data,handle_infos); /* array of handle_infos */
3411 @END
3414 /* Create a mailslot */
3415 @REQ(create_mailslot)
3416 unsigned int access; /* wanted access rights */
3417 timeout_t read_timeout;
3418 unsigned int max_msgsize;
3419 VARARG(objattr,object_attributes); /* object attributes */
3420 @REPLY
3421 obj_handle_t handle; /* handle to the mailslot */
3422 @END
3425 /* Set mailslot information */
3426 @REQ(set_mailslot_info)
3427 obj_handle_t handle; /* handle to the mailslot */
3428 timeout_t read_timeout;
3429 unsigned int flags;
3430 @REPLY
3431 timeout_t read_timeout;
3432 unsigned int max_msgsize;
3433 @END
3434 #define MAILSLOT_SET_READ_TIMEOUT 1
3437 /* Create a directory object */
3438 @REQ(create_directory)
3439 unsigned int access; /* access flags */
3440 VARARG(objattr,object_attributes); /* object attributes */
3441 @REPLY
3442 obj_handle_t handle; /* handle to the directory */
3443 @END
3446 /* Open a directory object */
3447 @REQ(open_directory)
3448 unsigned int access; /* access flags */
3449 unsigned int attributes; /* object attributes */
3450 obj_handle_t rootdir; /* root directory */
3451 VARARG(directory_name,unicode_str); /* Directory name */
3452 @REPLY
3453 obj_handle_t handle; /* handle to the directory */
3454 @END
3457 /* Get a directory entry by index */
3458 @REQ(get_directory_entry)
3459 obj_handle_t handle; /* handle to the directory */
3460 unsigned int index; /* entry index */
3461 @REPLY
3462 data_size_t name_len; /* length of the entry name in bytes */
3463 VARARG(name,unicode_str,name_len); /* entry name */
3464 VARARG(type,unicode_str); /* entry type */
3465 @END
3468 /* Create a symbolic link object */
3469 @REQ(create_symlink)
3470 unsigned int access; /* access flags */
3471 VARARG(objattr,object_attributes); /* object attributes */
3472 VARARG(target_name,unicode_str); /* target name */
3473 @REPLY
3474 obj_handle_t handle; /* handle to the symlink */
3475 @END
3478 /* Open a symbolic link object */
3479 @REQ(open_symlink)
3480 unsigned int access; /* access flags */
3481 unsigned int attributes; /* object attributes */
3482 obj_handle_t rootdir; /* root directory */
3483 VARARG(name,unicode_str); /* symlink name */
3484 @REPLY
3485 obj_handle_t handle; /* handle to the symlink */
3486 @END
3489 /* Query a symbolic link object */
3490 @REQ(query_symlink)
3491 obj_handle_t handle; /* handle to the symlink */
3492 @REPLY
3493 data_size_t total; /* total needed size for name */
3494 VARARG(target_name,unicode_str); /* target name */
3495 @END
3498 /* Query basic object information */
3499 @REQ(get_object_info)
3500 obj_handle_t handle; /* handle to the object */
3501 @REPLY
3502 unsigned int access; /* granted access mask */
3503 unsigned int ref_count; /* object ref count */
3504 unsigned int handle_count; /* object handle count */
3505 data_size_t total; /* total needed size for name */
3506 VARARG(name,unicode_str); /* object name */
3507 @END
3510 /* Query object type name information */
3511 @REQ(get_object_type)
3512 obj_handle_t handle; /* handle to the object */
3513 @REPLY
3514 data_size_t total; /* needed size for type name */
3515 VARARG(type,unicode_str); /* type name */
3516 @END
3519 /* Unlink a named object */
3520 @REQ(unlink_object)
3521 obj_handle_t handle; /* handle to the object */
3522 @END
3525 /* Query the impersonation level of an impersonation token */
3526 @REQ(get_token_impersonation_level)
3527 obj_handle_t handle; /* handle to the object */
3528 @REPLY
3529 int impersonation_level; /* impersonation level of the impersonation token */
3530 @END
3532 /* Allocate a locally-unique identifier */
3533 @REQ(allocate_locally_unique_id)
3534 @REPLY
3535 luid_t luid;
3536 @END
3539 /* Create a device manager */
3540 @REQ(create_device_manager)
3541 unsigned int access; /* wanted access rights */
3542 unsigned int attributes; /* object attributes */
3543 @REPLY
3544 obj_handle_t handle; /* handle to the device */
3545 @END
3548 /* Create a device */
3549 @REQ(create_device)
3550 unsigned int access; /* wanted access rights */
3551 unsigned int attributes; /* object attributes */
3552 obj_handle_t rootdir; /* root directory */
3553 client_ptr_t user_ptr; /* opaque ptr for use by client */
3554 obj_handle_t manager; /* device manager */
3555 VARARG(name,unicode_str); /* object name */
3556 @REPLY
3557 obj_handle_t handle; /* handle to the device */
3558 @END
3561 /* Delete a device */
3562 @REQ(delete_device)
3563 obj_handle_t handle; /* handle to the device */
3564 @END
3567 /* Retrieve the next pending device irp request */
3568 @REQ(get_next_device_request)
3569 obj_handle_t manager; /* handle to the device manager */
3570 obj_handle_t prev; /* handle to the previous irp */
3571 unsigned int status; /* status of the previous irp */
3572 @REPLY
3573 irp_params_t params; /* irp parameters */
3574 obj_handle_t next; /* handle to the next irp */
3575 process_id_t client_pid; /* pid of process calling irp */
3576 thread_id_t client_tid; /* tid of thread calling irp */
3577 data_size_t in_size; /* total needed input size */
3578 data_size_t out_size; /* needed output size */
3579 VARARG(next_data,bytes); /* input data of the next irp */
3580 @END
3583 /* Make the current process a system process */
3584 @REQ(make_process_system)
3585 @REPLY
3586 obj_handle_t event; /* event signaled when all user processes have exited */
3587 @END
3590 /* Get detailed fixed-size information about a token */
3591 @REQ(get_token_statistics)
3592 obj_handle_t handle; /* handle to the object */
3593 @REPLY
3594 luid_t token_id; /* locally-unique identifier of the token */
3595 luid_t modified_id; /* locally-unique identifier of the modified version of the token */
3596 int primary; /* is the token primary or impersonation? */
3597 int impersonation_level; /* level of impersonation */
3598 int group_count; /* the number of groups the token is a member of */
3599 int privilege_count; /* the number of privileges the token has */
3600 @END
3603 /* Create I/O completion port */
3604 @REQ(create_completion)
3605 unsigned int access; /* desired access to a port */
3606 unsigned int concurrent; /* max number of concurrent active threads */
3607 VARARG(objattr,object_attributes); /* object attributes */
3608 @REPLY
3609 obj_handle_t handle; /* port handle */
3610 @END
3613 /* Open I/O completion port */
3614 @REQ(open_completion)
3615 unsigned int access; /* desired access to a port */
3616 unsigned int attributes; /* object attributes */
3617 obj_handle_t rootdir; /* root directory */
3618 VARARG(filename,unicode_str); /* port name */
3619 @REPLY
3620 obj_handle_t handle; /* port handle */
3621 @END
3624 /* add completion to completion port */
3625 @REQ(add_completion)
3626 obj_handle_t handle; /* port handle */
3627 apc_param_t ckey; /* completion key */
3628 apc_param_t cvalue; /* completion value */
3629 apc_param_t information; /* IO_STATUS_BLOCK Information */
3630 unsigned int status; /* completion result */
3631 @END
3634 /* get completion from completion port queue */
3635 @REQ(remove_completion)
3636 obj_handle_t handle; /* port handle */
3637 @REPLY
3638 apc_param_t ckey; /* completion key */
3639 apc_param_t cvalue; /* completion value */
3640 apc_param_t information; /* IO_STATUS_BLOCK Information */
3641 unsigned int status; /* completion result */
3642 @END
3645 /* get completion queue depth */
3646 @REQ(query_completion)
3647 obj_handle_t handle; /* port handle */
3648 @REPLY
3649 unsigned int depth; /* completion queue depth */
3650 @END
3653 /* associate object with completion port */
3654 @REQ(set_completion_info)
3655 obj_handle_t handle; /* object handle */
3656 apc_param_t ckey; /* completion key */
3657 obj_handle_t chandle; /* port handle */
3658 @END
3661 /* check for associated completion and push msg */
3662 @REQ(add_fd_completion)
3663 obj_handle_t handle; /* async' object */
3664 apc_param_t cvalue; /* completion value */
3665 apc_param_t information; /* IO_STATUS_BLOCK Information */
3666 unsigned int status; /* completion status */
3667 @END
3670 /* set fd disposition information */
3671 @REQ(set_fd_disp_info)
3672 obj_handle_t handle; /* handle to a file or directory */
3673 int unlink; /* whether to unlink file on close */
3674 @END
3677 /* set fd name information */
3678 @REQ(set_fd_name_info)
3679 obj_handle_t handle; /* handle to a file or directory */
3680 obj_handle_t rootdir; /* root directory */
3681 int link; /* link instead of renaming */
3682 VARARG(filename,string); /* new file name */
3683 @END
3686 /* Retrieve layered info for a window */
3687 @REQ(get_window_layered_info)
3688 user_handle_t handle; /* handle to the window */
3689 @REPLY
3690 unsigned int color_key; /* color key */
3691 unsigned int alpha; /* alpha (0..255) */
3692 unsigned int flags; /* LWA_* flags */
3693 @END
3696 /* Set layered info for a window */
3697 @REQ(set_window_layered_info)
3698 user_handle_t handle; /* handle to the window */
3699 unsigned int color_key; /* color key */
3700 unsigned int alpha; /* alpha (0..255) */
3701 unsigned int flags; /* LWA_* flags */
3702 @END
3705 /* Allocate an arbitrary user handle */
3706 @REQ(alloc_user_handle)
3707 @REPLY
3708 user_handle_t handle; /* allocated handle */
3709 @END
3712 /* Free an arbitrary user handle */
3713 @REQ(free_user_handle)
3714 user_handle_t handle; /* handle to free*/
3715 @END
3718 /* Set/get the current cursor */
3719 @REQ(set_cursor)
3720 unsigned int flags; /* flags for fields to set (see below) */
3721 user_handle_t handle; /* handle to the cursor */
3722 int show_count; /* show count increment/decrement */
3723 int x; /* cursor position */
3724 int y;
3725 rectangle_t clip; /* cursor clip rectangle */
3726 unsigned int clip_msg; /* message to post on cursor clip changes */
3727 @REPLY
3728 user_handle_t prev_handle; /* previous handle */
3729 int prev_count; /* previous show count */
3730 int prev_x; /* previous position */
3731 int prev_y;
3732 int new_x; /* new position */
3733 int new_y;
3734 rectangle_t new_clip; /* new clip rectangle */
3735 unsigned int last_change; /* time of last position change */
3736 @END
3737 #define SET_CURSOR_HANDLE 0x01
3738 #define SET_CURSOR_COUNT 0x02
3739 #define SET_CURSOR_POS 0x04
3740 #define SET_CURSOR_CLIP 0x08
3741 #define SET_CURSOR_NOCLIP 0x10
3744 /* Modify the list of registered rawinput devices */
3745 @REQ(update_rawinput_devices)
3746 VARARG(devices,rawinput_devices);
3747 @END
3750 /* Retrieve the suspended context of a thread */
3751 @REQ(get_suspend_context)
3752 @REPLY
3753 VARARG(context,context); /* thread context */
3754 @END
3757 /* Store the suspend context of a thread */
3758 @REQ(set_suspend_context)
3759 VARARG(context,context); /* thread context */
3760 @END
3763 /* Create a new job object */
3764 @REQ(create_job)
3765 unsigned int access; /* wanted access rights */
3766 VARARG(objattr,object_attributes); /* object attributes */
3767 @REPLY
3768 obj_handle_t handle; /* handle to the job */
3769 @END
3772 /* Open a job object */
3773 @REQ(open_job)
3774 unsigned int access; /* wanted access rights */
3775 unsigned int attributes; /* object attributes */
3776 obj_handle_t rootdir; /* root directory */
3777 VARARG(name,unicode_str); /* object name */
3778 @REPLY
3779 obj_handle_t handle; /* handle to the job */
3780 @END
3783 /* Assign a job object to a process */
3784 @REQ(assign_job)
3785 obj_handle_t job; /* handle to the job */
3786 obj_handle_t process; /* handle to the process */
3787 @END
3790 /* Check if a process is associated with a job */
3791 @REQ(process_in_job)
3792 obj_handle_t job; /* handle to the job */
3793 obj_handle_t process; /* handle to the process */
3794 @END
3797 /* Set limit flags on a job */
3798 @REQ(set_job_limits)
3799 obj_handle_t handle; /* handle to the job */
3800 unsigned int limit_flags; /* new limit flags */
3801 @END
3804 /* Set new completion port for a job */
3805 @REQ(set_job_completion_port)
3806 obj_handle_t job; /* handle to the job */
3807 obj_handle_t port; /* handle to the completion port */
3808 client_ptr_t key; /* key to send with completion messages */
3809 @END
3812 /* Terminate all processes associated with the job */
3813 @REQ(terminate_job)
3814 obj_handle_t handle; /* handle to the job */
3815 int status; /* process exit code */
3816 @END