msvcrt: Use WINAPIV calling convention for variadic functions.
[wine.git] / server / protocol.def
blob2e74d60b7c49ebabc56e8703d956ab0c35c75412
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 @END
813 /* Terminate a process */
814 @REQ(terminate_process)
815 obj_handle_t handle; /* process handle to terminate */
816 int exit_code; /* process exit code */
817 @REPLY
818 int self; /* suicide? */
819 @END
822 /* Terminate a thread */
823 @REQ(terminate_thread)
824 obj_handle_t handle; /* thread handle to terminate */
825 int exit_code; /* thread exit code */
826 @REPLY
827 int self; /* suicide? */
828 int last; /* last thread in this process? */
829 @END
832 /* Retrieve information about a process */
833 @REQ(get_process_info)
834 obj_handle_t handle; /* process handle */
835 @REPLY
836 process_id_t pid; /* server process id */
837 process_id_t ppid; /* server process id of parent */
838 affinity_t affinity; /* process affinity mask */
839 client_ptr_t peb; /* PEB address in process address space */
840 timeout_t start_time; /* process start time */
841 timeout_t end_time; /* process end time */
842 int exit_code; /* process exit code */
843 int priority; /* priority class */
844 cpu_type_t cpu; /* CPU that this process is running on */
845 short int debugger_present; /* process is being debugged */
846 short int debug_children; /* inherit debugger to child processes */
847 @END
850 /* Retrieve information about a process memory usage */
851 @REQ(get_process_vm_counters)
852 obj_handle_t handle; /* process handle */
853 @REPLY
854 mem_size_t peak_virtual_size; /* peak virtual memory in bytes */
855 mem_size_t virtual_size; /* virtual memory in bytes */
856 mem_size_t peak_working_set_size; /* peak real memory in bytes */
857 mem_size_t working_set_size; /* real memory in bytes */
858 mem_size_t pagefile_usage; /* commit charge in bytes */
859 mem_size_t peak_pagefile_usage; /* peak commit charge in bytes */
860 @END
863 /* Set a process information */
864 @REQ(set_process_info)
865 obj_handle_t handle; /* process handle */
866 int mask; /* setting mask (see below) */
867 int priority; /* priority class */
868 affinity_t affinity; /* affinity mask */
869 @END
870 #define SET_PROCESS_INFO_PRIORITY 0x01
871 #define SET_PROCESS_INFO_AFFINITY 0x02
874 /* Retrieve information about a thread */
875 @REQ(get_thread_info)
876 obj_handle_t handle; /* thread handle */
877 thread_id_t tid_in; /* thread id (optional) */
878 @REPLY
879 process_id_t pid; /* server process id */
880 thread_id_t tid; /* server thread id */
881 client_ptr_t teb; /* thread teb pointer */
882 client_ptr_t entry_point; /* thread entry point */
883 affinity_t affinity; /* thread affinity mask */
884 int exit_code; /* thread exit code */
885 int priority; /* thread priority level */
886 int last; /* last thread in process */
887 @END
890 /* Retrieve information about thread times */
891 @REQ(get_thread_times)
892 obj_handle_t handle; /* thread handle */
893 @REPLY
894 timeout_t creation_time; /* thread creation time */
895 timeout_t exit_time; /* thread exit time */
896 @END
899 /* Set a thread information */
900 @REQ(set_thread_info)
901 obj_handle_t handle; /* thread handle */
902 int mask; /* setting mask (see below) */
903 int priority; /* priority class */
904 affinity_t affinity; /* affinity mask */
905 client_ptr_t entry_point; /* thread entry point */
906 obj_handle_t token; /* impersonation token */
907 @END
908 #define SET_THREAD_INFO_PRIORITY 0x01
909 #define SET_THREAD_INFO_AFFINITY 0x02
910 #define SET_THREAD_INFO_TOKEN 0x04
911 #define SET_THREAD_INFO_ENTRYPOINT 0x08
914 /* Retrieve information about a module */
915 @REQ(get_dll_info)
916 obj_handle_t handle; /* process handle */
917 mod_handle_t base_address; /* base address of module */
918 @REPLY
919 client_ptr_t entry_point;
920 data_size_t filename_len; /* buffer len in bytes required to store filename */
921 VARARG(filename,unicode_str); /* file name of module */
922 @END
925 /* Suspend a thread */
926 @REQ(suspend_thread)
927 obj_handle_t handle; /* thread handle */
928 @REPLY
929 int count; /* new suspend count */
930 @END
933 /* Resume a thread */
934 @REQ(resume_thread)
935 obj_handle_t handle; /* thread handle */
936 @REPLY
937 int count; /* new suspend count */
938 @END
941 /* Notify the server that a dll has been loaded */
942 @REQ(load_dll)
943 data_size_t dbg_offset; /* debug info offset */
944 mod_handle_t base; /* base address */
945 client_ptr_t name; /* ptr to ptr to name (in process addr space) */
946 data_size_t dbg_size; /* debug info size */
947 VARARG(filename,unicode_str); /* file name of dll */
948 @END
951 /* Notify the server that a dll is being unloaded */
952 @REQ(unload_dll)
953 mod_handle_t base; /* base address */
954 @END
957 /* Queue an APC for a thread or process */
958 @REQ(queue_apc)
959 obj_handle_t handle; /* thread or process handle */
960 apc_call_t call; /* call arguments */
961 @REPLY
962 obj_handle_t handle; /* APC handle */
963 int self; /* run APC in caller itself? */
964 @END
967 /* Get the result of an APC call */
968 @REQ(get_apc_result)
969 obj_handle_t handle; /* handle to the APC */
970 @REPLY
971 apc_result_t result; /* result of the APC */
972 @END
975 /* Close a handle for the current process */
976 @REQ(close_handle)
977 obj_handle_t handle; /* handle to close */
978 @END
981 /* Set a handle information */
982 @REQ(set_handle_info)
983 obj_handle_t handle; /* handle we are interested in */
984 int flags; /* new handle flags */
985 int mask; /* mask for flags to set */
986 @REPLY
987 int old_flags; /* old flag value */
988 @END
991 /* Duplicate a handle */
992 @REQ(dup_handle)
993 obj_handle_t src_process; /* src process handle */
994 obj_handle_t src_handle; /* src handle to duplicate */
995 obj_handle_t dst_process; /* dst process handle */
996 unsigned int access; /* wanted access rights */
997 unsigned int attributes; /* object attributes */
998 unsigned int options; /* duplicate options (see below) */
999 @REPLY
1000 obj_handle_t handle; /* duplicated handle in dst process */
1001 int self; /* is the source the current process? */
1002 int closed; /* whether the source handle has been closed */
1003 @END
1004 #define DUP_HANDLE_CLOSE_SOURCE DUPLICATE_CLOSE_SOURCE
1005 #define DUP_HANDLE_SAME_ACCESS DUPLICATE_SAME_ACCESS
1006 #define DUP_HANDLE_MAKE_GLOBAL 0x80000000 /* Not a Windows flag */
1009 /* Open a handle to a process */
1010 @REQ(open_process)
1011 process_id_t pid; /* process id to open */
1012 unsigned int access; /* wanted access rights */
1013 unsigned int attributes; /* object attributes */
1014 @REPLY
1015 obj_handle_t handle; /* handle to the process */
1016 @END
1019 /* Open a handle to a thread */
1020 @REQ(open_thread)
1021 thread_id_t tid; /* thread id to open */
1022 unsigned int access; /* wanted access rights */
1023 unsigned int attributes; /* object attributes */
1024 @REPLY
1025 obj_handle_t handle; /* handle to the thread */
1026 @END
1029 /* Wait for handles */
1030 @REQ(select)
1031 int flags; /* wait flags (see below) */
1032 client_ptr_t cookie; /* magic cookie to return to client */
1033 timeout_t timeout; /* timeout */
1034 obj_handle_t prev_apc; /* handle to previous APC */
1035 VARARG(result,apc_result); /* result of previous APC */
1036 VARARG(data,select_op); /* operation-specific data */
1037 @REPLY
1038 timeout_t timeout; /* timeout converted to absolute */
1039 apc_call_t call; /* APC call arguments */
1040 obj_handle_t apc_handle; /* handle to next APC */
1041 @END
1042 #define SELECT_ALERTABLE 1
1043 #define SELECT_INTERRUPTIBLE 2
1046 /* Create an event */
1047 @REQ(create_event)
1048 unsigned int access; /* wanted access rights */
1049 int manual_reset; /* manual reset event */
1050 int initial_state; /* initial state of the event */
1051 VARARG(objattr,object_attributes); /* object attributes */
1052 @REPLY
1053 obj_handle_t handle; /* handle to the event */
1054 @END
1056 /* Event operation */
1057 @REQ(event_op)
1058 obj_handle_t handle; /* handle to event */
1059 int op; /* event operation (see below) */
1060 @END
1061 enum event_op { PULSE_EVENT, SET_EVENT, RESET_EVENT };
1063 @REQ(query_event)
1064 obj_handle_t handle; /* handle to event */
1065 @REPLY
1066 int manual_reset; /* manual reset event */
1067 int state; /* current state of the event */
1068 @END
1070 /* Open an event */
1071 @REQ(open_event)
1072 unsigned int access; /* wanted access rights */
1073 unsigned int attributes; /* object attributes */
1074 obj_handle_t rootdir; /* root directory */
1075 VARARG(name,unicode_str); /* object name */
1076 @REPLY
1077 obj_handle_t handle; /* handle to the event */
1078 @END
1081 /* Create a keyed event */
1082 @REQ(create_keyed_event)
1083 unsigned int access; /* wanted access rights */
1084 VARARG(objattr,object_attributes); /* object attributes */
1085 @REPLY
1086 obj_handle_t handle; /* handle to the event */
1087 @END
1089 /* Open a keyed event */
1090 @REQ(open_keyed_event)
1091 unsigned int access; /* wanted access rights */
1092 unsigned int attributes; /* object attributes */
1093 obj_handle_t rootdir; /* root directory */
1094 VARARG(name,unicode_str); /* object name */
1095 @REPLY
1096 obj_handle_t handle; /* handle to the event */
1097 @END
1100 /* Create a mutex */
1101 @REQ(create_mutex)
1102 unsigned int access; /* wanted access rights */
1103 int owned; /* initially owned? */
1104 VARARG(objattr,object_attributes); /* object attributes */
1105 @REPLY
1106 obj_handle_t handle; /* handle to the mutex */
1107 @END
1110 /* Release a mutex */
1111 @REQ(release_mutex)
1112 obj_handle_t handle; /* handle to the mutex */
1113 @REPLY
1114 unsigned int prev_count; /* value of internal counter, before release */
1115 @END
1118 /* Open a mutex */
1119 @REQ(open_mutex)
1120 unsigned int access; /* wanted access rights */
1121 unsigned int attributes; /* object attributes */
1122 obj_handle_t rootdir; /* root directory */
1123 VARARG(name,unicode_str); /* object name */
1124 @REPLY
1125 obj_handle_t handle; /* handle to the mutex */
1126 @END
1129 /* Query a mutex */
1130 @REQ(query_mutex)
1131 obj_handle_t handle; /* handle to mutex */
1132 @REPLY
1133 unsigned int count; /* current count of mutex */
1134 int owned; /* true if owned by current thread */
1135 int abandoned; /* true if abandoned */
1136 @END
1139 /* Create a semaphore */
1140 @REQ(create_semaphore)
1141 unsigned int access; /* wanted access rights */
1142 unsigned int initial; /* initial count */
1143 unsigned int max; /* maximum count */
1144 VARARG(objattr,object_attributes); /* object attributes */
1145 @REPLY
1146 obj_handle_t handle; /* handle to the semaphore */
1147 @END
1150 /* Release a semaphore */
1151 @REQ(release_semaphore)
1152 obj_handle_t handle; /* handle to the semaphore */
1153 unsigned int count; /* count to add to semaphore */
1154 @REPLY
1155 unsigned int prev_count; /* previous semaphore count */
1156 @END
1158 @REQ(query_semaphore)
1159 obj_handle_t handle; /* handle to the semaphore */
1160 @REPLY
1161 unsigned int current; /* current count */
1162 unsigned int max; /* maximum count */
1163 @END
1165 /* Open a semaphore */
1166 @REQ(open_semaphore)
1167 unsigned int access; /* wanted access rights */
1168 unsigned int attributes; /* object attributes */
1169 obj_handle_t rootdir; /* root directory */
1170 VARARG(name,unicode_str); /* object name */
1171 @REPLY
1172 obj_handle_t handle; /* handle to the semaphore */
1173 @END
1176 /* Create a file */
1177 @REQ(create_file)
1178 unsigned int access; /* wanted access rights */
1179 unsigned int sharing; /* sharing flags */
1180 int create; /* file create action */
1181 unsigned int options; /* file options */
1182 unsigned int attrs; /* file attributes for creation */
1183 VARARG(objattr,object_attributes); /* object attributes */
1184 VARARG(filename,string); /* file name */
1185 @REPLY
1186 obj_handle_t handle; /* handle to the file */
1187 @END
1190 /* Open a file object */
1191 @REQ(open_file_object)
1192 unsigned int access; /* wanted access rights */
1193 unsigned int attributes; /* open attributes */
1194 obj_handle_t rootdir; /* root directory */
1195 unsigned int sharing; /* sharing flags */
1196 unsigned int options; /* file options */
1197 VARARG(filename,unicode_str); /* file name */
1198 @REPLY
1199 obj_handle_t handle; /* handle to the file */
1200 @END
1203 /* Allocate a file handle for a Unix fd */
1204 @REQ(alloc_file_handle)
1205 unsigned int access; /* wanted access rights */
1206 unsigned int attributes; /* object attributes */
1207 int fd; /* file descriptor on the client side */
1208 @REPLY
1209 obj_handle_t handle; /* handle to the file */
1210 @END
1213 /* Get the Unix name from a file handle */
1214 @REQ(get_handle_unix_name)
1215 obj_handle_t handle; /* file handle */
1216 @REPLY
1217 data_size_t name_len; /* unix name length */
1218 VARARG(name,string); /* unix name */
1219 @END
1222 /* Get a Unix fd to access a file */
1223 @REQ(get_handle_fd)
1224 obj_handle_t handle; /* handle to the file */
1225 @REPLY
1226 int type; /* file type (see below) */
1227 int cacheable; /* can fd be cached in the client? */
1228 unsigned int access; /* file access rights */
1229 unsigned int options; /* file open options */
1230 @END
1231 enum server_fd_type
1233 FD_TYPE_INVALID, /* invalid file (no associated fd) */
1234 FD_TYPE_FILE, /* regular file */
1235 FD_TYPE_DIR, /* directory */
1236 FD_TYPE_SOCKET, /* socket */
1237 FD_TYPE_SERIAL, /* serial port */
1238 FD_TYPE_PIPE, /* named pipe */
1239 FD_TYPE_MAILSLOT, /* mailslot */
1240 FD_TYPE_CHAR, /* unspecified char device */
1241 FD_TYPE_DEVICE, /* Windows device file */
1242 FD_TYPE_NB_TYPES
1246 /* Retrieve (or allocate) the client-side directory cache entry */
1247 @REQ(get_directory_cache_entry)
1248 obj_handle_t handle; /* handle to the directory */
1249 @REPLY
1250 int entry; /* cache entry on the client side */
1251 VARARG(free,ints); /* entries that can be freed */
1252 @END
1255 /* Flush a file buffers */
1256 @REQ(flush)
1257 async_data_t async; /* async I/O parameters */
1258 @REPLY
1259 obj_handle_t event; /* event set when finished */
1260 @END
1262 /* Queries volume information */
1263 @REQ(get_volume_info)
1264 obj_handle_t handle; /* handle to the file */
1265 unsigned int info_class; /* queried information class */
1266 @REPLY
1267 VARARG(data,bytes); /* volume info data */
1268 @END
1270 /* Lock a region of a file */
1271 @REQ(lock_file)
1272 obj_handle_t handle; /* handle to the file */
1273 file_pos_t offset; /* offset of start of lock */
1274 file_pos_t count; /* count of bytes to lock */
1275 int shared; /* shared or exclusive lock? */
1276 int wait; /* do we want to wait? */
1277 @REPLY
1278 obj_handle_t handle; /* handle to wait on */
1279 int overlapped; /* is it an overlapped I/O handle? */
1280 @END
1283 /* Unlock a region of a file */
1284 @REQ(unlock_file)
1285 obj_handle_t handle; /* handle to the file */
1286 file_pos_t offset; /* offset of start of unlock */
1287 file_pos_t count; /* count of bytes to unlock */
1288 @END
1291 /* Create a socket */
1292 @REQ(create_socket)
1293 unsigned int access; /* wanted access rights */
1294 unsigned int attributes; /* object attributes */
1295 int family; /* family, see socket manpage */
1296 int type; /* type, see socket manpage */
1297 int protocol; /* protocol, see socket manpage */
1298 unsigned int flags; /* socket flags */
1299 @REPLY
1300 obj_handle_t handle; /* handle to the new socket */
1301 @END
1304 /* Accept a socket */
1305 @REQ(accept_socket)
1306 obj_handle_t lhandle; /* handle to the listening socket */
1307 unsigned int access; /* wanted access rights */
1308 unsigned int attributes; /* object attributes */
1309 @REPLY
1310 obj_handle_t handle; /* handle to the new socket */
1311 @END
1314 /* Accept into an initialized socket */
1315 @REQ(accept_into_socket)
1316 obj_handle_t lhandle; /* handle to the listening socket */
1317 obj_handle_t ahandle; /* handle to the accepting socket */
1318 @END
1321 /* Set socket event parameters */
1322 @REQ(set_socket_event)
1323 obj_handle_t handle; /* handle to the socket */
1324 unsigned int mask; /* event mask */
1325 obj_handle_t event; /* event object */
1326 user_handle_t window; /* window to send the message to */
1327 unsigned int msg; /* message to send */
1328 @END
1331 /* Get socket event parameters */
1332 @REQ(get_socket_event)
1333 obj_handle_t handle; /* handle to the socket */
1334 int service; /* clear pending? */
1335 obj_handle_t c_event; /* event to clear */
1336 @REPLY
1337 unsigned int mask; /* event mask */
1338 unsigned int pmask; /* pending events */
1339 unsigned int state; /* status bits */
1340 VARARG(errors,ints); /* event errors */
1341 @END
1344 /* Get socket info */
1345 @REQ(get_socket_info)
1346 obj_handle_t handle; /* handle to the socket */
1347 @REPLY
1348 int family; /* family, see socket manpage */
1349 int type; /* type, see socket manpage */
1350 int protocol; /* protocol, see socket manpage */
1351 @END
1354 /* Re-enable pending socket events */
1355 @REQ(enable_socket_event)
1356 obj_handle_t handle; /* handle to the socket */
1357 unsigned int mask; /* events to re-enable */
1358 unsigned int sstate; /* status bits to set */
1359 unsigned int cstate; /* status bits to clear */
1360 @END
1362 @REQ(set_socket_deferred)
1363 obj_handle_t handle; /* handle to the socket */
1364 obj_handle_t deferred; /* handle to the socket for which accept() is deferred */
1365 @END
1367 /* Allocate a console (only used by a console renderer) */
1368 @REQ(alloc_console)
1369 unsigned int access; /* wanted access rights */
1370 unsigned int attributes; /* object attributes */
1371 process_id_t pid; /* pid of process which shall be attached to the console */
1372 int input_fd; /* if pid=-1 (bare console to current process), fd for input */
1373 @REPLY
1374 obj_handle_t handle_in; /* handle to console input */
1375 obj_handle_t event; /* handle to renderer events change notification */
1376 @END
1379 /* Free the console of the current process */
1380 @REQ(free_console)
1381 @END
1384 #define CONSOLE_RENDERER_NONE_EVENT 0x00
1385 #define CONSOLE_RENDERER_TITLE_EVENT 0x01
1386 #define CONSOLE_RENDERER_ACTIVE_SB_EVENT 0x02
1387 #define CONSOLE_RENDERER_SB_RESIZE_EVENT 0x03
1388 #define CONSOLE_RENDERER_UPDATE_EVENT 0x04
1389 #define CONSOLE_RENDERER_CURSOR_POS_EVENT 0x05
1390 #define CONSOLE_RENDERER_CURSOR_GEOM_EVENT 0x06
1391 #define CONSOLE_RENDERER_DISPLAY_EVENT 0x07
1392 #define CONSOLE_RENDERER_EXIT_EVENT 0x08
1393 struct console_renderer_event
1395 short event;
1396 union
1398 struct update
1400 short top;
1401 short bottom;
1402 } update;
1403 struct resize
1405 short width;
1406 short height;
1407 } resize;
1408 struct cursor_pos
1410 short x;
1411 short y;
1412 } cursor_pos;
1413 struct cursor_geom
1415 short visible;
1416 short size;
1417 } cursor_geom;
1418 struct display
1420 short left;
1421 short top;
1422 short width;
1423 short height;
1424 } display;
1425 } u;
1428 /* retrieve console events for the renderer */
1429 @REQ(get_console_renderer_events)
1430 obj_handle_t handle; /* handle to console input events */
1431 @REPLY
1432 VARARG(data,bytes); /* the various console_renderer_events */
1433 @END
1436 /* Open a handle to the process console */
1437 @REQ(open_console)
1438 obj_handle_t from; /* 0 (resp 1) input (resp output) of current process console */
1439 /* otherwise console_in handle to get active screen buffer? */
1440 unsigned int access; /* wanted access rights */
1441 unsigned int attributes; /* object attributes */
1442 int share; /* share mask (only for output handles) */
1443 @REPLY
1444 obj_handle_t handle; /* handle to the console */
1445 @END
1448 /* Get the input queue wait event */
1449 @REQ(get_console_wait_event)
1450 @REPLY
1451 obj_handle_t handle;
1452 @END
1454 /* Get a console mode (input or output) */
1455 @REQ(get_console_mode)
1456 obj_handle_t handle; /* handle to the console */
1457 @REPLY
1458 int mode; /* console mode */
1459 @END
1462 /* Set a console mode (input or output) */
1463 @REQ(set_console_mode)
1464 obj_handle_t handle; /* handle to the console */
1465 int mode; /* console mode */
1466 @END
1469 /* Set info about a console (input only) */
1470 @REQ(set_console_input_info)
1471 obj_handle_t handle; /* handle to console input, or 0 for process' console */
1472 int mask; /* setting mask (see below) */
1473 obj_handle_t active_sb; /* active screen buffer */
1474 int history_mode; /* whether we duplicate lines in history */
1475 int history_size; /* number of lines in history */
1476 int edition_mode; /* index to the edition mode flavors */
1477 int input_cp; /* console input codepage */
1478 int output_cp; /* console output codepage */
1479 user_handle_t win; /* console window if backend supports it */
1480 VARARG(title,unicode_str); /* console title */
1481 @END
1482 #define SET_CONSOLE_INPUT_INFO_ACTIVE_SB 0x01
1483 #define SET_CONSOLE_INPUT_INFO_TITLE 0x02
1484 #define SET_CONSOLE_INPUT_INFO_HISTORY_MODE 0x04
1485 #define SET_CONSOLE_INPUT_INFO_HISTORY_SIZE 0x08
1486 #define SET_CONSOLE_INPUT_INFO_EDITION_MODE 0x10
1487 #define SET_CONSOLE_INPUT_INFO_INPUT_CODEPAGE 0x20
1488 #define SET_CONSOLE_INPUT_INFO_OUTPUT_CODEPAGE 0x40
1489 #define SET_CONSOLE_INPUT_INFO_WIN 0x80
1492 /* Get info about a console (input only) */
1493 @REQ(get_console_input_info)
1494 obj_handle_t handle; /* handle to console input, or 0 for process' console */
1495 @REPLY
1496 int history_mode; /* whether we duplicate lines in history */
1497 int history_size; /* number of lines in history */
1498 int history_index; /* number of used lines in history */
1499 int edition_mode; /* index to the edition mode flavors */
1500 int input_cp; /* console input codepage */
1501 int output_cp; /* console output codepage */
1502 user_handle_t win; /* console window if backend supports it */
1503 VARARG(title,unicode_str); /* console title */
1504 @END
1507 /* appends a string to console's history */
1508 @REQ(append_console_input_history)
1509 obj_handle_t handle; /* handle to console input, or 0 for process' console */
1510 VARARG(line,unicode_str); /* line to add */
1511 @END
1514 /* appends a string to console's history */
1515 @REQ(get_console_input_history)
1516 obj_handle_t handle; /* handle to console input, or 0 for process' console */
1517 int index; /* index to get line from */
1518 @REPLY
1519 int total; /* total length of line in Unicode chars */
1520 VARARG(line,unicode_str); /* line to add */
1521 @END
1524 /* creates a new screen buffer on process' console */
1525 @REQ(create_console_output)
1526 obj_handle_t handle_in; /* handle to console input, or 0 for process' console */
1527 unsigned int access; /* wanted access rights */
1528 unsigned int attributes; /* object attributes */
1529 unsigned int share; /* sharing credentials */
1530 int fd; /* for bare consoles, fd the screen-buffer is attached to */
1531 @REPLY
1532 obj_handle_t handle_out; /* handle to the screen buffer */
1533 @END
1536 /* Set info about a console (output only) */
1537 @REQ(set_console_output_info)
1538 obj_handle_t handle; /* handle to the console */
1539 int mask; /* setting mask (see below) */
1540 short int cursor_size; /* size of cursor (percentage filled) */
1541 short int cursor_visible;/* cursor visibility flag */
1542 short int cursor_x; /* position of cursor (x, y) */
1543 short int cursor_y;
1544 short int width; /* width of the screen buffer */
1545 short int height; /* height of the screen buffer */
1546 short int attr; /* default fill attributes (screen colors) */
1547 short int popup_attr; /* pop-up color attributes */
1548 short int win_left; /* window actually displayed by renderer */
1549 short int win_top; /* the rect area is expressed within the */
1550 short int win_right; /* boundaries of the screen buffer */
1551 short int win_bottom;
1552 short int max_width; /* maximum size (width x height) for the window */
1553 short int max_height;
1554 short int font_width; /* font size (width x height) */
1555 short int font_height;
1556 VARARG(colors,uints); /* color table */
1557 @END
1558 #define SET_CONSOLE_OUTPUT_INFO_CURSOR_GEOM 0x0001
1559 #define SET_CONSOLE_OUTPUT_INFO_CURSOR_POS 0x0002
1560 #define SET_CONSOLE_OUTPUT_INFO_SIZE 0x0004
1561 #define SET_CONSOLE_OUTPUT_INFO_ATTR 0x0008
1562 #define SET_CONSOLE_OUTPUT_INFO_DISPLAY_WINDOW 0x0010
1563 #define SET_CONSOLE_OUTPUT_INFO_MAX_SIZE 0x0020
1564 #define SET_CONSOLE_OUTPUT_INFO_FONT 0x0040
1565 #define SET_CONSOLE_OUTPUT_INFO_COLORTABLE 0x0080
1566 #define SET_CONSOLE_OUTPUT_INFO_POPUP_ATTR 0x0100
1569 /* Get info about a console (output only) */
1570 @REQ(get_console_output_info)
1571 obj_handle_t handle; /* handle to the console */
1572 @REPLY
1573 short int cursor_size; /* size of cursor (percentage filled) */
1574 short int cursor_visible;/* cursor visibility flag */
1575 short int cursor_x; /* position of cursor (x, y) */
1576 short int cursor_y;
1577 short int width; /* width of the screen buffer */
1578 short int height; /* height of the screen buffer */
1579 short int attr; /* default fill attributes (screen colors) */
1580 short int popup_attr; /* pop-up color attributes */
1581 short int win_left; /* window actually displayed by renderer */
1582 short int win_top; /* the rect area is expressed within the */
1583 short int win_right; /* boundaries of the screen buffer */
1584 short int win_bottom;
1585 short int max_width; /* maximum size (width x height) for the window */
1586 short int max_height;
1587 short int font_width; /* font size (width x height) */
1588 short int font_height;
1589 VARARG(colors,uints); /* color table */
1590 @END
1592 /* Add input records to a console input queue */
1593 @REQ(write_console_input)
1594 obj_handle_t handle; /* handle to the console input */
1595 VARARG(rec,input_records); /* input records */
1596 @REPLY
1597 int written; /* number of records written */
1598 @END
1601 /* Fetch input records from a console input queue */
1602 @REQ(read_console_input)
1603 obj_handle_t handle; /* handle to the console input */
1604 int flush; /* flush the retrieved records from the queue? */
1605 @REPLY
1606 int read; /* number of records read */
1607 VARARG(rec,input_records); /* input records */
1608 @END
1611 /* write data (chars and/or attributes) in a screen buffer */
1612 @REQ(write_console_output)
1613 obj_handle_t handle; /* handle to the console output */
1614 int x; /* position where to start writing */
1615 int y;
1616 int mode; /* char info (see below) */
1617 int wrap; /* wrap around at end of line? */
1618 VARARG(data,bytes); /* info to write */
1619 @REPLY
1620 int written; /* number of char infos actually written */
1621 int width; /* width of screen buffer */
1622 int height; /* height of screen buffer */
1623 @END
1624 enum char_info_mode
1626 CHAR_INFO_MODE_TEXT, /* characters only */
1627 CHAR_INFO_MODE_ATTR, /* attributes only */
1628 CHAR_INFO_MODE_TEXTATTR, /* both characters and attributes */
1629 CHAR_INFO_MODE_TEXTSTDATTR /* characters but use standard attributes */
1633 /* fill a screen buffer with constant data (chars and/or attributes) */
1634 @REQ(fill_console_output)
1635 obj_handle_t handle; /* handle to the console output */
1636 int x; /* position where to start writing */
1637 int y;
1638 int mode; /* char info mode */
1639 int count; /* number to write */
1640 int wrap; /* wrap around at end of line? */
1641 char_info_t data; /* data to write */
1642 @REPLY
1643 int written; /* number of char infos actually written */
1644 @END
1647 /* read data (chars and/or attributes) from a screen buffer */
1648 @REQ(read_console_output)
1649 obj_handle_t handle; /* handle to the console output */
1650 int x; /* position (x,y) where to start reading */
1651 int y;
1652 int mode; /* char info mode */
1653 int wrap; /* wrap around at end of line? */
1654 @REPLY
1655 int width; /* width of screen buffer */
1656 int height; /* height of screen buffer */
1657 VARARG(data,bytes);
1658 @END
1661 /* move a rect (of data) in screen buffer content */
1662 @REQ(move_console_output)
1663 obj_handle_t handle; /* handle to the console output */
1664 short int x_src; /* position (x, y) of rect to start moving from */
1665 short int y_src;
1666 short int x_dst; /* position (x, y) of rect to move to */
1667 short int y_dst;
1668 short int w; /* size of the rect (width, height) to move */
1669 short int h;
1670 @END
1673 /* Sends a signal to a process group */
1674 @REQ(send_console_signal)
1675 int signal; /* the signal to send */
1676 process_id_t group_id; /* the group to send the signal to */
1677 @END
1680 /* enable directory change notifications */
1681 @REQ(read_directory_changes)
1682 unsigned int filter; /* notification filter */
1683 int subtree; /* watch the subtree? */
1684 int want_data; /* flag indicating whether change data should be collected */
1685 async_data_t async; /* async I/O parameters */
1686 @END
1689 @REQ(read_change)
1690 obj_handle_t handle;
1691 @REPLY
1692 VARARG(events,filesystem_event); /* collected filesystem events */
1693 @END
1696 /* Create a file mapping */
1697 @REQ(create_mapping)
1698 unsigned int access; /* wanted access rights */
1699 unsigned int flags; /* SEC_* flags */
1700 unsigned int file_access; /* file access rights */
1701 mem_size_t size; /* mapping size */
1702 obj_handle_t file_handle; /* file handle */
1703 VARARG(objattr,object_attributes); /* object attributes */
1704 @REPLY
1705 obj_handle_t handle; /* handle to the mapping */
1706 @END
1709 /* Open a mapping */
1710 @REQ(open_mapping)
1711 unsigned int access; /* wanted access rights */
1712 unsigned int attributes; /* object attributes */
1713 obj_handle_t rootdir; /* root directory */
1714 VARARG(name,unicode_str); /* object name */
1715 @REPLY
1716 obj_handle_t handle; /* handle to the mapping */
1717 @END
1720 /* Get information about a file mapping */
1721 @REQ(get_mapping_info)
1722 obj_handle_t handle; /* handle to the mapping */
1723 unsigned int access; /* wanted access rights */
1724 @REPLY
1725 mem_size_t size; /* mapping size */
1726 unsigned int flags; /* SEC_* flags */
1727 obj_handle_t shared_file; /* shared mapping file handle */
1728 VARARG(image,pe_image_info);/* image info for SEC_IMAGE mappings */
1729 @END
1732 /* Add a memory view in the current process */
1733 @REQ(map_view)
1734 obj_handle_t mapping; /* file mapping handle */
1735 unsigned int access; /* wanted access rights */
1736 client_ptr_t base; /* view base address (page-aligned) */
1737 mem_size_t size; /* view size */
1738 file_pos_t start; /* start offset in mapping */
1739 @END
1742 /* Unmap a memory view from the current process */
1743 @REQ(unmap_view)
1744 client_ptr_t base; /* view base address */
1745 @END
1748 /* Get a range of committed pages in a file mapping */
1749 @REQ(get_mapping_committed_range)
1750 client_ptr_t base; /* view base address */
1751 file_pos_t offset; /* starting offset (page-aligned, in bytes) */
1752 @REPLY
1753 mem_size_t size; /* size of range starting at offset (page-aligned, in bytes) */
1754 int committed; /* whether it is a committed range */
1755 @END
1758 /* Add a range to the committed pages in a file mapping */
1759 @REQ(add_mapping_committed_range)
1760 client_ptr_t base; /* view base address */
1761 file_pos_t offset; /* starting offset (page-aligned, in bytes) */
1762 mem_size_t size; /* size to set (page-aligned, in bytes) or 0 if only retrieving */
1763 @END
1766 /* Check if two memory maps are for the same file */
1767 @REQ(is_same_mapping)
1768 client_ptr_t base1; /* first view base address */
1769 client_ptr_t base2; /* second view base address */
1770 @END
1773 #define SNAP_PROCESS 0x00000001
1774 #define SNAP_THREAD 0x00000002
1775 /* Create a snapshot */
1776 @REQ(create_snapshot)
1777 unsigned int attributes; /* object attributes */
1778 unsigned int flags; /* snapshot flags (SNAP_*) */
1779 @REPLY
1780 obj_handle_t handle; /* handle to the snapshot */
1781 @END
1784 /* Get the next process from a snapshot */
1785 @REQ(next_process)
1786 obj_handle_t handle; /* handle to the snapshot */
1787 int reset; /* reset snapshot position? */
1788 @REPLY
1789 int count; /* process usage count */
1790 process_id_t pid; /* process id */
1791 process_id_t ppid; /* parent process id */
1792 int threads; /* number of threads */
1793 int priority; /* process priority */
1794 int handles; /* number of handles */
1795 int unix_pid; /* Unix pid */
1796 VARARG(filename,unicode_str); /* file name of main exe */
1797 @END
1800 /* Get the next thread from a snapshot */
1801 @REQ(next_thread)
1802 obj_handle_t handle; /* handle to the snapshot */
1803 int reset; /* reset snapshot position? */
1804 @REPLY
1805 int count; /* thread usage count */
1806 process_id_t pid; /* process id */
1807 thread_id_t tid; /* thread id */
1808 int base_pri; /* base priority */
1809 int delta_pri; /* delta priority */
1810 @END
1813 /* Wait for a debug event */
1814 @REQ(wait_debug_event)
1815 int get_handle; /* should we alloc a handle for waiting? */
1816 @REPLY
1817 process_id_t pid; /* process id */
1818 thread_id_t tid; /* thread id */
1819 obj_handle_t wait; /* wait handle if no event ready */
1820 VARARG(event,debug_event); /* debug event data */
1821 @END
1824 /* Queue an exception event */
1825 @REQ(queue_exception_event)
1826 int first; /* first chance exception? */
1827 unsigned int code; /* exception code */
1828 unsigned int flags; /* exception flags */
1829 client_ptr_t record; /* exception record */
1830 client_ptr_t address; /* exception address */
1831 data_size_t len; /* size of parameters */
1832 VARARG(params,uints64,len);/* exception parameters */
1833 VARARG(context,context); /* thread context */
1834 @REPLY
1835 obj_handle_t handle; /* handle to the queued event */
1836 @END
1839 /* Retrieve the status of an exception event */
1840 @REQ(get_exception_status)
1841 obj_handle_t handle; /* handle to the queued event */
1842 @REPLY
1843 VARARG(context,context); /* modified thread context */
1844 @END
1847 /* Continue a debug event */
1848 @REQ(continue_debug_event)
1849 process_id_t pid; /* process id to continue */
1850 thread_id_t tid; /* thread id to continue */
1851 int status; /* continuation status */
1852 @END
1855 /* Start/stop debugging an existing process */
1856 @REQ(debug_process)
1857 process_id_t pid; /* id of the process to debug */
1858 int attach; /* 1=attaching / 0=detaching from the process */
1859 @END
1862 /* Simulate a breakpoint in a process */
1863 @REQ(debug_break)
1864 obj_handle_t handle; /* process handle */
1865 @REPLY
1866 int self; /* was it the caller itself? */
1867 @END
1870 /* Set debugger kill on exit flag */
1871 @REQ(set_debugger_kill_on_exit)
1872 int kill_on_exit; /* 0=detach/1=kill debuggee when debugger dies */
1873 @END
1876 /* Read data from a process address space */
1877 @REQ(read_process_memory)
1878 obj_handle_t handle; /* process handle */
1879 client_ptr_t addr; /* addr to read from */
1880 @REPLY
1881 VARARG(data,bytes); /* result data */
1882 @END
1885 /* Write data to a process address space */
1886 @REQ(write_process_memory)
1887 obj_handle_t handle; /* process handle */
1888 client_ptr_t addr; /* addr to write to */
1889 VARARG(data,bytes); /* data to write */
1890 @END
1893 /* Create a registry key */
1894 @REQ(create_key)
1895 unsigned int access; /* desired access rights */
1896 unsigned int options; /* creation options */
1897 VARARG(objattr,object_attributes); /* object attributes */
1898 VARARG(class,unicode_str); /* class name */
1899 @REPLY
1900 obj_handle_t hkey; /* handle to the created key */
1901 int created; /* has it been newly created? */
1902 @END
1904 /* Open a registry key */
1905 @REQ(open_key)
1906 obj_handle_t parent; /* handle to the parent key */
1907 unsigned int access; /* desired access rights */
1908 unsigned int attributes; /* object attributes */
1909 VARARG(name,unicode_str); /* key name */
1910 @REPLY
1911 obj_handle_t hkey; /* handle to the open key */
1912 @END
1915 /* Delete a registry key */
1916 @REQ(delete_key)
1917 obj_handle_t hkey; /* handle to the key */
1918 @END
1921 /* Flush a registry key */
1922 @REQ(flush_key)
1923 obj_handle_t hkey; /* handle to the key */
1924 @END
1927 /* Enumerate registry subkeys */
1928 @REQ(enum_key)
1929 obj_handle_t hkey; /* handle to registry key */
1930 int index; /* index of subkey (or -1 for current key) */
1931 int info_class; /* requested information class */
1932 @REPLY
1933 int subkeys; /* number of subkeys */
1934 int max_subkey; /* longest subkey name */
1935 int max_class; /* longest class name */
1936 int values; /* number of values */
1937 int max_value; /* longest value name */
1938 int max_data; /* longest value data */
1939 timeout_t modif; /* last modification time */
1940 data_size_t total; /* total length needed for full name and class */
1941 data_size_t namelen; /* length of key name in bytes */
1942 VARARG(name,unicode_str,namelen); /* key name */
1943 VARARG(class,unicode_str); /* class name */
1944 @END
1947 /* Set a value of a registry key */
1948 @REQ(set_key_value)
1949 obj_handle_t hkey; /* handle to registry key */
1950 int type; /* value type */
1951 data_size_t namelen; /* length of value name in bytes */
1952 VARARG(name,unicode_str,namelen); /* value name */
1953 VARARG(data,bytes); /* value data */
1954 @END
1957 /* Retrieve the value of a registry key */
1958 @REQ(get_key_value)
1959 obj_handle_t hkey; /* handle to registry key */
1960 VARARG(name,unicode_str); /* value name */
1961 @REPLY
1962 int type; /* value type */
1963 data_size_t total; /* total length needed for data */
1964 VARARG(data,bytes); /* value data */
1965 @END
1968 /* Enumerate a value of a registry key */
1969 @REQ(enum_key_value)
1970 obj_handle_t hkey; /* handle to registry key */
1971 int index; /* value index */
1972 int info_class; /* requested information class */
1973 @REPLY
1974 int type; /* value type */
1975 data_size_t total; /* total length needed for full name and data */
1976 data_size_t namelen; /* length of value name in bytes */
1977 VARARG(name,unicode_str,namelen); /* value name */
1978 VARARG(data,bytes); /* value data */
1979 @END
1982 /* Delete a value of a registry key */
1983 @REQ(delete_key_value)
1984 obj_handle_t hkey; /* handle to registry key */
1985 VARARG(name,unicode_str); /* value name */
1986 @END
1989 /* Load a registry branch from a file */
1990 @REQ(load_registry)
1991 obj_handle_t file; /* file to load from */
1992 VARARG(objattr,object_attributes); /* object attributes */
1993 @END
1996 /* UnLoad a registry branch from a file */
1997 @REQ(unload_registry)
1998 obj_handle_t hkey; /* root key to unload to */
1999 @END
2002 /* Save a registry branch to a file */
2003 @REQ(save_registry)
2004 obj_handle_t hkey; /* key to save */
2005 obj_handle_t file; /* file to save to */
2006 @END
2009 /* Add a registry key change notification */
2010 @REQ(set_registry_notification)
2011 obj_handle_t hkey; /* key to watch for changes */
2012 obj_handle_t event; /* event to set */
2013 int subtree; /* should we watch the whole subtree? */
2014 unsigned int filter; /* things to watch */
2015 @END
2018 /* Create a waitable timer */
2019 @REQ(create_timer)
2020 unsigned int access; /* wanted access rights */
2021 int manual; /* manual reset */
2022 VARARG(objattr,object_attributes); /* object attributes */
2023 @REPLY
2024 obj_handle_t handle; /* handle to the timer */
2025 @END
2028 /* Open a waitable timer */
2029 @REQ(open_timer)
2030 unsigned int access; /* wanted access rights */
2031 unsigned int attributes; /* object attributes */
2032 obj_handle_t rootdir; /* root directory */
2033 VARARG(name,unicode_str); /* object name */
2034 @REPLY
2035 obj_handle_t handle; /* handle to the timer */
2036 @END
2038 /* Set a waitable timer */
2039 @REQ(set_timer)
2040 obj_handle_t handle; /* handle to the timer */
2041 timeout_t expire; /* next expiration absolute time */
2042 client_ptr_t callback; /* callback function */
2043 client_ptr_t arg; /* callback argument */
2044 int period; /* timer period in ms */
2045 @REPLY
2046 int signaled; /* was the timer signaled before this call ? */
2047 @END
2049 /* Cancel a waitable timer */
2050 @REQ(cancel_timer)
2051 obj_handle_t handle; /* handle to the timer */
2052 @REPLY
2053 int signaled; /* was the timer signaled before this calltime ? */
2054 @END
2056 /* Get information on a waitable timer */
2057 @REQ(get_timer_info)
2058 obj_handle_t handle; /* handle to the timer */
2059 @REPLY
2060 timeout_t when; /* absolute time when the timer next expires */
2061 int signaled; /* is the timer signaled? */
2062 @END
2065 /* Retrieve the current context of a thread */
2066 @REQ(get_thread_context)
2067 obj_handle_t handle; /* thread handle */
2068 unsigned int flags; /* context flags */
2069 int suspend; /* suspend the thread if needed */
2070 @REPLY
2071 int self; /* was it a handle to the current thread? */
2072 VARARG(context,context); /* thread context */
2073 @END
2076 /* Set the current context of a thread */
2077 @REQ(set_thread_context)
2078 obj_handle_t handle; /* thread handle */
2079 int suspend; /* suspend the thread if needed */
2080 VARARG(context,context); /* thread context */
2081 @REPLY
2082 int self; /* was it a handle to the current thread? */
2083 @END
2086 /* Fetch a selector entry for a thread */
2087 @REQ(get_selector_entry)
2088 obj_handle_t handle; /* thread handle */
2089 int entry; /* LDT entry */
2090 @REPLY
2091 unsigned int base; /* selector base */
2092 unsigned int limit; /* selector limit */
2093 unsigned char flags; /* selector flags */
2094 @END
2097 /* Add an atom */
2098 @REQ(add_atom)
2099 obj_handle_t table; /* which table to add atom to */
2100 VARARG(name,unicode_str); /* atom name */
2101 @REPLY
2102 atom_t atom; /* resulting atom */
2103 @END
2106 /* Delete an atom */
2107 @REQ(delete_atom)
2108 obj_handle_t table; /* which table to delete atom from */
2109 atom_t atom; /* atom handle */
2110 @END
2113 /* Find an atom */
2114 @REQ(find_atom)
2115 obj_handle_t table; /* which table to find atom from */
2116 VARARG(name,unicode_str); /* atom name */
2117 @REPLY
2118 atom_t atom; /* atom handle */
2119 @END
2122 /* Get information about an atom */
2123 @REQ(get_atom_information)
2124 obj_handle_t table; /* which table to find atom from */
2125 atom_t atom; /* atom handle */
2126 @REPLY
2127 int count; /* atom lock count */
2128 int pinned; /* whether the atom has been pinned */
2129 data_size_t total; /* actual length of atom name */
2130 VARARG(name,unicode_str); /* atom name */
2131 @END
2134 /* Set information about an atom */
2135 @REQ(set_atom_information)
2136 obj_handle_t table; /* which table to find atom from */
2137 atom_t atom; /* atom handle */
2138 int pinned; /* whether to bump atom information */
2139 @END
2142 /* Empty an atom table */
2143 @REQ(empty_atom_table)
2144 obj_handle_t table; /* which table to find atom from */
2145 int if_pinned; /* whether to delete pinned atoms */
2146 @END
2149 /* Init an atom table */
2150 @REQ(init_atom_table)
2151 int entries; /* number of entries (only for local) */
2152 @REPLY
2153 obj_handle_t table; /* handle to the atom table */
2154 @END
2157 /* Get the message queue of the current thread */
2158 @REQ(get_msg_queue)
2159 @REPLY
2160 obj_handle_t handle; /* handle to the queue */
2161 @END
2164 /* Set the file descriptor associated to the current thread queue */
2165 @REQ(set_queue_fd)
2166 obj_handle_t handle; /* handle to the file descriptor */
2167 @END
2170 /* Set the current message queue wakeup mask */
2171 @REQ(set_queue_mask)
2172 unsigned int wake_mask; /* wakeup bits mask */
2173 unsigned int changed_mask; /* changed bits mask */
2174 int skip_wait; /* will we skip waiting if signaled? */
2175 @REPLY
2176 unsigned int wake_bits; /* current wake bits */
2177 unsigned int changed_bits; /* current changed bits */
2178 @END
2181 /* Get the current message queue status */
2182 @REQ(get_queue_status)
2183 unsigned int clear_bits; /* should we clear the change bits? */
2184 @REPLY
2185 unsigned int wake_bits; /* wake bits */
2186 unsigned int changed_bits; /* changed bits since last time */
2187 @END
2190 /* Retrieve the process idle event */
2191 @REQ(get_process_idle_event)
2192 obj_handle_t handle; /* process handle */
2193 @REPLY
2194 obj_handle_t event; /* handle to idle event */
2195 @END
2198 /* Send a message to a thread queue */
2199 @REQ(send_message)
2200 thread_id_t id; /* thread id */
2201 int type; /* message type (see below) */
2202 int flags; /* message flags (see below) */
2203 user_handle_t win; /* window handle */
2204 unsigned int msg; /* message code */
2205 lparam_t wparam; /* parameters */
2206 lparam_t lparam; /* parameters */
2207 timeout_t timeout; /* timeout for reply */
2208 VARARG(data,message_data); /* message data for sent messages */
2209 @END
2211 @REQ(post_quit_message)
2212 int exit_code; /* exit code to return */
2213 @END
2215 enum message_type
2217 MSG_ASCII, /* Ascii message (from SendMessageA) */
2218 MSG_UNICODE, /* Unicode message (from SendMessageW) */
2219 MSG_NOTIFY, /* notify message (from SendNotifyMessageW), always Unicode */
2220 MSG_CALLBACK, /* callback message (from SendMessageCallbackW), always Unicode */
2221 MSG_CALLBACK_RESULT,/* result of a callback message */
2222 MSG_OTHER_PROCESS, /* sent from other process, may include vararg data, always Unicode */
2223 MSG_POSTED, /* posted message (from PostMessageW), always Unicode */
2224 MSG_HARDWARE, /* hardware message */
2225 MSG_WINEVENT, /* winevent message */
2226 MSG_HOOK_LL /* low-level hardware hook */
2228 #define SEND_MSG_ABORT_IF_HUNG 0x01
2231 /* Send a hardware message to a thread queue */
2232 @REQ(send_hardware_message)
2233 user_handle_t win; /* window handle */
2234 hw_input_t input; /* input data */
2235 unsigned int flags; /* flags (see below) */
2236 @REPLY
2237 int wait; /* do we need to wait for a reply? */
2238 int prev_x; /* previous cursor position */
2239 int prev_y;
2240 int new_x; /* new cursor position */
2241 int new_y;
2242 VARARG(keystate,bytes); /* global state array for all the keys */
2243 @END
2244 #define SEND_HWMSG_INJECTED 0x01
2247 /* Get a message from the current queue */
2248 @REQ(get_message)
2249 unsigned int flags; /* PM_* flags */
2250 user_handle_t get_win; /* window handle to get */
2251 unsigned int get_first; /* first message code to get */
2252 unsigned int get_last; /* last message code to get */
2253 unsigned int hw_id; /* id of the previous hardware message (or 0) */
2254 unsigned int wake_mask; /* wakeup bits mask */
2255 unsigned int changed_mask; /* changed bits mask */
2256 @REPLY
2257 user_handle_t win; /* window handle */
2258 unsigned int msg; /* message code */
2259 lparam_t wparam; /* parameters */
2260 lparam_t lparam; /* parameters */
2261 int type; /* message type */
2262 int x; /* message x position */
2263 int y; /* message y position */
2264 unsigned int time; /* message time */
2265 unsigned int active_hooks; /* active hooks bitmap */
2266 data_size_t total; /* total size of extra data */
2267 VARARG(data,message_data); /* message data for sent messages */
2268 @END
2271 /* Reply to a sent message */
2272 @REQ(reply_message)
2273 int remove; /* should we remove the message? */
2274 lparam_t result; /* message result */
2275 VARARG(data,bytes); /* message data for sent messages */
2276 @END
2279 /* Accept the current hardware message */
2280 @REQ(accept_hardware_message)
2281 unsigned int hw_id; /* id of the hardware message */
2282 int remove; /* should we remove the message? */
2283 @END
2286 /* Retrieve the reply for the last message sent */
2287 @REQ(get_message_reply)
2288 int cancel; /* cancel message if not ready? */
2289 @REPLY
2290 lparam_t result; /* message result */
2291 VARARG(data,bytes); /* message data for sent messages */
2292 @END
2295 /* Set a window timer */
2296 @REQ(set_win_timer)
2297 user_handle_t win; /* window handle */
2298 unsigned int msg; /* message to post */
2299 unsigned int rate; /* timer rate in ms */
2300 lparam_t id; /* timer id */
2301 lparam_t lparam; /* message lparam (callback proc) */
2302 @REPLY
2303 lparam_t id; /* timer id */
2304 @END
2307 /* Kill a window timer */
2308 @REQ(kill_win_timer)
2309 user_handle_t win; /* window handle */
2310 lparam_t id; /* timer id */
2311 unsigned int msg; /* message to post */
2312 @END
2315 /* check if the thread owning the window is hung */
2316 @REQ(is_window_hung)
2317 user_handle_t win; /* window handle */
2318 @REPLY
2319 int is_hung;
2320 @END
2323 /* Retrieve info about a serial port */
2324 @REQ(get_serial_info)
2325 obj_handle_t handle; /* handle to comm port */
2326 int flags;
2327 @REPLY
2328 unsigned int eventmask;
2329 unsigned int cookie;
2330 unsigned int pending_write;
2331 @END
2334 /* Set info about a serial port */
2335 @REQ(set_serial_info)
2336 obj_handle_t handle; /* handle to comm port */
2337 int flags; /* bitmask to set values (see below) */
2338 @END
2339 #define SERIALINFO_PENDING_WRITE 0x04
2340 #define SERIALINFO_PENDING_WAIT 0x08
2343 /* Create an async I/O */
2344 @REQ(register_async)
2345 int type; /* type of queue to look after */
2346 async_data_t async; /* async I/O parameters */
2347 int count; /* count - usually # of bytes to be read/written */
2348 @END
2349 #define ASYNC_TYPE_READ 0x01
2350 #define ASYNC_TYPE_WRITE 0x02
2351 #define ASYNC_TYPE_WAIT 0x03
2354 /* Cancel all async op on a fd */
2355 @REQ(cancel_async)
2356 obj_handle_t handle; /* handle to comm port, socket or file */
2357 client_ptr_t iosb; /* I/O status block (NULL=all) */
2358 int only_thread; /* cancel matching this thread */
2359 @END
2362 /* Retrieve results of an async */
2363 @REQ(get_async_result)
2364 client_ptr_t user_arg; /* user arg used to identify async */
2365 @REPLY
2366 data_size_t size; /* result size (input or output depending on the operation) */
2367 VARARG(out_data,bytes); /* iosb output data */
2368 @END
2371 /* Perform a read on a file object */
2372 @REQ(read)
2373 async_data_t async; /* async I/O parameters */
2374 file_pos_t pos; /* read position */
2375 @REPLY
2376 obj_handle_t wait; /* handle to wait on for blocking read */
2377 unsigned int options; /* device open options */
2378 VARARG(data,bytes); /* read data */
2379 @END
2382 /* Perform a write on a file object */
2383 @REQ(write)
2384 async_data_t async; /* async I/O parameters */
2385 file_pos_t pos; /* write position */
2386 VARARG(data,bytes); /* write data */
2387 @REPLY
2388 obj_handle_t wait; /* handle to wait on for blocking write */
2389 unsigned int options; /* device open options */
2390 data_size_t size; /* size written */
2391 @END
2394 /* Perform an ioctl on a file */
2395 @REQ(ioctl)
2396 ioctl_code_t code; /* ioctl code */
2397 async_data_t async; /* async I/O parameters */
2398 VARARG(in_data,bytes); /* ioctl input data */
2399 @REPLY
2400 obj_handle_t wait; /* handle to wait on for blocking ioctl */
2401 unsigned int options; /* device open options */
2402 VARARG(out_data,bytes); /* ioctl output data */
2403 @END
2406 /* Store results of an async irp */
2407 @REQ(set_irp_result)
2408 obj_handle_t handle; /* handle to the irp */
2409 unsigned int status; /* status of the irp */
2410 data_size_t size; /* result size (input or output depending on the operation) */
2411 client_ptr_t file_ptr; /* opaque pointer to the file object */
2412 VARARG(data,bytes); /* output data of the irp */
2413 @END
2416 /* Create a named pipe */
2417 @REQ(create_named_pipe)
2418 unsigned int access;
2419 unsigned int options;
2420 unsigned int sharing;
2421 unsigned int maxinstances;
2422 unsigned int outsize;
2423 unsigned int insize;
2424 timeout_t timeout;
2425 unsigned int flags;
2426 VARARG(objattr,object_attributes); /* object attributes */
2427 @REPLY
2428 obj_handle_t handle; /* handle to the pipe */
2429 @END
2431 /* flags in create_named_pipe and get_named_pipe_info */
2432 #define NAMED_PIPE_MESSAGE_STREAM_WRITE 0x0001
2433 #define NAMED_PIPE_MESSAGE_STREAM_READ 0x0002
2434 #define NAMED_PIPE_NONBLOCKING_MODE 0x0004
2435 #define NAMED_PIPE_SERVER_END 0x8000
2437 /* Get named pipe information by handle */
2438 @REQ(get_named_pipe_info)
2439 obj_handle_t handle;
2440 @REPLY
2441 unsigned int flags;
2442 unsigned int sharing;
2443 unsigned int maxinstances;
2444 unsigned int instances;
2445 unsigned int outsize;
2446 unsigned int insize;
2447 @END
2449 /* Set named pipe information by handle */
2450 @REQ(set_named_pipe_info)
2451 obj_handle_t handle;
2452 unsigned int flags;
2453 @END
2455 /* Create a window */
2456 @REQ(create_window)
2457 user_handle_t parent; /* parent window */
2458 user_handle_t owner; /* owner window */
2459 atom_t atom; /* class atom */
2460 mod_handle_t instance; /* module instance */
2461 VARARG(class,unicode_str); /* class name */
2462 @REPLY
2463 user_handle_t handle; /* created window */
2464 user_handle_t parent; /* full handle of parent */
2465 user_handle_t owner; /* full handle of owner */
2466 int extra; /* number of extra bytes */
2467 client_ptr_t class_ptr; /* pointer to class in client address space */
2468 @END
2471 /* Destroy a window */
2472 @REQ(destroy_window)
2473 user_handle_t handle; /* handle to the window */
2474 @END
2477 /* Retrieve the desktop window for the current thread */
2478 @REQ(get_desktop_window)
2479 int force; /* force creation if it doesn't exist */
2480 @REPLY
2481 user_handle_t top_window; /* handle to the desktop window */
2482 user_handle_t msg_window; /* handle to the top-level HWND_MESSAGE parent */
2483 @END
2486 /* Set a window owner */
2487 @REQ(set_window_owner)
2488 user_handle_t handle; /* handle to the window */
2489 user_handle_t owner; /* new owner */
2490 @REPLY
2491 user_handle_t full_owner; /* full handle of new owner */
2492 user_handle_t prev_owner; /* full handle of previous owner */
2493 @END
2496 /* Get information from a window handle */
2497 @REQ(get_window_info)
2498 user_handle_t handle; /* handle to the window */
2499 @REPLY
2500 user_handle_t full_handle; /* full 32-bit handle */
2501 user_handle_t last_active; /* last active popup */
2502 process_id_t pid; /* process owning the window */
2503 thread_id_t tid; /* thread owning the window */
2504 atom_t atom; /* class atom */
2505 int is_unicode; /* ANSI or unicode */
2506 @END
2509 /* Set some information in a window */
2510 @REQ(set_window_info)
2511 unsigned short flags; /* flags for fields to set (see below) */
2512 short int is_unicode; /* ANSI or unicode */
2513 user_handle_t handle; /* handle to the window */
2514 unsigned int style; /* window style */
2515 unsigned int ex_style; /* window extended style */
2516 unsigned int id; /* window id */
2517 mod_handle_t instance; /* creator instance */
2518 lparam_t user_data; /* user-specific data */
2519 int extra_offset; /* offset to set in extra bytes */
2520 data_size_t extra_size; /* size to set in extra bytes */
2521 lparam_t extra_value; /* value to set in extra bytes */
2522 @REPLY
2523 unsigned int old_style; /* old window style */
2524 unsigned int old_ex_style; /* old window extended style */
2525 mod_handle_t old_instance; /* old creator instance */
2526 lparam_t old_user_data; /* old user-specific data */
2527 lparam_t old_extra_value; /* old value in extra bytes */
2528 unsigned int old_id; /* old window id */
2529 @END
2530 #define SET_WIN_STYLE 0x01
2531 #define SET_WIN_EXSTYLE 0x02
2532 #define SET_WIN_ID 0x04
2533 #define SET_WIN_INSTANCE 0x08
2534 #define SET_WIN_USERDATA 0x10
2535 #define SET_WIN_EXTRA 0x20
2536 #define SET_WIN_UNICODE 0x40
2539 /* Set the parent of a window */
2540 @REQ(set_parent)
2541 user_handle_t handle; /* handle to the window */
2542 user_handle_t parent; /* handle to the parent */
2543 @REPLY
2544 user_handle_t old_parent; /* old parent window */
2545 user_handle_t full_parent; /* full handle of new parent */
2546 @END
2549 /* Get a list of the window parents, up to the root of the tree */
2550 @REQ(get_window_parents)
2551 user_handle_t handle; /* handle to the window */
2552 @REPLY
2553 int count; /* total count of parents */
2554 VARARG(parents,user_handles); /* parent handles */
2555 @END
2558 /* Get a list of the window children */
2559 @REQ(get_window_children)
2560 obj_handle_t desktop; /* handle to desktop */
2561 user_handle_t parent; /* parent window */
2562 atom_t atom; /* class atom for the listed children */
2563 thread_id_t tid; /* thread owning the listed children */
2564 VARARG(class,unicode_str); /* class name */
2565 @REPLY
2566 int count; /* total count of children */
2567 VARARG(children,user_handles); /* children handles */
2568 @END
2571 /* Get a list of the window children that contain a given point */
2572 @REQ(get_window_children_from_point)
2573 user_handle_t parent; /* parent window */
2574 int x; /* point in parent coordinates */
2575 int y;
2576 @REPLY
2577 int count; /* total count of children */
2578 VARARG(children,user_handles); /* children handles */
2579 @END
2582 /* Get window tree information from a window handle */
2583 @REQ(get_window_tree)
2584 user_handle_t handle; /* handle to the window */
2585 @REPLY
2586 user_handle_t parent; /* parent window */
2587 user_handle_t owner; /* owner window */
2588 user_handle_t next_sibling; /* next sibling in Z-order */
2589 user_handle_t prev_sibling; /* prev sibling in Z-order */
2590 user_handle_t first_sibling; /* first sibling in Z-order */
2591 user_handle_t last_sibling; /* last sibling in Z-order */
2592 user_handle_t first_child; /* first child */
2593 user_handle_t last_child; /* last child */
2594 @END
2596 /* Set the position and Z order of a window */
2597 @REQ(set_window_pos)
2598 unsigned short swp_flags; /* SWP_* flags */
2599 unsigned short paint_flags; /* paint flags (see below) */
2600 user_handle_t handle; /* handle to the window */
2601 user_handle_t previous; /* previous window in Z order */
2602 rectangle_t window; /* window rectangle (in parent coords) */
2603 rectangle_t client; /* client rectangle (in parent coords) */
2604 VARARG(valid,rectangles); /* valid rectangles from WM_NCCALCSIZE (in parent coords) */
2605 @REPLY
2606 unsigned int new_style; /* new window style */
2607 unsigned int new_ex_style; /* new window extended style */
2608 user_handle_t surface_win; /* parent window that holds the surface */
2609 int needs_update; /* whether the surface region needs an update */
2610 @END
2611 #define SET_WINPOS_PAINT_SURFACE 0x01 /* window has a paintable surface */
2612 #define SET_WINPOS_PIXEL_FORMAT 0x02 /* window has a custom pixel format */
2614 /* Get the window and client rectangles of a window */
2615 @REQ(get_window_rectangles)
2616 user_handle_t handle; /* handle to the window */
2617 int relative; /* coords relative to (see below) */
2618 @REPLY
2619 rectangle_t window; /* window rectangle */
2620 rectangle_t visible; /* visible part of the window rectangle */
2621 rectangle_t client; /* client rectangle */
2622 @END
2623 enum coords_relative
2625 COORDS_CLIENT, /* relative to client area */
2626 COORDS_WINDOW, /* relative to whole window area */
2627 COORDS_PARENT, /* relative to parent's client area */
2628 COORDS_SCREEN /* relative to screen origin */
2632 /* Get the window text */
2633 @REQ(get_window_text)
2634 user_handle_t handle; /* handle to the window */
2635 @REPLY
2636 VARARG(text,unicode_str); /* window text */
2637 @END
2640 /* Set the window text */
2641 @REQ(set_window_text)
2642 user_handle_t handle; /* handle to the window */
2643 VARARG(text,unicode_str); /* window text */
2644 @END
2647 /* Get the coordinates offset between two windows */
2648 @REQ(get_windows_offset)
2649 user_handle_t from; /* handle to the first window */
2650 user_handle_t to; /* handle to the second window */
2651 @REPLY
2652 int x; /* x coordinate offset */
2653 int y; /* y coordinate offset */
2654 int mirror; /* whether to mirror the x coordinate */
2655 @END
2658 /* Get the visible region of a window */
2659 @REQ(get_visible_region)
2660 user_handle_t window; /* handle to the window */
2661 unsigned int flags; /* DCX flags */
2662 @REPLY
2663 user_handle_t top_win; /* top window to clip against */
2664 rectangle_t top_rect; /* top window visible rect with screen coords */
2665 rectangle_t win_rect; /* window rect in screen coords */
2666 unsigned int paint_flags; /* paint flags (from SET_WINPOS_* flags) */
2667 data_size_t total_size; /* total size of the resulting region */
2668 VARARG(region,rectangles); /* list of rectangles for the region (in screen coords) */
2669 @END
2672 /* Get the visible surface region of a window */
2673 @REQ(get_surface_region)
2674 user_handle_t window; /* handle to the window */
2675 @REPLY
2676 rectangle_t visible_rect; /* window visible rect in screen coords */
2677 data_size_t total_size; /* total size of the resulting region */
2678 VARARG(region,rectangles); /* list of rectangles for the region (in screen coords) */
2679 @END
2682 /* Get the window region */
2683 @REQ(get_window_region)
2684 user_handle_t window; /* handle to the window */
2685 @REPLY
2686 data_size_t total_size; /* total size of the resulting region */
2687 VARARG(region,rectangles); /* list of rectangles for the region (in window coords) */
2688 @END
2691 /* Set the window region */
2692 @REQ(set_window_region)
2693 user_handle_t window; /* handle to the window */
2694 int redraw; /* redraw the window? */
2695 VARARG(region,rectangles); /* list of rectangles for the region (in window coords) */
2696 @END
2699 /* Get the window update region */
2700 @REQ(get_update_region)
2701 user_handle_t window; /* handle to the window */
2702 user_handle_t from_child; /* child to start searching from */
2703 unsigned int flags; /* update flags (see below) */
2704 @REPLY
2705 user_handle_t child; /* child to repaint (or window itself) */
2706 unsigned int flags; /* resulting update flags (see below) */
2707 data_size_t total_size; /* total size of the resulting region */
2708 VARARG(region,rectangles); /* list of rectangles for the region (in screen coords) */
2709 @END
2710 #define UPDATE_NONCLIENT 0x001 /* get region for repainting non-client area */
2711 #define UPDATE_ERASE 0x002 /* get region for erasing client area */
2712 #define UPDATE_PAINT 0x004 /* get region for painting client area */
2713 #define UPDATE_INTERNALPAINT 0x008 /* get region if internal paint is pending */
2714 #define UPDATE_ALLCHILDREN 0x010 /* force repaint of all children */
2715 #define UPDATE_NOCHILDREN 0x020 /* don't try to repaint any children */
2716 #define UPDATE_NOREGION 0x040 /* don't return a region, only the flags */
2717 #define UPDATE_DELAYED_ERASE 0x080 /* still needs erase after BeginPaint */
2718 #define UPDATE_CLIPCHILDREN 0x100 /* remove clipped children from the update region */
2721 /* Update the z order of a window so that a given rectangle is fully visible */
2722 @REQ(update_window_zorder)
2723 user_handle_t window; /* handle to the window */
2724 rectangle_t rect; /* rectangle that must be visible (in client coords) */
2725 @END
2728 /* Mark parts of a window as needing a redraw */
2729 @REQ(redraw_window)
2730 user_handle_t window; /* handle to the window */
2731 unsigned int flags; /* RDW_* flags */
2732 VARARG(region,rectangles); /* list of rectangles for the region (in window coords) */
2733 @END
2736 /* Set a window property */
2737 @REQ(set_window_property)
2738 user_handle_t window; /* handle to the window */
2739 lparam_t data; /* data to store */
2740 atom_t atom; /* property atom (if no name specified) */
2741 VARARG(name,unicode_str); /* property name */
2742 @END
2745 /* Remove a window property */
2746 @REQ(remove_window_property)
2747 user_handle_t window; /* handle to the window */
2748 atom_t atom; /* property atom (if no name specified) */
2749 VARARG(name,unicode_str); /* property name */
2750 @REPLY
2751 lparam_t data; /* data stored in property */
2752 @END
2755 /* Get a window property */
2756 @REQ(get_window_property)
2757 user_handle_t window; /* handle to the window */
2758 atom_t atom; /* property atom (if no name specified) */
2759 VARARG(name,unicode_str); /* property name */
2760 @REPLY
2761 lparam_t data; /* data stored in property */
2762 @END
2765 /* Get the list of properties of a window */
2766 @REQ(get_window_properties)
2767 user_handle_t window; /* handle to the window */
2768 @REPLY
2769 int total; /* total number of properties */
2770 VARARG(props,properties); /* list of properties */
2771 @END
2774 /* Create a window station */
2775 @REQ(create_winstation)
2776 unsigned int flags; /* window station flags */
2777 unsigned int access; /* wanted access rights */
2778 unsigned int attributes; /* object attributes */
2779 obj_handle_t rootdir; /* root directory */
2780 VARARG(name,unicode_str); /* object name */
2781 @REPLY
2782 obj_handle_t handle; /* handle to the window station */
2783 @END
2786 /* Open a handle to a window station */
2787 @REQ(open_winstation)
2788 unsigned int access; /* wanted access rights */
2789 unsigned int attributes; /* object attributes */
2790 obj_handle_t rootdir; /* root directory */
2791 VARARG(name,unicode_str); /* object name */
2792 @REPLY
2793 obj_handle_t handle; /* handle to the window station */
2794 @END
2797 /* Close a window station */
2798 @REQ(close_winstation)
2799 obj_handle_t handle; /* handle to the window station */
2800 @END
2803 /* Get the process current window station */
2804 @REQ(get_process_winstation)
2805 @REPLY
2806 obj_handle_t handle; /* handle to the window station */
2807 @END
2810 /* Set the process current window station */
2811 @REQ(set_process_winstation)
2812 obj_handle_t handle; /* handle to the window station */
2813 @END
2816 /* Enumerate window stations */
2817 @REQ(enum_winstation)
2818 unsigned int index; /* current index */
2819 @REPLY
2820 unsigned int next; /* next index */
2821 VARARG(name,unicode_str); /* window station name */
2822 @END
2825 /* Create a desktop */
2826 @REQ(create_desktop)
2827 unsigned int flags; /* desktop flags */
2828 unsigned int access; /* wanted access rights */
2829 unsigned int attributes; /* object attributes */
2830 VARARG(name,unicode_str); /* object name */
2831 @REPLY
2832 obj_handle_t handle; /* handle to the desktop */
2833 @END
2836 /* Open a handle to a desktop */
2837 @REQ(open_desktop)
2838 obj_handle_t winsta; /* window station to open (null allowed) */
2839 unsigned int flags; /* desktop flags */
2840 unsigned int access; /* wanted access rights */
2841 unsigned int attributes; /* object attributes */
2842 VARARG(name,unicode_str); /* object name */
2843 @REPLY
2844 obj_handle_t handle; /* handle to the desktop */
2845 @END
2848 /* Open a handle to current input desktop */
2849 @REQ(open_input_desktop)
2850 unsigned int flags; /* desktop flags */
2851 unsigned int access; /* wanted access rights */
2852 unsigned int attributes; /* object attributes */
2853 @REPLY
2854 obj_handle_t handle; /* handle to the desktop */
2855 @END
2858 /* Close a desktop */
2859 @REQ(close_desktop)
2860 obj_handle_t handle; /* handle to the desktop */
2861 @END
2864 /* Get the thread current desktop */
2865 @REQ(get_thread_desktop)
2866 thread_id_t tid; /* thread id */
2867 @REPLY
2868 obj_handle_t handle; /* handle to the desktop */
2869 @END
2872 /* Set the thread current desktop */
2873 @REQ(set_thread_desktop)
2874 obj_handle_t handle; /* handle to the desktop */
2875 @END
2878 /* Enumerate desktops */
2879 @REQ(enum_desktop)
2880 obj_handle_t winstation; /* handle to the window station */
2881 unsigned int index; /* current index */
2882 @REPLY
2883 unsigned int next; /* next index */
2884 VARARG(name,unicode_str); /* window station name */
2885 @END
2888 /* Get/set information about a user object (window station or desktop) */
2889 @REQ(set_user_object_info)
2890 obj_handle_t handle; /* handle to the object */
2891 unsigned int flags; /* information to set/get */
2892 unsigned int obj_flags; /* new object flags */
2893 @REPLY
2894 int is_desktop; /* is object a desktop? */
2895 unsigned int old_obj_flags; /* old object flags */
2896 VARARG(name,unicode_str); /* object name */
2897 @END
2898 #define SET_USER_OBJECT_SET_FLAGS 1
2899 #define SET_USER_OBJECT_GET_FULL_NAME 2
2902 /* Register a hotkey */
2903 @REQ(register_hotkey)
2904 user_handle_t window; /* handle to the window */
2905 int id; /* hotkey identifier */
2906 unsigned int flags; /* modifier keys */
2907 unsigned int vkey; /* virtual key code */
2908 @REPLY
2909 int replaced; /* did we replace an existing hotkey? */
2910 unsigned int flags; /* flags of replaced hotkey */
2911 unsigned int vkey; /* virtual key code of replaced hotkey */
2912 @END
2915 /* Unregister a hotkey */
2916 @REQ(unregister_hotkey)
2917 user_handle_t window; /* handle to the window */
2918 int id; /* hotkey identifier */
2919 @REPLY
2920 unsigned int flags; /* flags of removed hotkey */
2921 unsigned int vkey; /* virtual key code of removed hotkey */
2922 @END
2925 /* Attach (or detach) thread inputs */
2926 @REQ(attach_thread_input)
2927 thread_id_t tid_from; /* thread to be attached */
2928 thread_id_t tid_to; /* thread to which tid_from should be attached */
2929 int attach; /* is it an attach? */
2930 @END
2933 /* Get input data for a given thread */
2934 @REQ(get_thread_input)
2935 thread_id_t tid; /* id of thread */
2936 @REPLY
2937 user_handle_t focus; /* handle to the focus window */
2938 user_handle_t capture; /* handle to the capture window */
2939 user_handle_t active; /* handle to the active window */
2940 user_handle_t foreground; /* handle to the global foreground window */
2941 user_handle_t menu_owner; /* handle to the menu owner */
2942 user_handle_t move_size; /* handle to the moving/resizing window */
2943 user_handle_t caret; /* handle to the caret window */
2944 user_handle_t cursor; /* handle to the cursor */
2945 int show_count; /* cursor show count */
2946 rectangle_t rect; /* caret rectangle */
2947 @END
2950 /* Get the time of the last input event */
2951 @REQ(get_last_input_time)
2952 @REPLY
2953 unsigned int time;
2954 @END
2957 /* Retrieve queue keyboard state for a given thread */
2958 @REQ(get_key_state)
2959 thread_id_t tid; /* id of thread */
2960 int key; /* optional key code or -1 */
2961 @REPLY
2962 unsigned char state; /* state of specified key */
2963 VARARG(keystate,bytes); /* state array for all the keys */
2964 @END
2966 /* Set queue keyboard state for a given thread */
2967 @REQ(set_key_state)
2968 thread_id_t tid; /* id of thread */
2969 int async; /* whether to change the async state too */
2970 VARARG(keystate,bytes); /* state array for all the keys */
2971 @END
2973 /* Set the system foreground window */
2974 @REQ(set_foreground_window)
2975 user_handle_t handle; /* handle to the foreground window */
2976 @REPLY
2977 user_handle_t previous; /* handle to the previous foreground window */
2978 int send_msg_old; /* whether we have to send a msg to the old window */
2979 int send_msg_new; /* whether we have to send a msg to the new window */
2980 @END
2982 /* Set the current thread focus window */
2983 @REQ(set_focus_window)
2984 user_handle_t handle; /* handle to the focus window */
2985 @REPLY
2986 user_handle_t previous; /* handle to the previous focus window */
2987 @END
2989 /* Set the current thread active window */
2990 @REQ(set_active_window)
2991 user_handle_t handle; /* handle to the active window */
2992 @REPLY
2993 user_handle_t previous; /* handle to the previous active window */
2994 @END
2996 /* Set the current thread capture window */
2997 @REQ(set_capture_window)
2998 user_handle_t handle; /* handle to the capture window */
2999 unsigned int flags; /* capture flags (see below) */
3000 @REPLY
3001 user_handle_t previous; /* handle to the previous capture window */
3002 user_handle_t full_handle; /* full 32-bit handle of new capture window */
3003 @END
3004 #define CAPTURE_MENU 0x01 /* capture is for a menu */
3005 #define CAPTURE_MOVESIZE 0x02 /* capture is for moving/resizing */
3008 /* Set the current thread caret window */
3009 @REQ(set_caret_window)
3010 user_handle_t handle; /* handle to the caret window */
3011 int width; /* caret width */
3012 int height; /* caret height */
3013 @REPLY
3014 user_handle_t previous; /* handle to the previous caret window */
3015 rectangle_t old_rect; /* previous caret rectangle */
3016 int old_hide; /* previous hide count */
3017 int old_state; /* previous caret state (1=on, 0=off) */
3018 @END
3021 /* Set the current thread caret information */
3022 @REQ(set_caret_info)
3023 unsigned int flags; /* caret flags (see below) */
3024 user_handle_t handle; /* handle to the caret window */
3025 int x; /* caret x position */
3026 int y; /* caret y position */
3027 int hide; /* increment for hide count (can be negative to show it) */
3028 int state; /* caret state (see below) */
3029 @REPLY
3030 user_handle_t full_handle; /* handle to the current caret window */
3031 rectangle_t old_rect; /* previous caret rectangle */
3032 int old_hide; /* previous hide count */
3033 int old_state; /* previous caret state (1=on, 0=off) */
3034 @END
3035 #define SET_CARET_POS 0x01 /* set the caret position from x,y */
3036 #define SET_CARET_HIDE 0x02 /* increment the caret hide count */
3037 #define SET_CARET_STATE 0x04 /* set the caret on/off state */
3038 enum caret_state
3040 CARET_STATE_OFF, /* off */
3041 CARET_STATE_ON, /* on */
3042 CARET_STATE_TOGGLE, /* toggle current state */
3043 CARET_STATE_ON_IF_MOVED /* on if the position differs, unchanged otherwise */
3047 /* Set a window hook */
3048 @REQ(set_hook)
3049 int id; /* id of the hook */
3050 process_id_t pid; /* id of process to set the hook into */
3051 thread_id_t tid; /* id of thread to set the hook into */
3052 int event_min;
3053 int event_max;
3054 client_ptr_t proc; /* hook procedure */
3055 int flags;
3056 int unicode; /* is it a unicode hook? */
3057 VARARG(module,unicode_str); /* module name */
3058 @REPLY
3059 user_handle_t handle; /* handle to the hook */
3060 unsigned int active_hooks; /* active hooks bitmap */
3061 @END
3064 /* Remove a window hook */
3065 @REQ(remove_hook)
3066 user_handle_t handle; /* handle to the hook */
3067 client_ptr_t proc; /* hook procedure if handle is 0 */
3068 int id; /* id of the hook if handle is 0 */
3069 @REPLY
3070 unsigned int active_hooks; /* active hooks bitmap */
3071 @END
3074 /* Start calling a hook chain */
3075 @REQ(start_hook_chain)
3076 int id; /* id of the hook */
3077 int event; /* signalled event */
3078 user_handle_t window; /* handle to the event window */
3079 int object_id; /* object id for out of context winevent */
3080 int child_id; /* child id for out of context winevent */
3081 @REPLY
3082 user_handle_t handle; /* handle to the next hook */
3083 process_id_t pid; /* process id for low-level keyboard/mouse hooks */
3084 thread_id_t tid; /* thread id for low-level keyboard/mouse hooks */
3085 int unicode; /* is it a unicode hook? */
3086 client_ptr_t proc; /* hook procedure */
3087 unsigned int active_hooks; /* active hooks bitmap */
3088 VARARG(module,unicode_str); /* module name */
3089 @END
3092 /* Finished calling a hook chain */
3093 @REQ(finish_hook_chain)
3094 int id; /* id of the hook */
3095 @END
3098 /* Get the hook information */
3099 @REQ(get_hook_info)
3100 user_handle_t handle; /* handle to the current hook */
3101 int get_next; /* do we want info about current or next hook? */
3102 int event; /* signalled event */
3103 user_handle_t window; /* handle to the event window */
3104 int object_id; /* object id for out of context winevent */
3105 int child_id; /* child id for out of context winevent */
3106 @REPLY
3107 user_handle_t handle; /* handle to the hook */
3108 int id; /* id of the hook */
3109 process_id_t pid; /* process id for low-level keyboard/mouse hooks */
3110 thread_id_t tid; /* thread id for low-level keyboard/mouse hooks */
3111 client_ptr_t proc; /* hook procedure */
3112 int unicode; /* is it a unicode hook? */
3113 VARARG(module,unicode_str); /* module name */
3114 @END
3117 /* Create a window class */
3118 @REQ(create_class)
3119 int local; /* is it a local class? */
3120 atom_t atom; /* class atom */
3121 unsigned int style; /* class style */
3122 mod_handle_t instance; /* module instance */
3123 int extra; /* number of extra class bytes */
3124 int win_extra; /* number of window extra bytes */
3125 client_ptr_t client_ptr; /* pointer to class in client address space */
3126 VARARG(name,unicode_str); /* class name */
3127 @REPLY
3128 atom_t atom; /* resulting class atom */
3129 @END
3132 /* Destroy a window class */
3133 @REQ(destroy_class)
3134 atom_t atom; /* class atom */
3135 mod_handle_t instance; /* module instance */
3136 VARARG(name,unicode_str); /* class name */
3137 @REPLY
3138 client_ptr_t client_ptr; /* pointer to class in client address space */
3139 @END
3142 /* Set some information in a class */
3143 @REQ(set_class_info)
3144 user_handle_t window; /* handle to the window */
3145 unsigned int flags; /* flags for info to set (see below) */
3146 atom_t atom; /* class atom */
3147 unsigned int style; /* class style */
3148 int win_extra; /* number of window extra bytes */
3149 mod_handle_t instance; /* module instance */
3150 int extra_offset; /* offset to set in extra bytes */
3151 data_size_t extra_size; /* size to set in extra bytes */
3152 lparam_t extra_value; /* value to set in extra bytes */
3153 @REPLY
3154 atom_t old_atom; /* previous class atom */
3155 unsigned int old_style; /* previous class style */
3156 int old_extra; /* previous number of class extra bytes */
3157 int old_win_extra; /* previous number of window extra bytes */
3158 mod_handle_t old_instance; /* previous module instance */
3159 lparam_t old_extra_value; /* old value in extra bytes */
3160 @END
3161 #define SET_CLASS_ATOM 0x0001
3162 #define SET_CLASS_STYLE 0x0002
3163 #define SET_CLASS_WINEXTRA 0x0004
3164 #define SET_CLASS_INSTANCE 0x0008
3165 #define SET_CLASS_EXTRA 0x0010
3168 /* Open the clipboard */
3169 @REQ(open_clipboard)
3170 user_handle_t window; /* clipboard window */
3171 @REPLY
3172 user_handle_t owner; /* current clipboard owner */
3173 @END
3176 /* Close the clipboard */
3177 @REQ(close_clipboard)
3178 @REPLY
3179 user_handle_t viewer; /* first clipboard viewer */
3180 user_handle_t owner; /* current clipboard owner */
3181 @END
3184 /* Empty the clipboard and grab ownership */
3185 @REQ(empty_clipboard)
3186 @END
3189 /* Add a data format to the clipboard */
3190 @REQ(set_clipboard_data)
3191 unsigned int format; /* clipboard format of the data */
3192 unsigned int lcid; /* locale id to use for synthesizing text formats */
3193 VARARG(data,bytes); /* data contents */
3194 @REPLY
3195 unsigned int seqno; /* sequence number for the set data */
3196 @END
3199 /* Fetch a data format from the clipboard */
3200 @REQ(get_clipboard_data)
3201 unsigned int format; /* clipboard format of the data */
3202 int render; /* will we try to render it if missing? */
3203 int cached; /* do we already have it in the client-side cache? */
3204 unsigned int seqno; /* sequence number for the data in the cache */
3205 @REPLY
3206 unsigned int from; /* for synthesized data, format to generate it from */
3207 user_handle_t owner; /* clipboard owner for delayed-rendered formats */
3208 unsigned int seqno; /* sequence number for the originally set data */
3209 data_size_t total; /* total data size */
3210 VARARG(data,bytes); /* data contents */
3211 @END
3214 /* Retrieve a list of available formats */
3215 @REQ(get_clipboard_formats)
3216 unsigned int format; /* specific format to query, return all if 0 */
3217 @REPLY
3218 unsigned int count; /* count of available formats */
3219 VARARG(formats,uints); /* array of available formats */
3220 @END
3223 /* Retrieve the next available format */
3224 @REQ(enum_clipboard_formats)
3225 unsigned int previous; /* previous format, or first if 0 */
3226 @REPLY
3227 unsigned int format; /* next format */
3228 @END
3231 /* Release ownership of the clipboard */
3232 @REQ(release_clipboard)
3233 user_handle_t owner; /* clipboard owner to release */
3234 @REPLY
3235 user_handle_t viewer; /* first clipboard viewer */
3236 user_handle_t owner; /* current clipboard owner */
3237 @END
3240 /* Get clipboard information */
3241 @REQ(get_clipboard_info)
3242 @REPLY
3243 user_handle_t window; /* clipboard window */
3244 user_handle_t owner; /* clipboard owner */
3245 user_handle_t viewer; /* clipboard viewer */
3246 unsigned int seqno; /* current sequence number */
3247 @END
3250 /* Set the clipboard viewer window */
3251 @REQ(set_clipboard_viewer)
3252 user_handle_t viewer; /* clipboard viewer */
3253 user_handle_t previous; /* if non-zero, check that this was the previous viewer */
3254 @REPLY
3255 user_handle_t old_viewer; /* previous clipboard viewer */
3256 user_handle_t owner; /* clipboard owner */
3257 @END
3260 /* Add a clipboard listener window */
3261 @REQ(add_clipboard_listener)
3262 user_handle_t window; /* clipboard listener window */
3263 @END
3266 /* Remove a clipboard listener window */
3267 @REQ(remove_clipboard_listener)
3268 user_handle_t window; /* clipboard listener window */
3269 @END
3272 /* Open a security token */
3273 @REQ(open_token)
3274 obj_handle_t handle; /* handle to the thread or process */
3275 unsigned int access; /* access rights to the new token */
3276 unsigned int attributes;/* object attributes */
3277 unsigned int flags; /* flags (see below) */
3278 @REPLY
3279 obj_handle_t token; /* handle to the token */
3280 @END
3281 #define OPEN_TOKEN_THREAD 1
3282 #define OPEN_TOKEN_AS_SELF 2
3285 /* Set/get the global windows */
3286 @REQ(set_global_windows)
3287 unsigned int flags; /* flags for fields to set (see below) */
3288 user_handle_t shell_window; /* handle to the new shell window */
3289 user_handle_t shell_listview; /* handle to the new shell listview window */
3290 user_handle_t progman_window; /* handle to the new program manager window */
3291 user_handle_t taskman_window; /* handle to the new task manager window */
3292 @REPLY
3293 user_handle_t old_shell_window; /* handle to the shell window */
3294 user_handle_t old_shell_listview; /* handle to the shell listview window */
3295 user_handle_t old_progman_window; /* handle to the new program manager window */
3296 user_handle_t old_taskman_window; /* handle to the new task manager window */
3297 @END
3298 #define SET_GLOBAL_SHELL_WINDOWS 0x01 /* set both main shell and listview windows */
3299 #define SET_GLOBAL_PROGMAN_WINDOW 0x02
3300 #define SET_GLOBAL_TASKMAN_WINDOW 0x04
3302 /* Adjust the privileges held by a token */
3303 @REQ(adjust_token_privileges)
3304 obj_handle_t handle; /* handle to the token */
3305 int disable_all; /* disable all privileges? */
3306 int get_modified_state; /* get modified privileges? */
3307 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges to enable/disable/remove */
3308 @REPLY
3309 unsigned int len; /* total length in bytes required to store token privileges */
3310 VARARG(privileges,LUID_AND_ATTRIBUTES); /* modified privileges */
3311 @END
3313 /* Retrieves the set of privileges held by or available to a token */
3314 @REQ(get_token_privileges)
3315 obj_handle_t handle; /* handle to the token */
3316 @REPLY
3317 unsigned int len; /* total length in bytes required to store token privileges */
3318 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges held by or available to a token */
3319 @END
3321 /* Check the token has the required privileges */
3322 @REQ(check_token_privileges)
3323 obj_handle_t handle; /* handle to the token */
3324 int all_required; /* are all the privileges required for the check to succeed? */
3325 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges to check */
3326 @REPLY
3327 int has_privileges; /* does the token have the required privileges? */
3328 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges held by or available to a token */
3329 @END
3331 @REQ(duplicate_token)
3332 obj_handle_t handle; /* handle to the token to duplicate */
3333 unsigned int access; /* access rights to the new token */
3334 int primary; /* is the new token to be a primary one? */
3335 int impersonation_level; /* impersonation level of the new token */
3336 VARARG(objattr,object_attributes); /* object attributes */
3337 @REPLY
3338 obj_handle_t new_handle; /* duplicated handle */
3339 @END
3341 @REQ(access_check)
3342 obj_handle_t handle; /* handle to the token */
3343 unsigned int desired_access; /* desired access to the object */
3344 unsigned int mapping_read; /* mapping from generic read to specific rights */
3345 unsigned int mapping_write; /* mapping from generic write to specific rights */
3346 unsigned int mapping_execute; /* mapping from generic execute to specific rights */
3347 unsigned int mapping_all; /* mapping from generic all to specific rights */
3348 VARARG(sd,security_descriptor); /* security descriptor to check */
3349 @REPLY
3350 unsigned int access_granted; /* access rights actually granted */
3351 unsigned int access_status; /* was access granted? */
3352 unsigned int privileges_len; /* length needed to store privileges */
3353 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges used during access check */
3354 @END
3356 @REQ(get_token_sid)
3357 obj_handle_t handle; /* handle to the token */
3358 unsigned int which_sid; /* which SID to retrieve from the token */
3359 @REPLY
3360 data_size_t sid_len; /* length needed to store sid */
3361 VARARG(sid,SID); /* the sid specified by which_sid from the token */
3362 @END
3364 @REQ(get_token_groups)
3365 obj_handle_t handle; /* handle to the token */
3366 @REPLY
3367 data_size_t user_len; /* length needed to store user */
3368 VARARG(user,token_groups); /* groups the token's user belongs to */
3369 @END
3371 @REQ(get_token_default_dacl)
3372 obj_handle_t handle; /* handle to the token */
3373 @REPLY
3374 data_size_t acl_len; /* length needed to store access control list */
3375 VARARG(acl,ACL); /* access control list */
3376 @END
3378 @REQ(set_token_default_dacl)
3379 obj_handle_t handle; /* handle to the token */
3380 VARARG(acl,ACL); /* default dacl to set */
3381 @END
3383 @REQ(set_security_object)
3384 obj_handle_t handle; /* handle to the object */
3385 unsigned int security_info; /* which parts of security descriptor to set */
3386 VARARG(sd,security_descriptor); /* security descriptor to set */
3387 @END
3389 @REQ(get_security_object)
3390 obj_handle_t handle; /* handle to the object */
3391 unsigned int security_info; /* which parts of security descriptor to get */
3392 @REPLY
3393 unsigned int sd_len; /* buffer size needed for sd */
3394 VARARG(sd,security_descriptor); /* retrieved security descriptor */
3395 @END
3398 struct handle_info
3400 process_id_t owner;
3401 obj_handle_t handle;
3402 unsigned int access;
3405 /* Return a list of all opened handles */
3406 @REQ(get_system_handles)
3407 @REPLY
3408 unsigned int count; /* number of handles */
3409 VARARG(data,handle_infos); /* array of handle_infos */
3410 @END
3413 /* Create a mailslot */
3414 @REQ(create_mailslot)
3415 unsigned int access; /* wanted access rights */
3416 timeout_t read_timeout;
3417 unsigned int max_msgsize;
3418 VARARG(objattr,object_attributes); /* object attributes */
3419 @REPLY
3420 obj_handle_t handle; /* handle to the mailslot */
3421 @END
3424 /* Set mailslot information */
3425 @REQ(set_mailslot_info)
3426 obj_handle_t handle; /* handle to the mailslot */
3427 timeout_t read_timeout;
3428 unsigned int flags;
3429 @REPLY
3430 timeout_t read_timeout;
3431 unsigned int max_msgsize;
3432 @END
3433 #define MAILSLOT_SET_READ_TIMEOUT 1
3436 /* Create a directory object */
3437 @REQ(create_directory)
3438 unsigned int access; /* access flags */
3439 VARARG(objattr,object_attributes); /* object attributes */
3440 @REPLY
3441 obj_handle_t handle; /* handle to the directory */
3442 @END
3445 /* Open a directory object */
3446 @REQ(open_directory)
3447 unsigned int access; /* access flags */
3448 unsigned int attributes; /* object attributes */
3449 obj_handle_t rootdir; /* root directory */
3450 VARARG(directory_name,unicode_str); /* Directory name */
3451 @REPLY
3452 obj_handle_t handle; /* handle to the directory */
3453 @END
3456 /* Get a directory entry by index */
3457 @REQ(get_directory_entry)
3458 obj_handle_t handle; /* handle to the directory */
3459 unsigned int index; /* entry index */
3460 @REPLY
3461 data_size_t name_len; /* length of the entry name in bytes */
3462 VARARG(name,unicode_str,name_len); /* entry name */
3463 VARARG(type,unicode_str); /* entry type */
3464 @END
3467 /* Create a symbolic link object */
3468 @REQ(create_symlink)
3469 unsigned int access; /* access flags */
3470 VARARG(objattr,object_attributes); /* object attributes */
3471 VARARG(target_name,unicode_str); /* target name */
3472 @REPLY
3473 obj_handle_t handle; /* handle to the symlink */
3474 @END
3477 /* Open a symbolic link object */
3478 @REQ(open_symlink)
3479 unsigned int access; /* access flags */
3480 unsigned int attributes; /* object attributes */
3481 obj_handle_t rootdir; /* root directory */
3482 VARARG(name,unicode_str); /* symlink name */
3483 @REPLY
3484 obj_handle_t handle; /* handle to the symlink */
3485 @END
3488 /* Query a symbolic link object */
3489 @REQ(query_symlink)
3490 obj_handle_t handle; /* handle to the symlink */
3491 @REPLY
3492 data_size_t total; /* total needed size for name */
3493 VARARG(target_name,unicode_str); /* target name */
3494 @END
3497 /* Query basic object information */
3498 @REQ(get_object_info)
3499 obj_handle_t handle; /* handle to the object */
3500 @REPLY
3501 unsigned int access; /* granted access mask */
3502 unsigned int ref_count; /* object ref count */
3503 unsigned int handle_count; /* object handle count */
3504 data_size_t total; /* total needed size for name */
3505 VARARG(name,unicode_str); /* object name */
3506 @END
3509 /* Query object type name information */
3510 @REQ(get_object_type)
3511 obj_handle_t handle; /* handle to the object */
3512 @REPLY
3513 data_size_t total; /* needed size for type name */
3514 VARARG(type,unicode_str); /* type name */
3515 @END
3518 /* Unlink a named object */
3519 @REQ(unlink_object)
3520 obj_handle_t handle; /* handle to the object */
3521 @END
3524 /* Query the impersonation level of an impersonation token */
3525 @REQ(get_token_impersonation_level)
3526 obj_handle_t handle; /* handle to the object */
3527 @REPLY
3528 int impersonation_level; /* impersonation level of the impersonation token */
3529 @END
3531 /* Allocate a locally-unique identifier */
3532 @REQ(allocate_locally_unique_id)
3533 @REPLY
3534 luid_t luid;
3535 @END
3538 /* Create a device manager */
3539 @REQ(create_device_manager)
3540 unsigned int access; /* wanted access rights */
3541 unsigned int attributes; /* object attributes */
3542 @REPLY
3543 obj_handle_t handle; /* handle to the device */
3544 @END
3547 /* Create a device */
3548 @REQ(create_device)
3549 unsigned int access; /* wanted access rights */
3550 unsigned int attributes; /* object attributes */
3551 obj_handle_t rootdir; /* root directory */
3552 client_ptr_t user_ptr; /* opaque ptr for use by client */
3553 obj_handle_t manager; /* device manager */
3554 VARARG(name,unicode_str); /* object name */
3555 @REPLY
3556 obj_handle_t handle; /* handle to the device */
3557 @END
3560 /* Delete a device */
3561 @REQ(delete_device)
3562 obj_handle_t handle; /* handle to the device */
3563 @END
3566 /* Retrieve the next pending device irp request */
3567 @REQ(get_next_device_request)
3568 obj_handle_t manager; /* handle to the device manager */
3569 obj_handle_t prev; /* handle to the previous irp */
3570 unsigned int status; /* status of the previous irp */
3571 @REPLY
3572 irp_params_t params; /* irp parameters */
3573 obj_handle_t next; /* handle to the next irp */
3574 process_id_t client_pid; /* pid of process calling irp */
3575 thread_id_t client_tid; /* tid of thread calling irp */
3576 data_size_t in_size; /* total needed input size */
3577 data_size_t out_size; /* needed output size */
3578 VARARG(next_data,bytes); /* input data of the next irp */
3579 @END
3582 /* Make the current process a system process */
3583 @REQ(make_process_system)
3584 @REPLY
3585 obj_handle_t event; /* event signaled when all user processes have exited */
3586 @END
3589 /* Get detailed fixed-size information about a token */
3590 @REQ(get_token_statistics)
3591 obj_handle_t handle; /* handle to the object */
3592 @REPLY
3593 luid_t token_id; /* locally-unique identifier of the token */
3594 luid_t modified_id; /* locally-unique identifier of the modified version of the token */
3595 int primary; /* is the token primary or impersonation? */
3596 int impersonation_level; /* level of impersonation */
3597 int group_count; /* the number of groups the token is a member of */
3598 int privilege_count; /* the number of privileges the token has */
3599 @END
3602 /* Create I/O completion port */
3603 @REQ(create_completion)
3604 unsigned int access; /* desired access to a port */
3605 unsigned int concurrent; /* max number of concurrent active threads */
3606 VARARG(objattr,object_attributes); /* object attributes */
3607 @REPLY
3608 obj_handle_t handle; /* port handle */
3609 @END
3612 /* Open I/O completion port */
3613 @REQ(open_completion)
3614 unsigned int access; /* desired access to a port */
3615 unsigned int attributes; /* object attributes */
3616 obj_handle_t rootdir; /* root directory */
3617 VARARG(filename,unicode_str); /* port name */
3618 @REPLY
3619 obj_handle_t handle; /* port handle */
3620 @END
3623 /* add completion to completion port */
3624 @REQ(add_completion)
3625 obj_handle_t handle; /* port handle */
3626 apc_param_t ckey; /* completion key */
3627 apc_param_t cvalue; /* completion value */
3628 apc_param_t information; /* IO_STATUS_BLOCK Information */
3629 unsigned int status; /* completion result */
3630 @END
3633 /* get completion from completion port queue */
3634 @REQ(remove_completion)
3635 obj_handle_t handle; /* port handle */
3636 @REPLY
3637 apc_param_t ckey; /* completion key */
3638 apc_param_t cvalue; /* completion value */
3639 apc_param_t information; /* IO_STATUS_BLOCK Information */
3640 unsigned int status; /* completion result */
3641 @END
3644 /* get completion queue depth */
3645 @REQ(query_completion)
3646 obj_handle_t handle; /* port handle */
3647 @REPLY
3648 unsigned int depth; /* completion queue depth */
3649 @END
3652 /* associate object with completion port */
3653 @REQ(set_completion_info)
3654 obj_handle_t handle; /* object handle */
3655 apc_param_t ckey; /* completion key */
3656 obj_handle_t chandle; /* port handle */
3657 @END
3660 /* check for associated completion and push msg */
3661 @REQ(add_fd_completion)
3662 obj_handle_t handle; /* async' object */
3663 apc_param_t cvalue; /* completion value */
3664 apc_param_t information; /* IO_STATUS_BLOCK Information */
3665 unsigned int status; /* completion status */
3666 @END
3669 /* set fd disposition information */
3670 @REQ(set_fd_disp_info)
3671 obj_handle_t handle; /* handle to a file or directory */
3672 int unlink; /* whether to unlink file on close */
3673 @END
3676 /* set fd name information */
3677 @REQ(set_fd_name_info)
3678 obj_handle_t handle; /* handle to a file or directory */
3679 obj_handle_t rootdir; /* root directory */
3680 int link; /* link instead of renaming */
3681 VARARG(filename,string); /* new file name */
3682 @END
3685 /* Retrieve layered info for a window */
3686 @REQ(get_window_layered_info)
3687 user_handle_t handle; /* handle to the window */
3688 @REPLY
3689 unsigned int color_key; /* color key */
3690 unsigned int alpha; /* alpha (0..255) */
3691 unsigned int flags; /* LWA_* flags */
3692 @END
3695 /* Set layered info for a window */
3696 @REQ(set_window_layered_info)
3697 user_handle_t handle; /* handle to the window */
3698 unsigned int color_key; /* color key */
3699 unsigned int alpha; /* alpha (0..255) */
3700 unsigned int flags; /* LWA_* flags */
3701 @END
3704 /* Allocate an arbitrary user handle */
3705 @REQ(alloc_user_handle)
3706 @REPLY
3707 user_handle_t handle; /* allocated handle */
3708 @END
3711 /* Free an arbitrary user handle */
3712 @REQ(free_user_handle)
3713 user_handle_t handle; /* handle to free*/
3714 @END
3717 /* Set/get the current cursor */
3718 @REQ(set_cursor)
3719 unsigned int flags; /* flags for fields to set (see below) */
3720 user_handle_t handle; /* handle to the cursor */
3721 int show_count; /* show count increment/decrement */
3722 int x; /* cursor position */
3723 int y;
3724 rectangle_t clip; /* cursor clip rectangle */
3725 unsigned int clip_msg; /* message to post on cursor clip changes */
3726 @REPLY
3727 user_handle_t prev_handle; /* previous handle */
3728 int prev_count; /* previous show count */
3729 int prev_x; /* previous position */
3730 int prev_y;
3731 int new_x; /* new position */
3732 int new_y;
3733 rectangle_t new_clip; /* new clip rectangle */
3734 unsigned int last_change; /* time of last position change */
3735 @END
3736 #define SET_CURSOR_HANDLE 0x01
3737 #define SET_CURSOR_COUNT 0x02
3738 #define SET_CURSOR_POS 0x04
3739 #define SET_CURSOR_CLIP 0x08
3740 #define SET_CURSOR_NOCLIP 0x10
3743 /* Modify the list of registered rawinput devices */
3744 @REQ(update_rawinput_devices)
3745 VARARG(devices,rawinput_devices);
3746 @END
3749 /* Retrieve the suspended context of a thread */
3750 @REQ(get_suspend_context)
3751 @REPLY
3752 VARARG(context,context); /* thread context */
3753 @END
3756 /* Store the suspend context of a thread */
3757 @REQ(set_suspend_context)
3758 VARARG(context,context); /* thread context */
3759 @END
3762 /* Create a new job object */
3763 @REQ(create_job)
3764 unsigned int access; /* wanted access rights */
3765 VARARG(objattr,object_attributes); /* object attributes */
3766 @REPLY
3767 obj_handle_t handle; /* handle to the job */
3768 @END
3771 /* Open a job object */
3772 @REQ(open_job)
3773 unsigned int access; /* wanted access rights */
3774 unsigned int attributes; /* object attributes */
3775 obj_handle_t rootdir; /* root directory */
3776 VARARG(name,unicode_str); /* object name */
3777 @REPLY
3778 obj_handle_t handle; /* handle to the job */
3779 @END
3782 /* Assign a job object to a process */
3783 @REQ(assign_job)
3784 obj_handle_t job; /* handle to the job */
3785 obj_handle_t process; /* handle to the process */
3786 @END
3789 /* Check if a process is associated with a job */
3790 @REQ(process_in_job)
3791 obj_handle_t job; /* handle to the job */
3792 obj_handle_t process; /* handle to the process */
3793 @END
3796 /* Set limit flags on a job */
3797 @REQ(set_job_limits)
3798 obj_handle_t handle; /* handle to the job */
3799 unsigned int limit_flags; /* new limit flags */
3800 @END
3803 /* Set new completion port for a job */
3804 @REQ(set_job_completion_port)
3805 obj_handle_t job; /* handle to the job */
3806 obj_handle_t port; /* handle to the completion port */
3807 client_ptr_t key; /* key to send with completion messages */
3808 @END
3811 /* Terminate all processes associated with the job */
3812 @REQ(terminate_job)
3813 obj_handle_t handle; /* handle to the job */
3814 int status; /* process exit code */
3815 @END