server: Return the owner window in the release_clipboard request.
[wine.git] / server / protocol.def
blob3a4f9c16e49c8a3d35af4454077b684c42def36f
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 callback; /* client-side callback to call upon end of async */
272 client_ptr_t iosb; /* I/O status block in client addr space */
273 client_ptr_t arg; /* opaque user data to pass to callback */
274 apc_param_t cvalue; /* completion value to use for completion events */
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 func; /* unsigned int (*func)(void*, void*, unsigned int, void**, void**); */
483 client_ptr_t user; /* user pointer */
484 client_ptr_t sb; /* status block */
485 } async_io;
486 struct
488 enum apc_type type; /* APC_VIRTUAL_ALLOC */
489 unsigned int op_type; /* type of operation */
490 client_ptr_t addr; /* requested address */
491 mem_size_t size; /* allocation size */
492 unsigned int zero_bits; /* allocation alignment */
493 unsigned int prot; /* memory protection flags */
494 } virtual_alloc;
495 struct
497 enum apc_type type; /* APC_VIRTUAL_FREE */
498 unsigned int op_type; /* type of operation */
499 client_ptr_t addr; /* requested address */
500 mem_size_t size; /* allocation size */
501 } virtual_free;
502 struct
504 enum apc_type type; /* APC_VIRTUAL_QUERY */
505 int __pad;
506 client_ptr_t addr; /* requested address */
507 } virtual_query;
508 struct
510 enum apc_type type; /* APC_VIRTUAL_PROTECT */
511 unsigned int prot; /* new protection flags */
512 client_ptr_t addr; /* requested address */
513 mem_size_t size; /* requested size */
514 } virtual_protect;
515 struct
517 enum apc_type type; /* APC_VIRTUAL_FLUSH */
518 int __pad;
519 client_ptr_t addr; /* requested address */
520 mem_size_t size; /* requested size */
521 } virtual_flush;
522 struct
524 enum apc_type type; /* APC_VIRTUAL_LOCK */
525 int __pad;
526 client_ptr_t addr; /* requested address */
527 mem_size_t size; /* requested size */
528 } virtual_lock;
529 struct
531 enum apc_type type; /* APC_VIRTUAL_UNLOCK */
532 int __pad;
533 client_ptr_t addr; /* requested address */
534 mem_size_t size; /* requested size */
535 } virtual_unlock;
536 struct
538 enum apc_type type; /* APC_MAP_VIEW */
539 obj_handle_t handle; /* mapping handle */
540 client_ptr_t addr; /* requested address */
541 mem_size_t size; /* allocation size */
542 file_pos_t offset; /* file offset */
543 unsigned int alloc_type;/* allocation type */
544 unsigned short zero_bits; /* allocation alignment */
545 unsigned short prot; /* memory protection flags */
546 } map_view;
547 struct
549 enum apc_type type; /* APC_UNMAP_VIEW */
550 int __pad;
551 client_ptr_t addr; /* view address */
552 } unmap_view;
553 struct
555 enum apc_type type; /* APC_CREATE_THREAD */
556 int suspend; /* suspended thread? */
557 client_ptr_t func; /* void (__stdcall *func)(void*); start function */
558 client_ptr_t arg; /* argument for start function */
559 mem_size_t reserve; /* reserve size for thread stack */
560 mem_size_t commit; /* commit size for thread stack */
561 } create_thread;
562 } apc_call_t;
564 typedef union
566 enum apc_type type;
567 struct
569 enum apc_type type; /* APC_ASYNC_IO */
570 unsigned int status; /* new status of async operation */
571 client_ptr_t apc; /* user APC to call */
572 client_ptr_t arg; /* user APC argument */
573 unsigned int total; /* bytes transferred */
574 } async_io;
575 struct
577 enum apc_type type; /* APC_VIRTUAL_ALLOC */
578 unsigned int status; /* status returned by call */
579 client_ptr_t addr; /* resulting address */
580 mem_size_t size; /* resulting size */
581 } virtual_alloc;
582 struct
584 enum apc_type type; /* APC_VIRTUAL_FREE */
585 unsigned int status; /* status returned by call */
586 client_ptr_t addr; /* resulting address */
587 mem_size_t size; /* resulting size */
588 } virtual_free;
589 struct
591 enum apc_type type; /* APC_VIRTUAL_QUERY */
592 unsigned int status; /* status returned by call */
593 client_ptr_t base; /* resulting base address */
594 client_ptr_t alloc_base;/* resulting allocation base */
595 mem_size_t size; /* resulting region size */
596 unsigned short state; /* resulting region state */
597 unsigned short prot; /* resulting region protection */
598 unsigned short alloc_prot;/* resulting allocation protection */
599 unsigned short alloc_type;/* resulting region allocation type */
600 } virtual_query;
601 struct
603 enum apc_type type; /* APC_VIRTUAL_PROTECT */
604 unsigned int status; /* status returned by call */
605 client_ptr_t addr; /* resulting address */
606 mem_size_t size; /* resulting size */
607 unsigned int prot; /* old protection flags */
608 } virtual_protect;
609 struct
611 enum apc_type type; /* APC_VIRTUAL_FLUSH */
612 unsigned int status; /* status returned by call */
613 client_ptr_t addr; /* resulting address */
614 mem_size_t size; /* resulting size */
615 } virtual_flush;
616 struct
618 enum apc_type type; /* APC_VIRTUAL_LOCK */
619 unsigned int status; /* status returned by call */
620 client_ptr_t addr; /* resulting address */
621 mem_size_t size; /* resulting size */
622 } virtual_lock;
623 struct
625 enum apc_type type; /* APC_VIRTUAL_UNLOCK */
626 unsigned int status; /* status returned by call */
627 client_ptr_t addr; /* resulting address */
628 mem_size_t size; /* resulting size */
629 } virtual_unlock;
630 struct
632 enum apc_type type; /* APC_MAP_VIEW */
633 unsigned int status; /* status returned by call */
634 client_ptr_t addr; /* resulting address */
635 mem_size_t size; /* resulting size */
636 } map_view;
637 struct
639 enum apc_type type; /* APC_MAP_VIEW */
640 unsigned int status; /* status returned by call */
641 } unmap_view;
642 struct
644 enum apc_type type; /* APC_CREATE_THREAD */
645 unsigned int status; /* status returned by call */
646 thread_id_t tid; /* thread id */
647 obj_handle_t handle; /* handle to new thread */
648 } create_thread;
649 } apc_result_t;
651 typedef union
653 unsigned int major; /* irp major function */
654 struct
656 unsigned int major; /* IRP_MJ_CREATE */
657 unsigned int access; /* access rights */
658 unsigned int sharing; /* sharing flags */
659 unsigned int options; /* file options */
660 client_ptr_t device; /* opaque ptr for the device */
661 } create;
662 struct
664 unsigned int major; /* IRP_MJ_CLOSE */
665 int __pad;
666 client_ptr_t file; /* opaque ptr for the file object */
667 } close;
668 struct
670 unsigned int major; /* IRP_MJ_READ */
671 unsigned int key; /* driver key */
672 client_ptr_t file; /* opaque ptr for the file object */
673 file_pos_t pos; /* file position */
674 } read;
675 struct
677 unsigned int major; /* IRP_MJ_WRITE */
678 unsigned int key; /* driver key */
679 client_ptr_t file; /* opaque ptr for the file object */
680 file_pos_t pos; /* file position */
681 } write;
682 struct
684 unsigned int major; /* IRP_MJ_FLUSH_BUFFERS */
685 int __pad;
686 client_ptr_t file; /* opaque ptr for the file object */
687 } flush;
688 struct
690 unsigned int major; /* IRP_MJ_DEVICE_CONTROL */
691 ioctl_code_t code; /* ioctl code */
692 client_ptr_t file; /* opaque ptr for the file object */
693 } ioctl;
694 } irp_params_t;
696 /* information about a PE image mapping, roughly equivalent to SECTION_IMAGE_INFORMATION */
697 typedef struct
699 client_ptr_t base;
700 client_ptr_t entry_point;
701 mem_size_t map_size;
702 mem_size_t stack_size;
703 mem_size_t stack_commit;
704 unsigned int zerobits;
705 unsigned int subsystem;
706 unsigned short subsystem_low;
707 unsigned short subsystem_high;
708 unsigned int gp;
709 unsigned short image_charact;
710 unsigned short dll_charact;
711 unsigned short machine;
712 unsigned char contains_code;
713 unsigned char image_flags;
714 unsigned int loader_flags;
715 unsigned int header_size;
716 unsigned int file_size;
717 unsigned int checksum;
718 } pe_image_info_t;
720 struct rawinput_device
722 unsigned short usage_page;
723 unsigned short usage;
724 unsigned int flags;
725 user_handle_t target;
728 /****************************************************************/
729 /* Request declarations */
731 /* Create a new process from the context of the parent */
732 @REQ(new_process)
733 int inherit_all; /* inherit all handles from parent */
734 unsigned int create_flags; /* creation flags */
735 int socket_fd; /* file descriptor for process socket */
736 obj_handle_t exe_file; /* file handle for main exe */
737 unsigned int process_access; /* access rights for process object */
738 unsigned int process_attr; /* attributes for process object */
739 unsigned int thread_access; /* access rights for thread object */
740 unsigned int thread_attr; /* attributes for thread object */
741 cpu_type_t cpu; /* CPU that the new process will use */
742 data_size_t info_size; /* size of startup info */
743 VARARG(info,startup_info,info_size); /* startup information */
744 VARARG(env,unicode_str); /* environment for new process */
745 @REPLY
746 obj_handle_t info; /* new process info handle */
747 process_id_t pid; /* process id */
748 obj_handle_t phandle; /* process handle (in the current process) */
749 thread_id_t tid; /* thread id */
750 obj_handle_t thandle; /* thread handle (in the current process) */
751 @END
754 /* Retrieve information about a newly started process */
755 @REQ(get_new_process_info)
756 obj_handle_t info; /* info handle returned from new_process_request */
757 @REPLY
758 int success; /* did the process start successfully? */
759 int exit_code; /* process exit code if failed */
760 @END
763 /* Create a new thread from the context of the parent */
764 @REQ(new_thread)
765 unsigned int access; /* wanted access rights */
766 unsigned int attributes; /* object attributes */
767 int suspend; /* new thread should be suspended on creation */
768 int request_fd; /* fd for request pipe */
769 @REPLY
770 thread_id_t tid; /* thread id */
771 obj_handle_t handle; /* thread handle (in the current process) */
772 @END
775 /* Retrieve the new process startup info */
776 @REQ(get_startup_info)
777 @REPLY
778 obj_handle_t exe_file; /* file handle for main exe */
779 data_size_t info_size; /* size of startup info */
780 VARARG(info,startup_info,info_size); /* startup information */
781 VARARG(env,unicode_str); /* environment */
782 @END
785 /* Signal the end of the process initialization */
786 @REQ(init_process_done)
787 int gui; /* is it a GUI process? */
788 mod_handle_t module; /* main module base address */
789 client_ptr_t ldt_copy; /* address of LDT copy (in thread address space) */
790 client_ptr_t entry; /* process entry point */
791 @END
794 /* Initialize a thread; called from the child after fork()/clone() */
795 @REQ(init_thread)
796 int unix_pid; /* Unix pid of new thread */
797 int unix_tid; /* Unix tid of new thread */
798 int debug_level; /* new debug level */
799 client_ptr_t teb; /* TEB of new thread (in thread address space) */
800 client_ptr_t entry; /* entry point or PEB if initial thread (in thread address space) */
801 int reply_fd; /* fd for reply pipe */
802 int wait_fd; /* fd for blocking calls pipe */
803 cpu_type_t cpu; /* CPU that this thread is running on */
804 @REPLY
805 process_id_t pid; /* process id of the new thread's process */
806 thread_id_t tid; /* thread id of the new thread */
807 timeout_t server_start; /* server start time */
808 data_size_t info_size; /* total size of startup info */
809 int version; /* protocol version */
810 unsigned int all_cpus; /* bitset of supported CPUs */
811 @END
814 /* Terminate a process */
815 @REQ(terminate_process)
816 obj_handle_t handle; /* process handle to terminate */
817 int exit_code; /* process exit code */
818 @REPLY
819 int self; /* suicide? */
820 @END
823 /* Terminate a thread */
824 @REQ(terminate_thread)
825 obj_handle_t handle; /* thread handle to terminate */
826 int exit_code; /* thread exit code */
827 @REPLY
828 int self; /* suicide? */
829 int last; /* last thread in this process? */
830 @END
833 /* Retrieve information about a process */
834 @REQ(get_process_info)
835 obj_handle_t handle; /* process handle */
836 @REPLY
837 process_id_t pid; /* server process id */
838 process_id_t ppid; /* server process id of parent */
839 affinity_t affinity; /* process affinity mask */
840 client_ptr_t peb; /* PEB address in process address space */
841 timeout_t start_time; /* process start time */
842 timeout_t end_time; /* process end time */
843 int exit_code; /* process exit code */
844 int priority; /* priority class */
845 cpu_type_t cpu; /* CPU that this process is running on */
846 short int debugger_present; /* process is being debugged */
847 short int debug_children; /* inherit debugger to child processes */
848 @END
851 /* Set a process information */
852 @REQ(set_process_info)
853 obj_handle_t handle; /* process handle */
854 int mask; /* setting mask (see below) */
855 int priority; /* priority class */
856 affinity_t affinity; /* affinity mask */
857 @END
858 #define SET_PROCESS_INFO_PRIORITY 0x01
859 #define SET_PROCESS_INFO_AFFINITY 0x02
862 /* Retrieve information about a thread */
863 @REQ(get_thread_info)
864 obj_handle_t handle; /* thread handle */
865 thread_id_t tid_in; /* thread id (optional) */
866 @REPLY
867 process_id_t pid; /* server process id */
868 thread_id_t tid; /* server thread id */
869 client_ptr_t teb; /* thread teb pointer */
870 client_ptr_t entry_point; /* thread entry point */
871 affinity_t affinity; /* thread affinity mask */
872 int exit_code; /* thread exit code */
873 int priority; /* thread priority level */
874 int last; /* last thread in process */
875 @END
878 /* Retrieve information about thread times */
879 @REQ(get_thread_times)
880 obj_handle_t handle; /* thread handle */
881 @REPLY
882 timeout_t creation_time; /* thread creation time */
883 timeout_t exit_time; /* thread exit time */
884 @END
887 /* Set a thread information */
888 @REQ(set_thread_info)
889 obj_handle_t handle; /* thread handle */
890 int mask; /* setting mask (see below) */
891 int priority; /* priority class */
892 affinity_t affinity; /* affinity mask */
893 client_ptr_t entry_point; /* thread entry point */
894 obj_handle_t token; /* impersonation token */
895 @END
896 #define SET_THREAD_INFO_PRIORITY 0x01
897 #define SET_THREAD_INFO_AFFINITY 0x02
898 #define SET_THREAD_INFO_TOKEN 0x04
899 #define SET_THREAD_INFO_ENTRYPOINT 0x08
902 /* Retrieve information about a module */
903 @REQ(get_dll_info)
904 obj_handle_t handle; /* process handle */
905 mod_handle_t base_address; /* base address of module */
906 @REPLY
907 client_ptr_t entry_point;
908 data_size_t size; /* module size */
909 data_size_t filename_len; /* buffer len in bytes required to store filename */
910 VARARG(filename,unicode_str); /* file name of module */
911 @END
914 /* Suspend a thread */
915 @REQ(suspend_thread)
916 obj_handle_t handle; /* thread handle */
917 @REPLY
918 int count; /* new suspend count */
919 @END
922 /* Resume a thread */
923 @REQ(resume_thread)
924 obj_handle_t handle; /* thread handle */
925 @REPLY
926 int count; /* new suspend count */
927 @END
930 /* Notify the server that a dll has been loaded */
931 @REQ(load_dll)
932 obj_handle_t mapping; /* file mapping handle */
933 mod_handle_t base; /* base address */
934 client_ptr_t name; /* ptr to ptr to name (in process addr space) */
935 data_size_t size; /* dll size */
936 int dbg_offset; /* debug info offset */
937 int dbg_size; /* debug info size */
938 VARARG(filename,unicode_str); /* file name of dll */
939 @END
942 /* Notify the server that a dll is being unloaded */
943 @REQ(unload_dll)
944 mod_handle_t base; /* base address */
945 @END
948 /* Queue an APC for a thread or process */
949 @REQ(queue_apc)
950 obj_handle_t handle; /* thread or process handle */
951 apc_call_t call; /* call arguments */
952 @REPLY
953 obj_handle_t handle; /* APC handle */
954 int self; /* run APC in caller itself? */
955 @END
958 /* Get the result of an APC call */
959 @REQ(get_apc_result)
960 obj_handle_t handle; /* handle to the APC */
961 @REPLY
962 apc_result_t result; /* result of the APC */
963 @END
966 /* Close a handle for the current process */
967 @REQ(close_handle)
968 obj_handle_t handle; /* handle to close */
969 @END
972 /* Set a handle information */
973 @REQ(set_handle_info)
974 obj_handle_t handle; /* handle we are interested in */
975 int flags; /* new handle flags */
976 int mask; /* mask for flags to set */
977 @REPLY
978 int old_flags; /* old flag value */
979 @END
982 /* Duplicate a handle */
983 @REQ(dup_handle)
984 obj_handle_t src_process; /* src process handle */
985 obj_handle_t src_handle; /* src handle to duplicate */
986 obj_handle_t dst_process; /* dst process handle */
987 unsigned int access; /* wanted access rights */
988 unsigned int attributes; /* object attributes */
989 unsigned int options; /* duplicate options (see below) */
990 @REPLY
991 obj_handle_t handle; /* duplicated handle in dst process */
992 int self; /* is the source the current process? */
993 int closed; /* whether the source handle has been closed */
994 @END
995 #define DUP_HANDLE_CLOSE_SOURCE DUPLICATE_CLOSE_SOURCE
996 #define DUP_HANDLE_SAME_ACCESS DUPLICATE_SAME_ACCESS
997 #define DUP_HANDLE_MAKE_GLOBAL 0x80000000 /* Not a Windows flag */
1000 /* Open a handle to a process */
1001 @REQ(open_process)
1002 process_id_t pid; /* process id to open */
1003 unsigned int access; /* wanted access rights */
1004 unsigned int attributes; /* object attributes */
1005 @REPLY
1006 obj_handle_t handle; /* handle to the process */
1007 @END
1010 /* Open a handle to a thread */
1011 @REQ(open_thread)
1012 thread_id_t tid; /* thread id to open */
1013 unsigned int access; /* wanted access rights */
1014 unsigned int attributes; /* object attributes */
1015 @REPLY
1016 obj_handle_t handle; /* handle to the thread */
1017 @END
1020 /* Wait for handles */
1021 @REQ(select)
1022 int flags; /* wait flags (see below) */
1023 client_ptr_t cookie; /* magic cookie to return to client */
1024 timeout_t timeout; /* timeout */
1025 obj_handle_t prev_apc; /* handle to previous APC */
1026 VARARG(result,apc_result); /* result of previous APC */
1027 VARARG(data,select_op); /* operation-specific data */
1028 @REPLY
1029 timeout_t timeout; /* timeout converted to absolute */
1030 apc_call_t call; /* APC call arguments */
1031 obj_handle_t apc_handle; /* handle to next APC */
1032 @END
1033 #define SELECT_ALERTABLE 1
1034 #define SELECT_INTERRUPTIBLE 2
1037 /* Create an event */
1038 @REQ(create_event)
1039 unsigned int access; /* wanted access rights */
1040 int manual_reset; /* manual reset event */
1041 int initial_state; /* initial state of the event */
1042 VARARG(objattr,object_attributes); /* object attributes */
1043 @REPLY
1044 obj_handle_t handle; /* handle to the event */
1045 @END
1047 /* Event operation */
1048 @REQ(event_op)
1049 obj_handle_t handle; /* handle to event */
1050 int op; /* event operation (see below) */
1051 @END
1052 enum event_op { PULSE_EVENT, SET_EVENT, RESET_EVENT };
1054 @REQ(query_event)
1055 obj_handle_t handle; /* handle to event */
1056 @REPLY
1057 int manual_reset; /* manual reset event */
1058 int state; /* current state of the event */
1059 @END
1061 /* Open an event */
1062 @REQ(open_event)
1063 unsigned int access; /* wanted access rights */
1064 unsigned int attributes; /* object attributes */
1065 obj_handle_t rootdir; /* root directory */
1066 VARARG(name,unicode_str); /* object name */
1067 @REPLY
1068 obj_handle_t handle; /* handle to the event */
1069 @END
1072 /* Create a keyed event */
1073 @REQ(create_keyed_event)
1074 unsigned int access; /* wanted access rights */
1075 VARARG(objattr,object_attributes); /* object attributes */
1076 @REPLY
1077 obj_handle_t handle; /* handle to the event */
1078 @END
1080 /* Open a keyed event */
1081 @REQ(open_keyed_event)
1082 unsigned int access; /* wanted access rights */
1083 unsigned int attributes; /* object attributes */
1084 obj_handle_t rootdir; /* root directory */
1085 VARARG(name,unicode_str); /* object name */
1086 @REPLY
1087 obj_handle_t handle; /* handle to the event */
1088 @END
1091 /* Create a mutex */
1092 @REQ(create_mutex)
1093 unsigned int access; /* wanted access rights */
1094 int owned; /* initially owned? */
1095 VARARG(objattr,object_attributes); /* object attributes */
1096 @REPLY
1097 obj_handle_t handle; /* handle to the mutex */
1098 @END
1101 /* Release a mutex */
1102 @REQ(release_mutex)
1103 obj_handle_t handle; /* handle to the mutex */
1104 @REPLY
1105 unsigned int prev_count; /* value of internal counter, before release */
1106 @END
1109 /* Open a mutex */
1110 @REQ(open_mutex)
1111 unsigned int access; /* wanted access rights */
1112 unsigned int attributes; /* object attributes */
1113 obj_handle_t rootdir; /* root directory */
1114 VARARG(name,unicode_str); /* object name */
1115 @REPLY
1116 obj_handle_t handle; /* handle to the mutex */
1117 @END
1120 /* Query a mutex */
1121 @REQ(query_mutex)
1122 obj_handle_t handle; /* handle to mutex */
1123 @REPLY
1124 unsigned int count; /* current count of mutex */
1125 int owned; /* true if owned by current thread */
1126 int abandoned; /* true if abandoned */
1127 @END
1130 /* Create a semaphore */
1131 @REQ(create_semaphore)
1132 unsigned int access; /* wanted access rights */
1133 unsigned int initial; /* initial count */
1134 unsigned int max; /* maximum count */
1135 VARARG(objattr,object_attributes); /* object attributes */
1136 @REPLY
1137 obj_handle_t handle; /* handle to the semaphore */
1138 @END
1141 /* Release a semaphore */
1142 @REQ(release_semaphore)
1143 obj_handle_t handle; /* handle to the semaphore */
1144 unsigned int count; /* count to add to semaphore */
1145 @REPLY
1146 unsigned int prev_count; /* previous semaphore count */
1147 @END
1149 @REQ(query_semaphore)
1150 obj_handle_t handle; /* handle to the semaphore */
1151 @REPLY
1152 unsigned int current; /* current count */
1153 unsigned int max; /* maximum count */
1154 @END
1156 /* Open a semaphore */
1157 @REQ(open_semaphore)
1158 unsigned int access; /* wanted access rights */
1159 unsigned int attributes; /* object attributes */
1160 obj_handle_t rootdir; /* root directory */
1161 VARARG(name,unicode_str); /* object name */
1162 @REPLY
1163 obj_handle_t handle; /* handle to the semaphore */
1164 @END
1167 /* Create a file */
1168 @REQ(create_file)
1169 unsigned int access; /* wanted access rights */
1170 unsigned int sharing; /* sharing flags */
1171 int create; /* file create action */
1172 unsigned int options; /* file options */
1173 unsigned int attrs; /* file attributes for creation */
1174 VARARG(objattr,object_attributes); /* object attributes */
1175 VARARG(filename,string); /* file name */
1176 @REPLY
1177 obj_handle_t handle; /* handle to the file */
1178 @END
1181 /* Open a file object */
1182 @REQ(open_file_object)
1183 unsigned int access; /* wanted access rights */
1184 unsigned int attributes; /* open attributes */
1185 obj_handle_t rootdir; /* root directory */
1186 unsigned int sharing; /* sharing flags */
1187 unsigned int options; /* file options */
1188 VARARG(filename,unicode_str); /* file name */
1189 @REPLY
1190 obj_handle_t handle; /* handle to the file */
1191 @END
1194 /* Allocate a file handle for a Unix fd */
1195 @REQ(alloc_file_handle)
1196 unsigned int access; /* wanted access rights */
1197 unsigned int attributes; /* object attributes */
1198 int fd; /* file descriptor on the client side */
1199 @REPLY
1200 obj_handle_t handle; /* handle to the file */
1201 @END
1204 /* Get the Unix name from a file handle */
1205 @REQ(get_handle_unix_name)
1206 obj_handle_t handle; /* file handle */
1207 @REPLY
1208 data_size_t name_len; /* unix name length */
1209 VARARG(name,string); /* unix name */
1210 @END
1213 /* Get a Unix fd to access a file */
1214 @REQ(get_handle_fd)
1215 obj_handle_t handle; /* handle to the file */
1216 @REPLY
1217 int type; /* file type (see below) */
1218 int cacheable; /* can fd be cached in the client? */
1219 unsigned int access; /* file access rights */
1220 unsigned int options; /* file open options */
1221 @END
1222 enum server_fd_type
1224 FD_TYPE_INVALID, /* invalid file (no associated fd) */
1225 FD_TYPE_FILE, /* regular file */
1226 FD_TYPE_DIR, /* directory */
1227 FD_TYPE_SOCKET, /* socket */
1228 FD_TYPE_SERIAL, /* serial port */
1229 FD_TYPE_PIPE, /* named pipe */
1230 FD_TYPE_MAILSLOT, /* mailslot */
1231 FD_TYPE_CHAR, /* unspecified char device */
1232 FD_TYPE_DEVICE, /* Windows device file */
1233 FD_TYPE_NB_TYPES
1237 /* Retrieve (or allocate) the client-side directory cache entry */
1238 @REQ(get_directory_cache_entry)
1239 obj_handle_t handle; /* handle to the directory */
1240 @REPLY
1241 int entry; /* cache entry on the client side */
1242 VARARG(free,ints); /* entries that can be freed */
1243 @END
1246 /* Flush a file buffers */
1247 @REQ(flush)
1248 int blocking; /* whether it's a blocking flush */
1249 async_data_t async; /* async I/O parameters */
1250 @REPLY
1251 obj_handle_t event; /* event set when finished */
1252 @END
1255 /* Lock a region of a file */
1256 @REQ(lock_file)
1257 obj_handle_t handle; /* handle to the file */
1258 file_pos_t offset; /* offset of start of lock */
1259 file_pos_t count; /* count of bytes to lock */
1260 int shared; /* shared or exclusive lock? */
1261 int wait; /* do we want to wait? */
1262 @REPLY
1263 obj_handle_t handle; /* handle to wait on */
1264 int overlapped; /* is it an overlapped I/O handle? */
1265 @END
1268 /* Unlock a region of a file */
1269 @REQ(unlock_file)
1270 obj_handle_t handle; /* handle to the file */
1271 file_pos_t offset; /* offset of start of unlock */
1272 file_pos_t count; /* count of bytes to unlock */
1273 @END
1276 /* Create a socket */
1277 @REQ(create_socket)
1278 unsigned int access; /* wanted access rights */
1279 unsigned int attributes; /* object attributes */
1280 int family; /* family, see socket manpage */
1281 int type; /* type, see socket manpage */
1282 int protocol; /* protocol, see socket manpage */
1283 unsigned int flags; /* socket flags */
1284 @REPLY
1285 obj_handle_t handle; /* handle to the new socket */
1286 @END
1289 /* Accept a socket */
1290 @REQ(accept_socket)
1291 obj_handle_t lhandle; /* handle to the listening socket */
1292 unsigned int access; /* wanted access rights */
1293 unsigned int attributes; /* object attributes */
1294 @REPLY
1295 obj_handle_t handle; /* handle to the new socket */
1296 @END
1299 /* Accept into an initialized socket */
1300 @REQ(accept_into_socket)
1301 obj_handle_t lhandle; /* handle to the listening socket */
1302 obj_handle_t ahandle; /* handle to the accepting socket */
1303 @END
1306 /* Set socket event parameters */
1307 @REQ(set_socket_event)
1308 obj_handle_t handle; /* handle to the socket */
1309 unsigned int mask; /* event mask */
1310 obj_handle_t event; /* event object */
1311 user_handle_t window; /* window to send the message to */
1312 unsigned int msg; /* message to send */
1313 @END
1316 /* Get socket event parameters */
1317 @REQ(get_socket_event)
1318 obj_handle_t handle; /* handle to the socket */
1319 int service; /* clear pending? */
1320 obj_handle_t c_event; /* event to clear */
1321 @REPLY
1322 unsigned int mask; /* event mask */
1323 unsigned int pmask; /* pending events */
1324 unsigned int state; /* status bits */
1325 VARARG(errors,ints); /* event errors */
1326 @END
1329 /* Get socket info */
1330 @REQ(get_socket_info)
1331 obj_handle_t handle; /* handle to the socket */
1332 @REPLY
1333 int family; /* family, see socket manpage */
1334 int type; /* type, see socket manpage */
1335 int protocol; /* protocol, see socket manpage */
1336 @END
1339 /* Re-enable pending socket events */
1340 @REQ(enable_socket_event)
1341 obj_handle_t handle; /* handle to the socket */
1342 unsigned int mask; /* events to re-enable */
1343 unsigned int sstate; /* status bits to set */
1344 unsigned int cstate; /* status bits to clear */
1345 @END
1347 @REQ(set_socket_deferred)
1348 obj_handle_t handle; /* handle to the socket */
1349 obj_handle_t deferred; /* handle to the socket for which accept() is deferred */
1350 @END
1352 /* Allocate a console (only used by a console renderer) */
1353 @REQ(alloc_console)
1354 unsigned int access; /* wanted access rights */
1355 unsigned int attributes; /* object attributes */
1356 process_id_t pid; /* pid of process which shall be attached to the console */
1357 int input_fd; /* if pid=-1 (bare console to current process), fd for input */
1358 @REPLY
1359 obj_handle_t handle_in; /* handle to console input */
1360 obj_handle_t event; /* handle to renderer events change notification */
1361 @END
1364 /* Free the console of the current process */
1365 @REQ(free_console)
1366 @END
1369 #define CONSOLE_RENDERER_NONE_EVENT 0x00
1370 #define CONSOLE_RENDERER_TITLE_EVENT 0x01
1371 #define CONSOLE_RENDERER_ACTIVE_SB_EVENT 0x02
1372 #define CONSOLE_RENDERER_SB_RESIZE_EVENT 0x03
1373 #define CONSOLE_RENDERER_UPDATE_EVENT 0x04
1374 #define CONSOLE_RENDERER_CURSOR_POS_EVENT 0x05
1375 #define CONSOLE_RENDERER_CURSOR_GEOM_EVENT 0x06
1376 #define CONSOLE_RENDERER_DISPLAY_EVENT 0x07
1377 #define CONSOLE_RENDERER_EXIT_EVENT 0x08
1378 struct console_renderer_event
1380 short event;
1381 union
1383 struct update
1385 short top;
1386 short bottom;
1387 } update;
1388 struct resize
1390 short width;
1391 short height;
1392 } resize;
1393 struct cursor_pos
1395 short x;
1396 short y;
1397 } cursor_pos;
1398 struct cursor_geom
1400 short visible;
1401 short size;
1402 } cursor_geom;
1403 struct display
1405 short left;
1406 short top;
1407 short width;
1408 short height;
1409 } display;
1410 } u;
1413 /* retrieve console events for the renderer */
1414 @REQ(get_console_renderer_events)
1415 obj_handle_t handle; /* handle to console input events */
1416 @REPLY
1417 VARARG(data,bytes); /* the various console_renderer_events */
1418 @END
1421 /* Open a handle to the process console */
1422 @REQ(open_console)
1423 obj_handle_t from; /* 0 (resp 1) input (resp output) of current process console */
1424 /* otherwise console_in handle to get active screen buffer? */
1425 unsigned int access; /* wanted access rights */
1426 unsigned int attributes; /* object attributes */
1427 int share; /* share mask (only for output handles) */
1428 @REPLY
1429 obj_handle_t handle; /* handle to the console */
1430 @END
1433 /* Get the input queue wait event */
1434 @REQ(get_console_wait_event)
1435 @REPLY
1436 obj_handle_t handle;
1437 @END
1439 /* Get a console mode (input or output) */
1440 @REQ(get_console_mode)
1441 obj_handle_t handle; /* handle to the console */
1442 @REPLY
1443 int mode; /* console mode */
1444 @END
1447 /* Set a console mode (input or output) */
1448 @REQ(set_console_mode)
1449 obj_handle_t handle; /* handle to the console */
1450 int mode; /* console mode */
1451 @END
1454 /* Set info about a console (input only) */
1455 @REQ(set_console_input_info)
1456 obj_handle_t handle; /* handle to console input, or 0 for process' console */
1457 int mask; /* setting mask (see below) */
1458 obj_handle_t active_sb; /* active screen buffer */
1459 int history_mode; /* whether we duplicate lines in history */
1460 int history_size; /* number of lines in history */
1461 int edition_mode; /* index to the edition mode flavors */
1462 int input_cp; /* console input codepage */
1463 int output_cp; /* console output codepage */
1464 user_handle_t win; /* console window if backend supports it */
1465 VARARG(title,unicode_str); /* console title */
1466 @END
1467 #define SET_CONSOLE_INPUT_INFO_ACTIVE_SB 0x01
1468 #define SET_CONSOLE_INPUT_INFO_TITLE 0x02
1469 #define SET_CONSOLE_INPUT_INFO_HISTORY_MODE 0x04
1470 #define SET_CONSOLE_INPUT_INFO_HISTORY_SIZE 0x08
1471 #define SET_CONSOLE_INPUT_INFO_EDITION_MODE 0x10
1472 #define SET_CONSOLE_INPUT_INFO_INPUT_CODEPAGE 0x20
1473 #define SET_CONSOLE_INPUT_INFO_OUTPUT_CODEPAGE 0x40
1474 #define SET_CONSOLE_INPUT_INFO_WIN 0x80
1477 /* Get info about a console (input only) */
1478 @REQ(get_console_input_info)
1479 obj_handle_t handle; /* handle to console input, or 0 for process' console */
1480 @REPLY
1481 int history_mode; /* whether we duplicate lines in history */
1482 int history_size; /* number of lines in history */
1483 int history_index; /* number of used lines in history */
1484 int edition_mode; /* index to the edition mode flavors */
1485 int input_cp; /* console input codepage */
1486 int output_cp; /* console output codepage */
1487 user_handle_t win; /* console window if backend supports it */
1488 VARARG(title,unicode_str); /* console title */
1489 @END
1492 /* appends a string to console's history */
1493 @REQ(append_console_input_history)
1494 obj_handle_t handle; /* handle to console input, or 0 for process' console */
1495 VARARG(line,unicode_str); /* line to add */
1496 @END
1499 /* appends a string to console's history */
1500 @REQ(get_console_input_history)
1501 obj_handle_t handle; /* handle to console input, or 0 for process' console */
1502 int index; /* index to get line from */
1503 @REPLY
1504 int total; /* total length of line in Unicode chars */
1505 VARARG(line,unicode_str); /* line to add */
1506 @END
1509 /* creates a new screen buffer on process' console */
1510 @REQ(create_console_output)
1511 obj_handle_t handle_in; /* handle to console input, or 0 for process' console */
1512 unsigned int access; /* wanted access rights */
1513 unsigned int attributes; /* object attributes */
1514 unsigned int share; /* sharing credentials */
1515 int fd; /* for bare consoles, fd the screen-buffer is attached to */
1516 @REPLY
1517 obj_handle_t handle_out; /* handle to the screen buffer */
1518 @END
1521 /* Set info about a console (output only) */
1522 @REQ(set_console_output_info)
1523 obj_handle_t handle; /* handle to the console */
1524 int mask; /* setting mask (see below) */
1525 short int cursor_size; /* size of cursor (percentage filled) */
1526 short int cursor_visible;/* cursor visibility flag */
1527 short int cursor_x; /* position of cursor (x, y) */
1528 short int cursor_y;
1529 short int width; /* width of the screen buffer */
1530 short int height; /* height of the screen buffer */
1531 short int attr; /* default fill attributes (screen colors) */
1532 short int popup_attr; /* pop-up color attributes */
1533 short int win_left; /* window actually displayed by renderer */
1534 short int win_top; /* the rect area is expressed within the */
1535 short int win_right; /* boundaries of the screen buffer */
1536 short int win_bottom;
1537 short int max_width; /* maximum size (width x height) for the window */
1538 short int max_height;
1539 short int font_width; /* font size (width x height) */
1540 short int font_height;
1541 VARARG(colors,uints); /* color table */
1542 @END
1543 #define SET_CONSOLE_OUTPUT_INFO_CURSOR_GEOM 0x0001
1544 #define SET_CONSOLE_OUTPUT_INFO_CURSOR_POS 0x0002
1545 #define SET_CONSOLE_OUTPUT_INFO_SIZE 0x0004
1546 #define SET_CONSOLE_OUTPUT_INFO_ATTR 0x0008
1547 #define SET_CONSOLE_OUTPUT_INFO_DISPLAY_WINDOW 0x0010
1548 #define SET_CONSOLE_OUTPUT_INFO_MAX_SIZE 0x0020
1549 #define SET_CONSOLE_OUTPUT_INFO_FONT 0x0040
1550 #define SET_CONSOLE_OUTPUT_INFO_COLORTABLE 0x0080
1551 #define SET_CONSOLE_OUTPUT_INFO_POPUP_ATTR 0x0100
1554 /* Get info about a console (output only) */
1555 @REQ(get_console_output_info)
1556 obj_handle_t handle; /* handle to the console */
1557 @REPLY
1558 short int cursor_size; /* size of cursor (percentage filled) */
1559 short int cursor_visible;/* cursor visibility flag */
1560 short int cursor_x; /* position of cursor (x, y) */
1561 short int cursor_y;
1562 short int width; /* width of the screen buffer */
1563 short int height; /* height of the screen buffer */
1564 short int attr; /* default fill attributes (screen colors) */
1565 short int popup_attr; /* pop-up color attributes */
1566 short int win_left; /* window actually displayed by renderer */
1567 short int win_top; /* the rect area is expressed within the */
1568 short int win_right; /* boundaries of the screen buffer */
1569 short int win_bottom;
1570 short int max_width; /* maximum size (width x height) for the window */
1571 short int max_height;
1572 short int font_width; /* font size (width x height) */
1573 short int font_height;
1574 VARARG(colors,uints); /* color table */
1575 @END
1577 /* Add input records to a console input queue */
1578 @REQ(write_console_input)
1579 obj_handle_t handle; /* handle to the console input */
1580 VARARG(rec,input_records); /* input records */
1581 @REPLY
1582 int written; /* number of records written */
1583 @END
1586 /* Fetch input records from a console input queue */
1587 @REQ(read_console_input)
1588 obj_handle_t handle; /* handle to the console input */
1589 int flush; /* flush the retrieved records from the queue? */
1590 @REPLY
1591 int read; /* number of records read */
1592 VARARG(rec,input_records); /* input records */
1593 @END
1596 /* write data (chars and/or attributes) in a screen buffer */
1597 @REQ(write_console_output)
1598 obj_handle_t handle; /* handle to the console output */
1599 int x; /* position where to start writing */
1600 int y;
1601 int mode; /* char info (see below) */
1602 int wrap; /* wrap around at end of line? */
1603 VARARG(data,bytes); /* info to write */
1604 @REPLY
1605 int written; /* number of char infos actually written */
1606 int width; /* width of screen buffer */
1607 int height; /* height of screen buffer */
1608 @END
1609 enum char_info_mode
1611 CHAR_INFO_MODE_TEXT, /* characters only */
1612 CHAR_INFO_MODE_ATTR, /* attributes only */
1613 CHAR_INFO_MODE_TEXTATTR, /* both characters and attributes */
1614 CHAR_INFO_MODE_TEXTSTDATTR /* characters but use standard attributes */
1618 /* fill a screen buffer with constant data (chars and/or attributes) */
1619 @REQ(fill_console_output)
1620 obj_handle_t handle; /* handle to the console output */
1621 int x; /* position where to start writing */
1622 int y;
1623 int mode; /* char info mode */
1624 int count; /* number to write */
1625 int wrap; /* wrap around at end of line? */
1626 char_info_t data; /* data to write */
1627 @REPLY
1628 int written; /* number of char infos actually written */
1629 @END
1632 /* read data (chars and/or attributes) from a screen buffer */
1633 @REQ(read_console_output)
1634 obj_handle_t handle; /* handle to the console output */
1635 int x; /* position (x,y) where to start reading */
1636 int y;
1637 int mode; /* char info mode */
1638 int wrap; /* wrap around at end of line? */
1639 @REPLY
1640 int width; /* width of screen buffer */
1641 int height; /* height of screen buffer */
1642 VARARG(data,bytes);
1643 @END
1646 /* move a rect (of data) in screen buffer content */
1647 @REQ(move_console_output)
1648 obj_handle_t handle; /* handle to the console output */
1649 short int x_src; /* position (x, y) of rect to start moving from */
1650 short int y_src;
1651 short int x_dst; /* position (x, y) of rect to move to */
1652 short int y_dst;
1653 short int w; /* size of the rect (width, height) to move */
1654 short int h;
1655 @END
1658 /* Sends a signal to a process group */
1659 @REQ(send_console_signal)
1660 int signal; /* the signal to send */
1661 process_id_t group_id; /* the group to send the signal to */
1662 @END
1665 /* enable directory change notifications */
1666 @REQ(read_directory_changes)
1667 unsigned int filter; /* notification filter */
1668 int subtree; /* watch the subtree? */
1669 int want_data; /* flag indicating whether change data should be collected */
1670 async_data_t async; /* async I/O parameters */
1671 @END
1674 @REQ(read_change)
1675 obj_handle_t handle;
1676 @REPLY
1677 VARARG(events,filesystem_event); /* collected filesystem events */
1678 @END
1681 /* Create a file mapping */
1682 @REQ(create_mapping)
1683 unsigned int access; /* wanted access rights */
1684 unsigned int flags; /* SEC_* flags */
1685 unsigned int protect; /* protection flags (see below) */
1686 mem_size_t size; /* mapping size */
1687 obj_handle_t file_handle; /* file handle */
1688 VARARG(objattr,object_attributes); /* object attributes */
1689 @REPLY
1690 obj_handle_t handle; /* handle to the mapping */
1691 @END
1692 /* per-page protection flags */
1693 #define VPROT_READ 0x01
1694 #define VPROT_WRITE 0x02
1695 #define VPROT_EXEC 0x04
1696 #define VPROT_WRITECOPY 0x08
1697 #define VPROT_GUARD 0x10
1698 #define VPROT_NOCACHE 0x20
1699 #define VPROT_COMMITTED 0x40
1700 #define VPROT_WRITEWATCH 0x80
1701 /* per-mapping protection flags */
1702 #define VPROT_IMAGE 0x0100 /* mapping for an exe image */
1703 #define VPROT_SYSTEM 0x0200 /* system view (underlying mmap not under our control) */
1704 #define VPROT_VALLOC 0x0400 /* allocated by VirtualAlloc */
1705 #define VPROT_NOEXEC 0x0800 /* don't force exec permission */
1708 /* Open a mapping */
1709 @REQ(open_mapping)
1710 unsigned int access; /* wanted access rights */
1711 unsigned int attributes; /* object attributes */
1712 obj_handle_t rootdir; /* root directory */
1713 VARARG(name,unicode_str); /* object name */
1714 @REPLY
1715 obj_handle_t handle; /* handle to the mapping */
1716 @END
1719 /* Get information about a file mapping */
1720 @REQ(get_mapping_info)
1721 obj_handle_t handle; /* handle to the mapping */
1722 unsigned int access; /* wanted access rights */
1723 @REPLY
1724 mem_size_t size; /* mapping size */
1725 unsigned int flags; /* SEC_* flags */
1726 int protect; /* protection flags */
1727 obj_handle_t mapping; /* duplicate mapping handle unless removable */
1728 obj_handle_t shared_file; /* shared mapping file handle */
1729 VARARG(image,pe_image_info);/* image info for SEC_IMAGE mappings */
1730 @END
1733 /* Get a range of committed pages in a file mapping */
1734 @REQ(get_mapping_committed_range)
1735 obj_handle_t handle; /* handle to the mapping */
1736 file_pos_t offset; /* starting offset (page-aligned, in bytes) */
1737 @REPLY
1738 mem_size_t size; /* size of range starting at offset (page-aligned, in bytes) */
1739 int committed; /* whether it is a committed range */
1740 @END
1743 /* Add a range to the committed pages in a file mapping */
1744 @REQ(add_mapping_committed_range)
1745 obj_handle_t handle; /* handle to the mapping */
1746 file_pos_t offset; /* starting offset (page-aligned, in bytes) */
1747 mem_size_t size; /* size to set (page-aligned, in bytes) or 0 if only retrieving */
1748 @END
1751 #define SNAP_PROCESS 0x00000001
1752 #define SNAP_THREAD 0x00000002
1753 /* Create a snapshot */
1754 @REQ(create_snapshot)
1755 unsigned int attributes; /* object attributes */
1756 unsigned int flags; /* snapshot flags (SNAP_*) */
1757 @REPLY
1758 obj_handle_t handle; /* handle to the snapshot */
1759 @END
1762 /* Get the next process from a snapshot */
1763 @REQ(next_process)
1764 obj_handle_t handle; /* handle to the snapshot */
1765 int reset; /* reset snapshot position? */
1766 @REPLY
1767 int count; /* process usage count */
1768 process_id_t pid; /* process id */
1769 process_id_t ppid; /* parent process id */
1770 int threads; /* number of threads */
1771 int priority; /* process priority */
1772 int handles; /* number of handles */
1773 int unix_pid; /* Unix pid */
1774 VARARG(filename,unicode_str); /* file name of main exe */
1775 @END
1778 /* Get the next thread from a snapshot */
1779 @REQ(next_thread)
1780 obj_handle_t handle; /* handle to the snapshot */
1781 int reset; /* reset snapshot position? */
1782 @REPLY
1783 int count; /* thread usage count */
1784 process_id_t pid; /* process id */
1785 thread_id_t tid; /* thread id */
1786 int base_pri; /* base priority */
1787 int delta_pri; /* delta priority */
1788 @END
1791 /* Wait for a debug event */
1792 @REQ(wait_debug_event)
1793 int get_handle; /* should we alloc a handle for waiting? */
1794 @REPLY
1795 process_id_t pid; /* process id */
1796 thread_id_t tid; /* thread id */
1797 obj_handle_t wait; /* wait handle if no event ready */
1798 VARARG(event,debug_event); /* debug event data */
1799 @END
1802 /* Queue an exception event */
1803 @REQ(queue_exception_event)
1804 int first; /* first chance exception? */
1805 unsigned int code; /* exception code */
1806 unsigned int flags; /* exception flags */
1807 client_ptr_t record; /* exception record */
1808 client_ptr_t address; /* exception address */
1809 data_size_t len; /* size of parameters */
1810 VARARG(params,uints64,len);/* exception parameters */
1811 VARARG(context,context); /* thread context */
1812 @REPLY
1813 obj_handle_t handle; /* handle to the queued event */
1814 @END
1817 /* Retrieve the status of an exception event */
1818 @REQ(get_exception_status)
1819 obj_handle_t handle; /* handle to the queued event */
1820 @REPLY
1821 VARARG(context,context); /* modified thread context */
1822 @END
1825 /* Continue a debug event */
1826 @REQ(continue_debug_event)
1827 process_id_t pid; /* process id to continue */
1828 thread_id_t tid; /* thread id to continue */
1829 int status; /* continuation status */
1830 @END
1833 /* Start/stop debugging an existing process */
1834 @REQ(debug_process)
1835 process_id_t pid; /* id of the process to debug */
1836 int attach; /* 1=attaching / 0=detaching from the process */
1837 @END
1840 /* Simulate a breakpoint in a process */
1841 @REQ(debug_break)
1842 obj_handle_t handle; /* process handle */
1843 @REPLY
1844 int self; /* was it the caller itself? */
1845 @END
1848 /* Set debugger kill on exit flag */
1849 @REQ(set_debugger_kill_on_exit)
1850 int kill_on_exit; /* 0=detach/1=kill debuggee when debugger dies */
1851 @END
1854 /* Read data from a process address space */
1855 @REQ(read_process_memory)
1856 obj_handle_t handle; /* process handle */
1857 client_ptr_t addr; /* addr to read from */
1858 @REPLY
1859 VARARG(data,bytes); /* result data */
1860 @END
1863 /* Write data to a process address space */
1864 @REQ(write_process_memory)
1865 obj_handle_t handle; /* process handle */
1866 client_ptr_t addr; /* addr to write to */
1867 VARARG(data,bytes); /* data to write */
1868 @END
1871 /* Create a registry key */
1872 @REQ(create_key)
1873 unsigned int access; /* desired access rights */
1874 unsigned int options; /* creation options */
1875 VARARG(objattr,object_attributes); /* object attributes */
1876 VARARG(class,unicode_str); /* class name */
1877 @REPLY
1878 obj_handle_t hkey; /* handle to the created key */
1879 int created; /* has it been newly created? */
1880 @END
1882 /* Open a registry key */
1883 @REQ(open_key)
1884 obj_handle_t parent; /* handle to the parent key */
1885 unsigned int access; /* desired access rights */
1886 unsigned int attributes; /* object attributes */
1887 VARARG(name,unicode_str); /* key name */
1888 @REPLY
1889 obj_handle_t hkey; /* handle to the open key */
1890 @END
1893 /* Delete a registry key */
1894 @REQ(delete_key)
1895 obj_handle_t hkey; /* handle to the key */
1896 @END
1899 /* Flush a registry key */
1900 @REQ(flush_key)
1901 obj_handle_t hkey; /* handle to the key */
1902 @END
1905 /* Enumerate registry subkeys */
1906 @REQ(enum_key)
1907 obj_handle_t hkey; /* handle to registry key */
1908 int index; /* index of subkey (or -1 for current key) */
1909 int info_class; /* requested information class */
1910 @REPLY
1911 int subkeys; /* number of subkeys */
1912 int max_subkey; /* longest subkey name */
1913 int max_class; /* longest class name */
1914 int values; /* number of values */
1915 int max_value; /* longest value name */
1916 int max_data; /* longest value data */
1917 timeout_t modif; /* last modification time */
1918 data_size_t total; /* total length needed for full name and class */
1919 data_size_t namelen; /* length of key name in bytes */
1920 VARARG(name,unicode_str,namelen); /* key name */
1921 VARARG(class,unicode_str); /* class name */
1922 @END
1925 /* Set a value of a registry key */
1926 @REQ(set_key_value)
1927 obj_handle_t hkey; /* handle to registry key */
1928 int type; /* value type */
1929 data_size_t namelen; /* length of value name in bytes */
1930 VARARG(name,unicode_str,namelen); /* value name */
1931 VARARG(data,bytes); /* value data */
1932 @END
1935 /* Retrieve the value of a registry key */
1936 @REQ(get_key_value)
1937 obj_handle_t hkey; /* handle to registry key */
1938 VARARG(name,unicode_str); /* value name */
1939 @REPLY
1940 int type; /* value type */
1941 data_size_t total; /* total length needed for data */
1942 VARARG(data,bytes); /* value data */
1943 @END
1946 /* Enumerate a value of a registry key */
1947 @REQ(enum_key_value)
1948 obj_handle_t hkey; /* handle to registry key */
1949 int index; /* value index */
1950 int info_class; /* requested information class */
1951 @REPLY
1952 int type; /* value type */
1953 data_size_t total; /* total length needed for full name and data */
1954 data_size_t namelen; /* length of value name in bytes */
1955 VARARG(name,unicode_str,namelen); /* value name */
1956 VARARG(data,bytes); /* value data */
1957 @END
1960 /* Delete a value of a registry key */
1961 @REQ(delete_key_value)
1962 obj_handle_t hkey; /* handle to registry key */
1963 VARARG(name,unicode_str); /* value name */
1964 @END
1967 /* Load a registry branch from a file */
1968 @REQ(load_registry)
1969 obj_handle_t file; /* file to load from */
1970 VARARG(objattr,object_attributes); /* object attributes */
1971 @END
1974 /* UnLoad a registry branch from a file */
1975 @REQ(unload_registry)
1976 obj_handle_t hkey; /* root key to unload to */
1977 @END
1980 /* Save a registry branch to a file */
1981 @REQ(save_registry)
1982 obj_handle_t hkey; /* key to save */
1983 obj_handle_t file; /* file to save to */
1984 @END
1987 /* Add a registry key change notification */
1988 @REQ(set_registry_notification)
1989 obj_handle_t hkey; /* key to watch for changes */
1990 obj_handle_t event; /* event to set */
1991 int subtree; /* should we watch the whole subtree? */
1992 unsigned int filter; /* things to watch */
1993 @END
1996 /* Create a waitable timer */
1997 @REQ(create_timer)
1998 unsigned int access; /* wanted access rights */
1999 int manual; /* manual reset */
2000 VARARG(objattr,object_attributes); /* object attributes */
2001 @REPLY
2002 obj_handle_t handle; /* handle to the timer */
2003 @END
2006 /* Open a waitable timer */
2007 @REQ(open_timer)
2008 unsigned int access; /* wanted access rights */
2009 unsigned int attributes; /* object attributes */
2010 obj_handle_t rootdir; /* root directory */
2011 VARARG(name,unicode_str); /* object name */
2012 @REPLY
2013 obj_handle_t handle; /* handle to the timer */
2014 @END
2016 /* Set a waitable timer */
2017 @REQ(set_timer)
2018 obj_handle_t handle; /* handle to the timer */
2019 timeout_t expire; /* next expiration absolute time */
2020 client_ptr_t callback; /* callback function */
2021 client_ptr_t arg; /* callback argument */
2022 int period; /* timer period in ms */
2023 @REPLY
2024 int signaled; /* was the timer signaled before this call ? */
2025 @END
2027 /* Cancel a waitable timer */
2028 @REQ(cancel_timer)
2029 obj_handle_t handle; /* handle to the timer */
2030 @REPLY
2031 int signaled; /* was the timer signaled before this calltime ? */
2032 @END
2034 /* Get information on a waitable timer */
2035 @REQ(get_timer_info)
2036 obj_handle_t handle; /* handle to the timer */
2037 @REPLY
2038 timeout_t when; /* absolute time when the timer next expires */
2039 int signaled; /* is the timer signaled? */
2040 @END
2043 /* Retrieve the current context of a thread */
2044 @REQ(get_thread_context)
2045 obj_handle_t handle; /* thread handle */
2046 unsigned int flags; /* context flags */
2047 int suspend; /* suspend the thread if needed */
2048 @REPLY
2049 int self; /* was it a handle to the current thread? */
2050 VARARG(context,context); /* thread context */
2051 @END
2054 /* Set the current context of a thread */
2055 @REQ(set_thread_context)
2056 obj_handle_t handle; /* thread handle */
2057 int suspend; /* suspend the thread if needed */
2058 VARARG(context,context); /* thread context */
2059 @REPLY
2060 int self; /* was it a handle to the current thread? */
2061 @END
2064 /* Fetch a selector entry for a thread */
2065 @REQ(get_selector_entry)
2066 obj_handle_t handle; /* thread handle */
2067 int entry; /* LDT entry */
2068 @REPLY
2069 unsigned int base; /* selector base */
2070 unsigned int limit; /* selector limit */
2071 unsigned char flags; /* selector flags */
2072 @END
2075 /* Add an atom */
2076 @REQ(add_atom)
2077 obj_handle_t table; /* which table to add atom to */
2078 VARARG(name,unicode_str); /* atom name */
2079 @REPLY
2080 atom_t atom; /* resulting atom */
2081 @END
2084 /* Delete an atom */
2085 @REQ(delete_atom)
2086 obj_handle_t table; /* which table to delete atom from */
2087 atom_t atom; /* atom handle */
2088 @END
2091 /* Find an atom */
2092 @REQ(find_atom)
2093 obj_handle_t table; /* which table to find atom from */
2094 VARARG(name,unicode_str); /* atom name */
2095 @REPLY
2096 atom_t atom; /* atom handle */
2097 @END
2100 /* Get information about an atom */
2101 @REQ(get_atom_information)
2102 obj_handle_t table; /* which table to find atom from */
2103 atom_t atom; /* atom handle */
2104 @REPLY
2105 int count; /* atom lock count */
2106 int pinned; /* whether the atom has been pinned */
2107 data_size_t total; /* actual length of atom name */
2108 VARARG(name,unicode_str); /* atom name */
2109 @END
2112 /* Set information about an atom */
2113 @REQ(set_atom_information)
2114 obj_handle_t table; /* which table to find atom from */
2115 atom_t atom; /* atom handle */
2116 int pinned; /* whether to bump atom information */
2117 @END
2120 /* Empty an atom table */
2121 @REQ(empty_atom_table)
2122 obj_handle_t table; /* which table to find atom from */
2123 int if_pinned; /* whether to delete pinned atoms */
2124 @END
2127 /* Init an atom table */
2128 @REQ(init_atom_table)
2129 int entries; /* number of entries (only for local) */
2130 @REPLY
2131 obj_handle_t table; /* handle to the atom table */
2132 @END
2135 /* Get the message queue of the current thread */
2136 @REQ(get_msg_queue)
2137 @REPLY
2138 obj_handle_t handle; /* handle to the queue */
2139 @END
2142 /* Set the file descriptor associated to the current thread queue */
2143 @REQ(set_queue_fd)
2144 obj_handle_t handle; /* handle to the file descriptor */
2145 @END
2148 /* Set the current message queue wakeup mask */
2149 @REQ(set_queue_mask)
2150 unsigned int wake_mask; /* wakeup bits mask */
2151 unsigned int changed_mask; /* changed bits mask */
2152 int skip_wait; /* will we skip waiting if signaled? */
2153 @REPLY
2154 unsigned int wake_bits; /* current wake bits */
2155 unsigned int changed_bits; /* current changed bits */
2156 @END
2159 /* Get the current message queue status */
2160 @REQ(get_queue_status)
2161 unsigned int clear_bits; /* should we clear the change bits? */
2162 @REPLY
2163 unsigned int wake_bits; /* wake bits */
2164 unsigned int changed_bits; /* changed bits since last time */
2165 @END
2168 /* Retrieve the process idle event */
2169 @REQ(get_process_idle_event)
2170 obj_handle_t handle; /* process handle */
2171 @REPLY
2172 obj_handle_t event; /* handle to idle event */
2173 @END
2176 /* Send a message to a thread queue */
2177 @REQ(send_message)
2178 thread_id_t id; /* thread id */
2179 int type; /* message type (see below) */
2180 int flags; /* message flags (see below) */
2181 user_handle_t win; /* window handle */
2182 unsigned int msg; /* message code */
2183 lparam_t wparam; /* parameters */
2184 lparam_t lparam; /* parameters */
2185 timeout_t timeout; /* timeout for reply */
2186 VARARG(data,message_data); /* message data for sent messages */
2187 @END
2189 @REQ(post_quit_message)
2190 int exit_code; /* exit code to return */
2191 @END
2193 enum message_type
2195 MSG_ASCII, /* Ascii message (from SendMessageA) */
2196 MSG_UNICODE, /* Unicode message (from SendMessageW) */
2197 MSG_NOTIFY, /* notify message (from SendNotifyMessageW), always Unicode */
2198 MSG_CALLBACK, /* callback message (from SendMessageCallbackW), always Unicode */
2199 MSG_CALLBACK_RESULT,/* result of a callback message */
2200 MSG_OTHER_PROCESS, /* sent from other process, may include vararg data, always Unicode */
2201 MSG_POSTED, /* posted message (from PostMessageW), always Unicode */
2202 MSG_HARDWARE, /* hardware message */
2203 MSG_WINEVENT, /* winevent message */
2204 MSG_HOOK_LL /* low-level hardware hook */
2206 #define SEND_MSG_ABORT_IF_HUNG 0x01
2209 /* Send a hardware message to a thread queue */
2210 @REQ(send_hardware_message)
2211 user_handle_t win; /* window handle */
2212 hw_input_t input; /* input data */
2213 unsigned int flags; /* flags (see below) */
2214 @REPLY
2215 int wait; /* do we need to wait for a reply? */
2216 int prev_x; /* previous cursor position */
2217 int prev_y;
2218 int new_x; /* new cursor position */
2219 int new_y;
2220 VARARG(keystate,bytes); /* global state array for all the keys */
2221 @END
2222 #define SEND_HWMSG_INJECTED 0x01
2225 /* Get a message from the current queue */
2226 @REQ(get_message)
2227 unsigned int flags; /* PM_* flags */
2228 user_handle_t get_win; /* window handle to get */
2229 unsigned int get_first; /* first message code to get */
2230 unsigned int get_last; /* last message code to get */
2231 unsigned int hw_id; /* id of the previous hardware message (or 0) */
2232 unsigned int wake_mask; /* wakeup bits mask */
2233 unsigned int changed_mask; /* changed bits mask */
2234 @REPLY
2235 user_handle_t win; /* window handle */
2236 unsigned int msg; /* message code */
2237 lparam_t wparam; /* parameters */
2238 lparam_t lparam; /* parameters */
2239 int type; /* message type */
2240 int x; /* message x position */
2241 int y; /* message y position */
2242 unsigned int time; /* message time */
2243 unsigned int active_hooks; /* active hooks bitmap */
2244 data_size_t total; /* total size of extra data */
2245 VARARG(data,message_data); /* message data for sent messages */
2246 @END
2249 /* Reply to a sent message */
2250 @REQ(reply_message)
2251 int remove; /* should we remove the message? */
2252 lparam_t result; /* message result */
2253 VARARG(data,bytes); /* message data for sent messages */
2254 @END
2257 /* Accept the current hardware message */
2258 @REQ(accept_hardware_message)
2259 unsigned int hw_id; /* id of the hardware message */
2260 int remove; /* should we remove the message? */
2261 @END
2264 /* Retrieve the reply for the last message sent */
2265 @REQ(get_message_reply)
2266 int cancel; /* cancel message if not ready? */
2267 @REPLY
2268 lparam_t result; /* message result */
2269 VARARG(data,bytes); /* message data for sent messages */
2270 @END
2273 /* Set a window timer */
2274 @REQ(set_win_timer)
2275 user_handle_t win; /* window handle */
2276 unsigned int msg; /* message to post */
2277 unsigned int rate; /* timer rate in ms */
2278 lparam_t id; /* timer id */
2279 lparam_t lparam; /* message lparam (callback proc) */
2280 @REPLY
2281 lparam_t id; /* timer id */
2282 @END
2285 /* Kill a window timer */
2286 @REQ(kill_win_timer)
2287 user_handle_t win; /* window handle */
2288 lparam_t id; /* timer id */
2289 unsigned int msg; /* message to post */
2290 @END
2293 /* check if the thread owning the window is hung */
2294 @REQ(is_window_hung)
2295 user_handle_t win; /* window handle */
2296 @REPLY
2297 int is_hung;
2298 @END
2301 /* Retrieve info about a serial port */
2302 @REQ(get_serial_info)
2303 obj_handle_t handle; /* handle to comm port */
2304 int flags;
2305 @REPLY
2306 unsigned int readinterval;
2307 unsigned int readconst;
2308 unsigned int readmult;
2309 unsigned int writeconst;
2310 unsigned int writemult;
2311 unsigned int eventmask;
2312 unsigned int cookie;
2313 unsigned int pending_write;
2314 @END
2317 /* Set info about a serial port */
2318 @REQ(set_serial_info)
2319 obj_handle_t handle; /* handle to comm port */
2320 int flags; /* bitmask to set values (see below) */
2321 unsigned int readinterval;
2322 unsigned int readconst;
2323 unsigned int readmult;
2324 unsigned int writeconst;
2325 unsigned int writemult;
2326 unsigned int eventmask;
2327 @END
2328 #define SERIALINFO_SET_TIMEOUTS 0x01
2329 #define SERIALINFO_SET_MASK 0x02
2330 #define SERIALINFO_PENDING_WRITE 0x04
2331 #define SERIALINFO_PENDING_WAIT 0x08
2334 /* Create an async I/O */
2335 @REQ(register_async)
2336 int type; /* type of queue to look after */
2337 async_data_t async; /* async I/O parameters */
2338 int count; /* count - usually # of bytes to be read/written */
2339 @END
2340 #define ASYNC_TYPE_READ 0x01
2341 #define ASYNC_TYPE_WRITE 0x02
2342 #define ASYNC_TYPE_WAIT 0x03
2345 /* Cancel all async op on a fd */
2346 @REQ(cancel_async)
2347 obj_handle_t handle; /* handle to comm port, socket or file */
2348 client_ptr_t iosb; /* I/O status block (NULL=all) */
2349 int only_thread; /* cancel matching this thread */
2350 @END
2353 /* Perform a read on a file object */
2354 @REQ(read)
2355 int blocking; /* whether it's a blocking read */
2356 async_data_t async; /* async I/O parameters */
2357 file_pos_t pos; /* read position */
2358 @REPLY
2359 obj_handle_t wait; /* handle to wait on for blocking read */
2360 unsigned int options; /* device open options */
2361 VARARG(data,bytes); /* read data */
2362 @END
2365 /* Perform a write on a file object */
2366 @REQ(write)
2367 int blocking; /* whether it's a blocking write */
2368 async_data_t async; /* async I/O parameters */
2369 file_pos_t pos; /* write position */
2370 VARARG(data,bytes); /* write data */
2371 @REPLY
2372 obj_handle_t wait; /* handle to wait on for blocking write */
2373 unsigned int options; /* device open options */
2374 data_size_t size; /* size written */
2375 @END
2378 /* Perform an ioctl on a file */
2379 @REQ(ioctl)
2380 ioctl_code_t code; /* ioctl code */
2381 async_data_t async; /* async I/O parameters */
2382 int blocking; /* whether it's a blocking ioctl */
2383 VARARG(in_data,bytes); /* ioctl input data */
2384 @REPLY
2385 obj_handle_t wait; /* handle to wait on for blocking ioctl */
2386 unsigned int options; /* device open options */
2387 VARARG(out_data,bytes); /* ioctl output data */
2388 @END
2391 /* Store results of an async irp */
2392 @REQ(set_irp_result)
2393 obj_handle_t handle; /* handle to the irp */
2394 unsigned int status; /* status of the irp */
2395 data_size_t size; /* result size (input or output depending on the operation) */
2396 client_ptr_t file_ptr; /* opaque pointer to the file object */
2397 VARARG(data,bytes); /* output data of the irp */
2398 @END
2401 /* Retrieve results of an async irp */
2402 @REQ(get_irp_result)
2403 obj_handle_t handle; /* handle to the device */
2404 client_ptr_t user_arg; /* user arg used to identify the request */
2405 @REPLY
2406 data_size_t size; /* result size (input or output depending on the operation) */
2407 VARARG(out_data,bytes); /* irp output data */
2408 @END
2411 /* Create a named pipe */
2412 @REQ(create_named_pipe)
2413 unsigned int access;
2414 unsigned int options;
2415 unsigned int sharing;
2416 unsigned int maxinstances;
2417 unsigned int outsize;
2418 unsigned int insize;
2419 timeout_t timeout;
2420 unsigned int flags;
2421 VARARG(objattr,object_attributes); /* object attributes */
2422 @REPLY
2423 obj_handle_t handle; /* handle to the pipe */
2424 @END
2426 /* flags in create_named_pipe and get_named_pipe_info */
2427 #define NAMED_PIPE_MESSAGE_STREAM_WRITE 0x0001
2428 #define NAMED_PIPE_MESSAGE_STREAM_READ 0x0002
2429 #define NAMED_PIPE_NONBLOCKING_MODE 0x0004
2430 #define NAMED_PIPE_SERVER_END 0x8000
2432 /* Get named pipe information by handle */
2433 @REQ(get_named_pipe_info)
2434 obj_handle_t handle;
2435 @REPLY
2436 unsigned int flags;
2437 unsigned int sharing;
2438 unsigned int maxinstances;
2439 unsigned int instances;
2440 unsigned int outsize;
2441 unsigned int insize;
2442 @END
2444 /* Set named pipe information by handle */
2445 @REQ(set_named_pipe_info)
2446 obj_handle_t handle;
2447 unsigned int flags;
2448 @END
2450 /* Create a window */
2451 @REQ(create_window)
2452 user_handle_t parent; /* parent window */
2453 user_handle_t owner; /* owner window */
2454 atom_t atom; /* class atom */
2455 mod_handle_t instance; /* module instance */
2456 VARARG(class,unicode_str); /* class name */
2457 @REPLY
2458 user_handle_t handle; /* created window */
2459 user_handle_t parent; /* full handle of parent */
2460 user_handle_t owner; /* full handle of owner */
2461 int extra; /* number of extra bytes */
2462 client_ptr_t class_ptr; /* pointer to class in client address space */
2463 @END
2466 /* Destroy a window */
2467 @REQ(destroy_window)
2468 user_handle_t handle; /* handle to the window */
2469 @END
2472 /* Retrieve the desktop window for the current thread */
2473 @REQ(get_desktop_window)
2474 int force; /* force creation if it doesn't exist */
2475 @REPLY
2476 user_handle_t top_window; /* handle to the desktop window */
2477 user_handle_t msg_window; /* handle to the top-level HWND_MESSAGE parent */
2478 @END
2481 /* Set a window owner */
2482 @REQ(set_window_owner)
2483 user_handle_t handle; /* handle to the window */
2484 user_handle_t owner; /* new owner */
2485 @REPLY
2486 user_handle_t full_owner; /* full handle of new owner */
2487 user_handle_t prev_owner; /* full handle of previous owner */
2488 @END
2491 /* Get information from a window handle */
2492 @REQ(get_window_info)
2493 user_handle_t handle; /* handle to the window */
2494 @REPLY
2495 user_handle_t full_handle; /* full 32-bit handle */
2496 user_handle_t last_active; /* last active popup */
2497 process_id_t pid; /* process owning the window */
2498 thread_id_t tid; /* thread owning the window */
2499 atom_t atom; /* class atom */
2500 int is_unicode; /* ANSI or unicode */
2501 @END
2504 /* Set some information in a window */
2505 @REQ(set_window_info)
2506 unsigned short flags; /* flags for fields to set (see below) */
2507 short int is_unicode; /* ANSI or unicode */
2508 user_handle_t handle; /* handle to the window */
2509 unsigned int style; /* window style */
2510 unsigned int ex_style; /* window extended style */
2511 unsigned int id; /* window id */
2512 mod_handle_t instance; /* creator instance */
2513 lparam_t user_data; /* user-specific data */
2514 int extra_offset; /* offset to set in extra bytes */
2515 data_size_t extra_size; /* size to set in extra bytes */
2516 lparam_t extra_value; /* value to set in extra bytes */
2517 @REPLY
2518 unsigned int old_style; /* old window style */
2519 unsigned int old_ex_style; /* old window extended style */
2520 mod_handle_t old_instance; /* old creator instance */
2521 lparam_t old_user_data; /* old user-specific data */
2522 lparam_t old_extra_value; /* old value in extra bytes */
2523 unsigned int old_id; /* old window id */
2524 @END
2525 #define SET_WIN_STYLE 0x01
2526 #define SET_WIN_EXSTYLE 0x02
2527 #define SET_WIN_ID 0x04
2528 #define SET_WIN_INSTANCE 0x08
2529 #define SET_WIN_USERDATA 0x10
2530 #define SET_WIN_EXTRA 0x20
2531 #define SET_WIN_UNICODE 0x40
2534 /* Set the parent of a window */
2535 @REQ(set_parent)
2536 user_handle_t handle; /* handle to the window */
2537 user_handle_t parent; /* handle to the parent */
2538 @REPLY
2539 user_handle_t old_parent; /* old parent window */
2540 user_handle_t full_parent; /* full handle of new parent */
2541 @END
2544 /* Get a list of the window parents, up to the root of the tree */
2545 @REQ(get_window_parents)
2546 user_handle_t handle; /* handle to the window */
2547 @REPLY
2548 int count; /* total count of parents */
2549 VARARG(parents,user_handles); /* parent handles */
2550 @END
2553 /* Get a list of the window children */
2554 @REQ(get_window_children)
2555 obj_handle_t desktop; /* handle to desktop */
2556 user_handle_t parent; /* parent window */
2557 atom_t atom; /* class atom for the listed children */
2558 thread_id_t tid; /* thread owning the listed children */
2559 VARARG(class,unicode_str); /* class name */
2560 @REPLY
2561 int count; /* total count of children */
2562 VARARG(children,user_handles); /* children handles */
2563 @END
2566 /* Get a list of the window children that contain a given point */
2567 @REQ(get_window_children_from_point)
2568 user_handle_t parent; /* parent window */
2569 int x; /* point in parent coordinates */
2570 int y;
2571 @REPLY
2572 int count; /* total count of children */
2573 VARARG(children,user_handles); /* children handles */
2574 @END
2577 /* Get window tree information from a window handle */
2578 @REQ(get_window_tree)
2579 user_handle_t handle; /* handle to the window */
2580 @REPLY
2581 user_handle_t parent; /* parent window */
2582 user_handle_t owner; /* owner window */
2583 user_handle_t next_sibling; /* next sibling in Z-order */
2584 user_handle_t prev_sibling; /* prev sibling in Z-order */
2585 user_handle_t first_sibling; /* first sibling in Z-order */
2586 user_handle_t last_sibling; /* last sibling in Z-order */
2587 user_handle_t first_child; /* first child */
2588 user_handle_t last_child; /* last child */
2589 @END
2591 /* Set the position and Z order of a window */
2592 @REQ(set_window_pos)
2593 unsigned short swp_flags; /* SWP_* flags */
2594 unsigned short paint_flags; /* paint flags (see below) */
2595 user_handle_t handle; /* handle to the window */
2596 user_handle_t previous; /* previous window in Z order */
2597 rectangle_t window; /* window rectangle (in parent coords) */
2598 rectangle_t client; /* client rectangle (in parent coords) */
2599 VARARG(valid,rectangles); /* valid rectangles from WM_NCCALCSIZE (in parent coords) */
2600 @REPLY
2601 unsigned int new_style; /* new window style */
2602 unsigned int new_ex_style; /* new window extended style */
2603 user_handle_t surface_win; /* window that needs a surface update */
2604 @END
2605 #define SET_WINPOS_PAINT_SURFACE 0x01 /* window has a paintable surface */
2606 #define SET_WINPOS_PIXEL_FORMAT 0x02 /* window has a custom pixel format */
2608 /* Get the window and client rectangles of a window */
2609 @REQ(get_window_rectangles)
2610 user_handle_t handle; /* handle to the window */
2611 int relative; /* coords relative to (see below) */
2612 @REPLY
2613 rectangle_t window; /* window rectangle */
2614 rectangle_t visible; /* visible part of the window rectangle */
2615 rectangle_t client; /* client rectangle */
2616 @END
2617 enum coords_relative
2619 COORDS_CLIENT, /* relative to client area */
2620 COORDS_WINDOW, /* relative to whole window area */
2621 COORDS_PARENT, /* relative to parent's client area */
2622 COORDS_SCREEN /* relative to screen origin */
2626 /* Get the window text */
2627 @REQ(get_window_text)
2628 user_handle_t handle; /* handle to the window */
2629 @REPLY
2630 VARARG(text,unicode_str); /* window text */
2631 @END
2634 /* Set the window text */
2635 @REQ(set_window_text)
2636 user_handle_t handle; /* handle to the window */
2637 VARARG(text,unicode_str); /* window text */
2638 @END
2641 /* Get the coordinates offset between two windows */
2642 @REQ(get_windows_offset)
2643 user_handle_t from; /* handle to the first window */
2644 user_handle_t to; /* handle to the second window */
2645 @REPLY
2646 int x; /* x coordinate offset */
2647 int y; /* y coordinate offset */
2648 int mirror; /* whether to mirror the x coordinate */
2649 @END
2652 /* Get the visible region of a window */
2653 @REQ(get_visible_region)
2654 user_handle_t window; /* handle to the window */
2655 unsigned int flags; /* DCX flags */
2656 @REPLY
2657 user_handle_t top_win; /* top window to clip against */
2658 rectangle_t top_rect; /* top window visible rect with screen coords */
2659 rectangle_t win_rect; /* window rect in screen coords */
2660 unsigned int paint_flags; /* paint flags (from SET_WINPOS_* flags) */
2661 data_size_t total_size; /* total size of the resulting region */
2662 VARARG(region,rectangles); /* list of rectangles for the region (in screen coords) */
2663 @END
2666 /* Get the visible surface region of a window */
2667 @REQ(get_surface_region)
2668 user_handle_t window; /* handle to the window */
2669 @REPLY
2670 rectangle_t visible_rect; /* window visible rect in screen coords */
2671 data_size_t total_size; /* total size of the resulting region */
2672 VARARG(region,rectangles); /* list of rectangles for the region (in screen coords) */
2673 @END
2676 /* Get the window region */
2677 @REQ(get_window_region)
2678 user_handle_t window; /* handle to the window */
2679 @REPLY
2680 data_size_t total_size; /* total size of the resulting region */
2681 VARARG(region,rectangles); /* list of rectangles for the region (in window coords) */
2682 @END
2685 /* Set the window region */
2686 @REQ(set_window_region)
2687 user_handle_t window; /* handle to the window */
2688 int redraw; /* redraw the window? */
2689 VARARG(region,rectangles); /* list of rectangles for the region (in window coords) */
2690 @END
2693 /* Get the window update region */
2694 @REQ(get_update_region)
2695 user_handle_t window; /* handle to the window */
2696 user_handle_t from_child; /* child to start searching from */
2697 unsigned int flags; /* update flags (see below) */
2698 @REPLY
2699 user_handle_t child; /* child to repaint (or window itself) */
2700 unsigned int flags; /* resulting update flags (see below) */
2701 data_size_t total_size; /* total size of the resulting region */
2702 VARARG(region,rectangles); /* list of rectangles for the region (in screen coords) */
2703 @END
2704 #define UPDATE_NONCLIENT 0x01 /* get region for repainting non-client area */
2705 #define UPDATE_ERASE 0x02 /* get region for erasing client area */
2706 #define UPDATE_PAINT 0x04 /* get region for painting client area */
2707 #define UPDATE_INTERNALPAINT 0x08 /* get region if internal paint is pending */
2708 #define UPDATE_ALLCHILDREN 0x10 /* force repaint of all children */
2709 #define UPDATE_NOCHILDREN 0x20 /* don't try to repaint any children */
2710 #define UPDATE_NOREGION 0x40 /* don't return a region, only the flags */
2711 #define UPDATE_DELAYED_ERASE 0x80 /* still needs erase after BeginPaint */
2714 /* Update the z order of a window so that a given rectangle is fully visible */
2715 @REQ(update_window_zorder)
2716 user_handle_t window; /* handle to the window */
2717 rectangle_t rect; /* rectangle that must be visible (in client coords) */
2718 @END
2721 /* Mark parts of a window as needing a redraw */
2722 @REQ(redraw_window)
2723 user_handle_t window; /* handle to the window */
2724 unsigned int flags; /* RDW_* flags */
2725 VARARG(region,rectangles); /* list of rectangles for the region (in window coords) */
2726 @END
2729 /* Set a window property */
2730 @REQ(set_window_property)
2731 user_handle_t window; /* handle to the window */
2732 lparam_t data; /* data to store */
2733 atom_t atom; /* property atom (if no name specified) */
2734 VARARG(name,unicode_str); /* property name */
2735 @END
2738 /* Remove a window property */
2739 @REQ(remove_window_property)
2740 user_handle_t window; /* handle to the window */
2741 atom_t atom; /* property atom (if no name specified) */
2742 VARARG(name,unicode_str); /* property name */
2743 @REPLY
2744 lparam_t data; /* data stored in property */
2745 @END
2748 /* Get a window property */
2749 @REQ(get_window_property)
2750 user_handle_t window; /* handle to the window */
2751 atom_t atom; /* property atom (if no name specified) */
2752 VARARG(name,unicode_str); /* property name */
2753 @REPLY
2754 lparam_t data; /* data stored in property */
2755 @END
2758 /* Get the list of properties of a window */
2759 @REQ(get_window_properties)
2760 user_handle_t window; /* handle to the window */
2761 @REPLY
2762 int total; /* total number of properties */
2763 VARARG(props,properties); /* list of properties */
2764 @END
2767 /* Create a window station */
2768 @REQ(create_winstation)
2769 unsigned int flags; /* window station flags */
2770 unsigned int access; /* wanted access rights */
2771 unsigned int attributes; /* object attributes */
2772 obj_handle_t rootdir; /* root directory */
2773 VARARG(name,unicode_str); /* object name */
2774 @REPLY
2775 obj_handle_t handle; /* handle to the window station */
2776 @END
2779 /* Open a handle to a window station */
2780 @REQ(open_winstation)
2781 unsigned int access; /* wanted access rights */
2782 unsigned int attributes; /* object attributes */
2783 obj_handle_t rootdir; /* root directory */
2784 VARARG(name,unicode_str); /* object name */
2785 @REPLY
2786 obj_handle_t handle; /* handle to the window station */
2787 @END
2790 /* Close a window station */
2791 @REQ(close_winstation)
2792 obj_handle_t handle; /* handle to the window station */
2793 @END
2796 /* Get the process current window station */
2797 @REQ(get_process_winstation)
2798 @REPLY
2799 obj_handle_t handle; /* handle to the window station */
2800 @END
2803 /* Set the process current window station */
2804 @REQ(set_process_winstation)
2805 obj_handle_t handle; /* handle to the window station */
2806 @END
2809 /* Enumerate window stations */
2810 @REQ(enum_winstation)
2811 unsigned int index; /* current index */
2812 @REPLY
2813 unsigned int next; /* next index */
2814 VARARG(name,unicode_str); /* window station name */
2815 @END
2818 /* Create a desktop */
2819 @REQ(create_desktop)
2820 unsigned int flags; /* desktop flags */
2821 unsigned int access; /* wanted access rights */
2822 unsigned int attributes; /* object attributes */
2823 VARARG(name,unicode_str); /* object name */
2824 @REPLY
2825 obj_handle_t handle; /* handle to the desktop */
2826 @END
2829 /* Open a handle to a desktop */
2830 @REQ(open_desktop)
2831 obj_handle_t winsta; /* window station to open (null allowed) */
2832 unsigned int flags; /* desktop flags */
2833 unsigned int access; /* wanted access rights */
2834 unsigned int attributes; /* object attributes */
2835 VARARG(name,unicode_str); /* object name */
2836 @REPLY
2837 obj_handle_t handle; /* handle to the desktop */
2838 @END
2841 /* Open a handle to current input desktop */
2842 @REQ(open_input_desktop)
2843 unsigned int flags; /* desktop flags */
2844 unsigned int access; /* wanted access rights */
2845 unsigned int attributes; /* object attributes */
2846 @REPLY
2847 obj_handle_t handle; /* handle to the desktop */
2848 @END
2851 /* Close a desktop */
2852 @REQ(close_desktop)
2853 obj_handle_t handle; /* handle to the desktop */
2854 @END
2857 /* Get the thread current desktop */
2858 @REQ(get_thread_desktop)
2859 thread_id_t tid; /* thread id */
2860 @REPLY
2861 obj_handle_t handle; /* handle to the desktop */
2862 @END
2865 /* Set the thread current desktop */
2866 @REQ(set_thread_desktop)
2867 obj_handle_t handle; /* handle to the desktop */
2868 @END
2871 /* Enumerate desktops */
2872 @REQ(enum_desktop)
2873 obj_handle_t winstation; /* handle to the window station */
2874 unsigned int index; /* current index */
2875 @REPLY
2876 unsigned int next; /* next index */
2877 VARARG(name,unicode_str); /* window station name */
2878 @END
2881 /* Get/set information about a user object (window station or desktop) */
2882 @REQ(set_user_object_info)
2883 obj_handle_t handle; /* handle to the object */
2884 unsigned int flags; /* information to set/get */
2885 unsigned int obj_flags; /* new object flags */
2886 @REPLY
2887 int is_desktop; /* is object a desktop? */
2888 unsigned int old_obj_flags; /* old object flags */
2889 VARARG(name,unicode_str); /* object name */
2890 @END
2891 #define SET_USER_OBJECT_SET_FLAGS 1
2892 #define SET_USER_OBJECT_GET_FULL_NAME 2
2895 /* Register a hotkey */
2896 @REQ(register_hotkey)
2897 user_handle_t window; /* handle to the window */
2898 int id; /* hotkey identifier */
2899 unsigned int flags; /* modifier keys */
2900 unsigned int vkey; /* virtual key code */
2901 @REPLY
2902 int replaced; /* did we replace an existing hotkey? */
2903 unsigned int flags; /* flags of replaced hotkey */
2904 unsigned int vkey; /* virtual key code of replaced hotkey */
2905 @END
2908 /* Unregister a hotkey */
2909 @REQ(unregister_hotkey)
2910 user_handle_t window; /* handle to the window */
2911 int id; /* hotkey identifier */
2912 @REPLY
2913 unsigned int flags; /* flags of removed hotkey */
2914 unsigned int vkey; /* virtual key code of removed hotkey */
2915 @END
2918 /* Attach (or detach) thread inputs */
2919 @REQ(attach_thread_input)
2920 thread_id_t tid_from; /* thread to be attached */
2921 thread_id_t tid_to; /* thread to which tid_from should be attached */
2922 int attach; /* is it an attach? */
2923 @END
2926 /* Get input data for a given thread */
2927 @REQ(get_thread_input)
2928 thread_id_t tid; /* id of thread */
2929 @REPLY
2930 user_handle_t focus; /* handle to the focus window */
2931 user_handle_t capture; /* handle to the capture window */
2932 user_handle_t active; /* handle to the active window */
2933 user_handle_t foreground; /* handle to the global foreground window */
2934 user_handle_t menu_owner; /* handle to the menu owner */
2935 user_handle_t move_size; /* handle to the moving/resizing window */
2936 user_handle_t caret; /* handle to the caret window */
2937 user_handle_t cursor; /* handle to the cursor */
2938 int show_count; /* cursor show count */
2939 rectangle_t rect; /* caret rectangle */
2940 @END
2943 /* Get the time of the last input event */
2944 @REQ(get_last_input_time)
2945 @REPLY
2946 unsigned int time;
2947 @END
2950 /* Retrieve queue keyboard state for a given thread */
2951 @REQ(get_key_state)
2952 thread_id_t tid; /* id of thread */
2953 int key; /* optional key code or -1 */
2954 @REPLY
2955 unsigned char state; /* state of specified key */
2956 VARARG(keystate,bytes); /* state array for all the keys */
2957 @END
2959 /* Set queue keyboard state for a given thread */
2960 @REQ(set_key_state)
2961 thread_id_t tid; /* id of thread */
2962 int async; /* whether to change the async state too */
2963 VARARG(keystate,bytes); /* state array for all the keys */
2964 @END
2966 /* Set the system foreground window */
2967 @REQ(set_foreground_window)
2968 user_handle_t handle; /* handle to the foreground window */
2969 @REPLY
2970 user_handle_t previous; /* handle to the previous foreground window */
2971 int send_msg_old; /* whether we have to send a msg to the old window */
2972 int send_msg_new; /* whether we have to send a msg to the new window */
2973 @END
2975 /* Set the current thread focus window */
2976 @REQ(set_focus_window)
2977 user_handle_t handle; /* handle to the focus window */
2978 @REPLY
2979 user_handle_t previous; /* handle to the previous focus window */
2980 @END
2982 /* Set the current thread active window */
2983 @REQ(set_active_window)
2984 user_handle_t handle; /* handle to the active window */
2985 @REPLY
2986 user_handle_t previous; /* handle to the previous active window */
2987 @END
2989 /* Set the current thread capture window */
2990 @REQ(set_capture_window)
2991 user_handle_t handle; /* handle to the capture window */
2992 unsigned int flags; /* capture flags (see below) */
2993 @REPLY
2994 user_handle_t previous; /* handle to the previous capture window */
2995 user_handle_t full_handle; /* full 32-bit handle of new capture window */
2996 @END
2997 #define CAPTURE_MENU 0x01 /* capture is for a menu */
2998 #define CAPTURE_MOVESIZE 0x02 /* capture is for moving/resizing */
3001 /* Set the current thread caret window */
3002 @REQ(set_caret_window)
3003 user_handle_t handle; /* handle to the caret window */
3004 int width; /* caret width */
3005 int height; /* caret height */
3006 @REPLY
3007 user_handle_t previous; /* handle to the previous caret window */
3008 rectangle_t old_rect; /* previous caret rectangle */
3009 int old_hide; /* previous hide count */
3010 int old_state; /* previous caret state (1=on, 0=off) */
3011 @END
3014 /* Set the current thread caret information */
3015 @REQ(set_caret_info)
3016 unsigned int flags; /* caret flags (see below) */
3017 user_handle_t handle; /* handle to the caret window */
3018 int x; /* caret x position */
3019 int y; /* caret y position */
3020 int hide; /* increment for hide count (can be negative to show it) */
3021 int state; /* caret state (see below) */
3022 @REPLY
3023 user_handle_t full_handle; /* handle to the current caret window */
3024 rectangle_t old_rect; /* previous caret rectangle */
3025 int old_hide; /* previous hide count */
3026 int old_state; /* previous caret state (1=on, 0=off) */
3027 @END
3028 #define SET_CARET_POS 0x01 /* set the caret position from x,y */
3029 #define SET_CARET_HIDE 0x02 /* increment the caret hide count */
3030 #define SET_CARET_STATE 0x04 /* set the caret on/off state */
3031 enum caret_state
3033 CARET_STATE_OFF, /* off */
3034 CARET_STATE_ON, /* on */
3035 CARET_STATE_TOGGLE, /* toggle current state */
3036 CARET_STATE_ON_IF_MOVED /* on if the position differs, unchanged otherwise */
3040 /* Set a window hook */
3041 @REQ(set_hook)
3042 int id; /* id of the hook */
3043 process_id_t pid; /* id of process to set the hook into */
3044 thread_id_t tid; /* id of thread to set the hook into */
3045 int event_min;
3046 int event_max;
3047 client_ptr_t proc; /* hook procedure */
3048 int flags;
3049 int unicode; /* is it a unicode hook? */
3050 VARARG(module,unicode_str); /* module name */
3051 @REPLY
3052 user_handle_t handle; /* handle to the hook */
3053 unsigned int active_hooks; /* active hooks bitmap */
3054 @END
3057 /* Remove a window hook */
3058 @REQ(remove_hook)
3059 user_handle_t handle; /* handle to the hook */
3060 client_ptr_t proc; /* hook procedure if handle is 0 */
3061 int id; /* id of the hook if handle is 0 */
3062 @REPLY
3063 unsigned int active_hooks; /* active hooks bitmap */
3064 @END
3067 /* Start calling a hook chain */
3068 @REQ(start_hook_chain)
3069 int id; /* id of the hook */
3070 int event; /* signalled event */
3071 user_handle_t window; /* handle to the event window */
3072 int object_id; /* object id for out of context winevent */
3073 int child_id; /* child id for out of context winevent */
3074 @REPLY
3075 user_handle_t handle; /* handle to the next hook */
3076 process_id_t pid; /* process id for low-level keyboard/mouse hooks */
3077 thread_id_t tid; /* thread id for low-level keyboard/mouse hooks */
3078 int unicode; /* is it a unicode hook? */
3079 client_ptr_t proc; /* hook procedure */
3080 unsigned int active_hooks; /* active hooks bitmap */
3081 VARARG(module,unicode_str); /* module name */
3082 @END
3085 /* Finished calling a hook chain */
3086 @REQ(finish_hook_chain)
3087 int id; /* id of the hook */
3088 @END
3091 /* Get the hook information */
3092 @REQ(get_hook_info)
3093 user_handle_t handle; /* handle to the current hook */
3094 int get_next; /* do we want info about current or next hook? */
3095 int event; /* signalled event */
3096 user_handle_t window; /* handle to the event window */
3097 int object_id; /* object id for out of context winevent */
3098 int child_id; /* child id for out of context winevent */
3099 @REPLY
3100 user_handle_t handle; /* handle to the hook */
3101 int id; /* id of the hook */
3102 process_id_t pid; /* process id for low-level keyboard/mouse hooks */
3103 thread_id_t tid; /* thread id for low-level keyboard/mouse hooks */
3104 client_ptr_t proc; /* hook procedure */
3105 int unicode; /* is it a unicode hook? */
3106 VARARG(module,unicode_str); /* module name */
3107 @END
3110 /* Create a window class */
3111 @REQ(create_class)
3112 int local; /* is it a local class? */
3113 atom_t atom; /* class atom */
3114 unsigned int style; /* class style */
3115 mod_handle_t instance; /* module instance */
3116 int extra; /* number of extra class bytes */
3117 int win_extra; /* number of window extra bytes */
3118 client_ptr_t client_ptr; /* pointer to class in client address space */
3119 VARARG(name,unicode_str); /* class name */
3120 @REPLY
3121 atom_t atom; /* resulting class atom */
3122 @END
3125 /* Destroy a window class */
3126 @REQ(destroy_class)
3127 atom_t atom; /* class atom */
3128 mod_handle_t instance; /* module instance */
3129 VARARG(name,unicode_str); /* class name */
3130 @REPLY
3131 client_ptr_t client_ptr; /* pointer to class in client address space */
3132 @END
3135 /* Set some information in a class */
3136 @REQ(set_class_info)
3137 user_handle_t window; /* handle to the window */
3138 unsigned int flags; /* flags for info to set (see below) */
3139 atom_t atom; /* class atom */
3140 unsigned int style; /* class style */
3141 int win_extra; /* number of window extra bytes */
3142 mod_handle_t instance; /* module instance */
3143 int extra_offset; /* offset to set in extra bytes */
3144 data_size_t extra_size; /* size to set in extra bytes */
3145 lparam_t extra_value; /* value to set in extra bytes */
3146 @REPLY
3147 atom_t old_atom; /* previous class atom */
3148 unsigned int old_style; /* previous class style */
3149 int old_extra; /* previous number of class extra bytes */
3150 int old_win_extra; /* previous number of window extra bytes */
3151 mod_handle_t old_instance; /* previous module instance */
3152 lparam_t old_extra_value; /* old value in extra bytes */
3153 @END
3154 #define SET_CLASS_ATOM 0x0001
3155 #define SET_CLASS_STYLE 0x0002
3156 #define SET_CLASS_WINEXTRA 0x0004
3157 #define SET_CLASS_INSTANCE 0x0008
3158 #define SET_CLASS_EXTRA 0x0010
3161 /* Open the clipboard */
3162 @REQ(open_clipboard)
3163 user_handle_t window; /* clipboard window */
3164 @REPLY
3165 int owner; /* is the process already the owner? */
3166 @END
3169 /* Close the clipboard */
3170 @REQ(close_clipboard)
3171 int changed; /* did it change since the open? */
3172 @REPLY
3173 user_handle_t viewer; /* first clipboard viewer */
3174 int owner; /* is the process already the owner? */
3175 @END
3178 /* Set/get clipboard information */
3179 @REQ(set_clipboard_info)
3180 unsigned int flags; /* flags for fields to set (see below) */
3181 user_handle_t owner; /* clipboard owner */
3182 @REPLY
3183 unsigned int flags; /* status flags (see below) */
3184 user_handle_t old_clipboard; /* old clipboard window */
3185 user_handle_t old_owner; /* old clipboard owner */
3186 user_handle_t old_viewer; /* old clipboard viewer */
3187 unsigned int seqno; /* current sequence number */
3188 @END
3190 #define SET_CB_SEQNO 0x008
3191 #define SET_CB_RELOWNER 0x010
3192 #define CB_OPEN_ANY 0x020
3193 #define CB_OPEN 0x040
3194 #define CB_OWNER 0x080
3195 #define CB_PROCESS 0x100
3198 /* Empty the clipboard and grab ownership */
3199 @REQ(empty_clipboard)
3200 @END
3203 /* Release ownership of the clipboard */
3204 @REQ(release_clipboard)
3205 user_handle_t owner; /* clipboard owner to release */
3206 @REPLY
3207 user_handle_t viewer; /* first clipboard viewer */
3208 user_handle_t owner; /* current clipboard owner */
3209 @END
3212 /* Get clipboard information */
3213 @REQ(get_clipboard_info)
3214 @REPLY
3215 user_handle_t window; /* clipboard window */
3216 user_handle_t owner; /* clipboard owner */
3217 user_handle_t viewer; /* clipboard viewer */
3218 unsigned int seqno; /* current sequence number */
3219 @END
3222 /* Set the clipboard viewer window */
3223 @REQ(set_clipboard_viewer)
3224 user_handle_t viewer; /* clipboard viewer */
3225 user_handle_t previous; /* if non-zero, check that this was the previous viewer */
3226 @REPLY
3227 user_handle_t old_viewer; /* previous clipboard viewer */
3228 user_handle_t owner; /* clipboard owner */
3229 @END
3232 /* Add a clipboard listener window */
3233 @REQ(add_clipboard_listener)
3234 user_handle_t window; /* clipboard listener window */
3235 @END
3238 /* Remove a clipboard listener window */
3239 @REQ(remove_clipboard_listener)
3240 user_handle_t window; /* clipboard listener window */
3241 @END
3244 /* Open a security token */
3245 @REQ(open_token)
3246 obj_handle_t handle; /* handle to the thread or process */
3247 unsigned int access; /* access rights to the new token */
3248 unsigned int attributes;/* object attributes */
3249 unsigned int flags; /* flags (see below) */
3250 @REPLY
3251 obj_handle_t token; /* handle to the token */
3252 @END
3253 #define OPEN_TOKEN_THREAD 1
3254 #define OPEN_TOKEN_AS_SELF 2
3257 /* Set/get the global windows */
3258 @REQ(set_global_windows)
3259 unsigned int flags; /* flags for fields to set (see below) */
3260 user_handle_t shell_window; /* handle to the new shell window */
3261 user_handle_t shell_listview; /* handle to the new shell listview window */
3262 user_handle_t progman_window; /* handle to the new program manager window */
3263 user_handle_t taskman_window; /* handle to the new task manager window */
3264 @REPLY
3265 user_handle_t old_shell_window; /* handle to the shell window */
3266 user_handle_t old_shell_listview; /* handle to the shell listview window */
3267 user_handle_t old_progman_window; /* handle to the new program manager window */
3268 user_handle_t old_taskman_window; /* handle to the new task manager window */
3269 @END
3270 #define SET_GLOBAL_SHELL_WINDOWS 0x01 /* set both main shell and listview windows */
3271 #define SET_GLOBAL_PROGMAN_WINDOW 0x02
3272 #define SET_GLOBAL_TASKMAN_WINDOW 0x04
3274 /* Adjust the privileges held by a token */
3275 @REQ(adjust_token_privileges)
3276 obj_handle_t handle; /* handle to the token */
3277 int disable_all; /* disable all privileges? */
3278 int get_modified_state; /* get modified privileges? */
3279 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges to enable/disable/remove */
3280 @REPLY
3281 unsigned int len; /* total length in bytes required to store token privileges */
3282 VARARG(privileges,LUID_AND_ATTRIBUTES); /* modified privileges */
3283 @END
3285 /* Retrieves the set of privileges held by or available to a token */
3286 @REQ(get_token_privileges)
3287 obj_handle_t handle; /* handle to the token */
3288 @REPLY
3289 unsigned int len; /* total length in bytes required to store token privileges */
3290 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges held by or available to a token */
3291 @END
3293 /* Check the token has the required privileges */
3294 @REQ(check_token_privileges)
3295 obj_handle_t handle; /* handle to the token */
3296 int all_required; /* are all the privileges required for the check to succeed? */
3297 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges to check */
3298 @REPLY
3299 int has_privileges; /* does the token have the required privileges? */
3300 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges held by or available to a token */
3301 @END
3303 @REQ(duplicate_token)
3304 obj_handle_t handle; /* handle to the token to duplicate */
3305 unsigned int access; /* access rights to the new token */
3306 unsigned int attributes; /* object attributes */
3307 int primary; /* is the new token to be a primary one? */
3308 int impersonation_level; /* impersonation level of the new token */
3309 @REPLY
3310 obj_handle_t new_handle; /* duplicated handle */
3311 @END
3313 @REQ(access_check)
3314 obj_handle_t handle; /* handle to the token */
3315 unsigned int desired_access; /* desired access to the object */
3316 unsigned int mapping_read; /* mapping from generic read to specific rights */
3317 unsigned int mapping_write; /* mapping from generic write to specific rights */
3318 unsigned int mapping_execute; /* mapping from generic execute to specific rights */
3319 unsigned int mapping_all; /* mapping from generic all to specific rights */
3320 VARARG(sd,security_descriptor); /* security descriptor to check */
3321 @REPLY
3322 unsigned int access_granted; /* access rights actually granted */
3323 unsigned int access_status; /* was access granted? */
3324 unsigned int privileges_len; /* length needed to store privileges */
3325 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges used during access check */
3326 @END
3328 @REQ(get_token_sid)
3329 obj_handle_t handle; /* handle to the token */
3330 unsigned int which_sid; /* which SID to retrieve from the token */
3331 @REPLY
3332 data_size_t sid_len; /* length needed to store sid */
3333 VARARG(sid,SID); /* the sid specified by which_sid from the token */
3334 @END
3336 @REQ(get_token_groups)
3337 obj_handle_t handle; /* handle to the token */
3338 @REPLY
3339 data_size_t user_len; /* length needed to store user */
3340 VARARG(user,token_groups); /* groups the token's user belongs to */
3341 @END
3343 @REQ(get_token_default_dacl)
3344 obj_handle_t handle; /* handle to the token */
3345 @REPLY
3346 data_size_t acl_len; /* length needed to store access control list */
3347 VARARG(acl,ACL); /* access control list */
3348 @END
3350 @REQ(set_token_default_dacl)
3351 obj_handle_t handle; /* handle to the token */
3352 VARARG(acl,ACL); /* default dacl to set */
3353 @END
3355 @REQ(set_security_object)
3356 obj_handle_t handle; /* handle to the object */
3357 unsigned int security_info; /* which parts of security descriptor to set */
3358 VARARG(sd,security_descriptor); /* security descriptor to set */
3359 @END
3361 @REQ(get_security_object)
3362 obj_handle_t handle; /* handle to the object */
3363 unsigned int security_info; /* which parts of security descriptor to get */
3364 @REPLY
3365 unsigned int sd_len; /* buffer size needed for sd */
3366 VARARG(sd,security_descriptor); /* retrieved security descriptor */
3367 @END
3370 struct handle_info
3372 process_id_t owner;
3373 obj_handle_t handle;
3374 unsigned int access;
3377 /* Return a list of all opened handles */
3378 @REQ(get_system_handles)
3379 @REPLY
3380 unsigned int count; /* number of handles */
3381 VARARG(data,handle_infos); /* array of handle_infos */
3382 @END
3385 /* Create a mailslot */
3386 @REQ(create_mailslot)
3387 unsigned int access; /* wanted access rights */
3388 timeout_t read_timeout;
3389 unsigned int max_msgsize;
3390 VARARG(objattr,object_attributes); /* object attributes */
3391 @REPLY
3392 obj_handle_t handle; /* handle to the mailslot */
3393 @END
3396 /* Set mailslot information */
3397 @REQ(set_mailslot_info)
3398 obj_handle_t handle; /* handle to the mailslot */
3399 timeout_t read_timeout;
3400 unsigned int flags;
3401 @REPLY
3402 timeout_t read_timeout;
3403 unsigned int max_msgsize;
3404 @END
3405 #define MAILSLOT_SET_READ_TIMEOUT 1
3408 /* Create a directory object */
3409 @REQ(create_directory)
3410 unsigned int access; /* access flags */
3411 VARARG(objattr,object_attributes); /* object attributes */
3412 @REPLY
3413 obj_handle_t handle; /* handle to the directory */
3414 @END
3417 /* Open a directory object */
3418 @REQ(open_directory)
3419 unsigned int access; /* access flags */
3420 unsigned int attributes; /* object attributes */
3421 obj_handle_t rootdir; /* root directory */
3422 VARARG(directory_name,unicode_str); /* Directory name */
3423 @REPLY
3424 obj_handle_t handle; /* handle to the directory */
3425 @END
3428 /* Get a directory entry by index */
3429 @REQ(get_directory_entry)
3430 obj_handle_t handle; /* handle to the directory */
3431 unsigned int index; /* entry index */
3432 @REPLY
3433 data_size_t name_len; /* length of the entry name in bytes */
3434 VARARG(name,unicode_str,name_len); /* entry name */
3435 VARARG(type,unicode_str); /* entry type */
3436 @END
3439 /* Create a symbolic link object */
3440 @REQ(create_symlink)
3441 unsigned int access; /* access flags */
3442 VARARG(objattr,object_attributes); /* object attributes */
3443 VARARG(target_name,unicode_str); /* target name */
3444 @REPLY
3445 obj_handle_t handle; /* handle to the symlink */
3446 @END
3449 /* Open a symbolic link object */
3450 @REQ(open_symlink)
3451 unsigned int access; /* access flags */
3452 unsigned int attributes; /* object attributes */
3453 obj_handle_t rootdir; /* root directory */
3454 VARARG(name,unicode_str); /* symlink name */
3455 @REPLY
3456 obj_handle_t handle; /* handle to the symlink */
3457 @END
3460 /* Query a symbolic link object */
3461 @REQ(query_symlink)
3462 obj_handle_t handle; /* handle to the symlink */
3463 @REPLY
3464 data_size_t total; /* total needed size for name */
3465 VARARG(target_name,unicode_str); /* target name */
3466 @END
3469 /* Query basic object information */
3470 @REQ(get_object_info)
3471 obj_handle_t handle; /* handle to the object */
3472 @REPLY
3473 unsigned int access; /* granted access mask */
3474 unsigned int ref_count; /* object ref count */
3475 unsigned int handle_count; /* object handle count */
3476 data_size_t total; /* total needed size for name */
3477 VARARG(name,unicode_str); /* object name */
3478 @END
3481 /* Query object type name information */
3482 @REQ(get_object_type)
3483 obj_handle_t handle; /* handle to the object */
3484 @REPLY
3485 data_size_t total; /* needed size for type name */
3486 VARARG(type,unicode_str); /* type name */
3487 @END
3490 /* Unlink a named object */
3491 @REQ(unlink_object)
3492 obj_handle_t handle; /* handle to the object */
3493 @END
3496 /* Query the impersonation level of an impersonation token */
3497 @REQ(get_token_impersonation_level)
3498 obj_handle_t handle; /* handle to the object */
3499 @REPLY
3500 int impersonation_level; /* impersonation level of the impersonation token */
3501 @END
3503 /* Allocate a locally-unique identifier */
3504 @REQ(allocate_locally_unique_id)
3505 @REPLY
3506 luid_t luid;
3507 @END
3510 /* Create a device manager */
3511 @REQ(create_device_manager)
3512 unsigned int access; /* wanted access rights */
3513 unsigned int attributes; /* object attributes */
3514 @REPLY
3515 obj_handle_t handle; /* handle to the device */
3516 @END
3519 /* Create a device */
3520 @REQ(create_device)
3521 unsigned int access; /* wanted access rights */
3522 unsigned int attributes; /* object attributes */
3523 obj_handle_t rootdir; /* root directory */
3524 client_ptr_t user_ptr; /* opaque ptr for use by client */
3525 obj_handle_t manager; /* device manager */
3526 VARARG(name,unicode_str); /* object name */
3527 @REPLY
3528 obj_handle_t handle; /* handle to the device */
3529 @END
3532 /* Delete a device */
3533 @REQ(delete_device)
3534 obj_handle_t handle; /* handle to the device */
3535 @END
3538 /* Retrieve the next pending device irp request */
3539 @REQ(get_next_device_request)
3540 obj_handle_t manager; /* handle to the device manager */
3541 obj_handle_t prev; /* handle to the previous irp */
3542 unsigned int status; /* status of the previous irp */
3543 @REPLY
3544 irp_params_t params; /* irp parameters */
3545 obj_handle_t next; /* handle to the next irp */
3546 process_id_t client_pid; /* pid of process calling irp */
3547 thread_id_t client_tid; /* tid of thread calling irp */
3548 data_size_t in_size; /* total needed input size */
3549 data_size_t out_size; /* needed output size */
3550 VARARG(next_data,bytes); /* input data of the next irp */
3551 @END
3554 /* Make the current process a system process */
3555 @REQ(make_process_system)
3556 @REPLY
3557 obj_handle_t event; /* event signaled when all user processes have exited */
3558 @END
3561 /* Get detailed fixed-size information about a token */
3562 @REQ(get_token_statistics)
3563 obj_handle_t handle; /* handle to the object */
3564 @REPLY
3565 luid_t token_id; /* locally-unique identifier of the token */
3566 luid_t modified_id; /* locally-unique identifier of the modified version of the token */
3567 int primary; /* is the token primary or impersonation? */
3568 int impersonation_level; /* level of impersonation */
3569 int group_count; /* the number of groups the token is a member of */
3570 int privilege_count; /* the number of privileges the token has */
3571 @END
3574 /* Create I/O completion port */
3575 @REQ(create_completion)
3576 unsigned int access; /* desired access to a port */
3577 unsigned int concurrent; /* max number of concurrent active threads */
3578 VARARG(objattr,object_attributes); /* object attributes */
3579 @REPLY
3580 obj_handle_t handle; /* port handle */
3581 @END
3584 /* Open I/O completion port */
3585 @REQ(open_completion)
3586 unsigned int access; /* desired access to a port */
3587 unsigned int attributes; /* object attributes */
3588 obj_handle_t rootdir; /* root directory */
3589 VARARG(filename,unicode_str); /* port name */
3590 @REPLY
3591 obj_handle_t handle; /* port handle */
3592 @END
3595 /* add completion to completion port */
3596 @REQ(add_completion)
3597 obj_handle_t handle; /* port handle */
3598 apc_param_t ckey; /* completion key */
3599 apc_param_t cvalue; /* completion value */
3600 apc_param_t information; /* IO_STATUS_BLOCK Information */
3601 unsigned int status; /* completion result */
3602 @END
3605 /* get completion from completion port queue */
3606 @REQ(remove_completion)
3607 obj_handle_t handle; /* port handle */
3608 @REPLY
3609 apc_param_t ckey; /* completion key */
3610 apc_param_t cvalue; /* completion value */
3611 apc_param_t information; /* IO_STATUS_BLOCK Information */
3612 unsigned int status; /* completion result */
3613 @END
3616 /* get completion queue depth */
3617 @REQ(query_completion)
3618 obj_handle_t handle; /* port handle */
3619 @REPLY
3620 unsigned int depth; /* completion queue depth */
3621 @END
3624 /* associate object with completion port */
3625 @REQ(set_completion_info)
3626 obj_handle_t handle; /* object handle */
3627 apc_param_t ckey; /* completion key */
3628 obj_handle_t chandle; /* port handle */
3629 @END
3632 /* check for associated completion and push msg */
3633 @REQ(add_fd_completion)
3634 obj_handle_t handle; /* async' object */
3635 apc_param_t cvalue; /* completion value */
3636 apc_param_t information; /* IO_STATUS_BLOCK Information */
3637 unsigned int status; /* completion status */
3638 @END
3641 /* set fd disposition information */
3642 @REQ(set_fd_disp_info)
3643 obj_handle_t handle; /* handle to a file or directory */
3644 int unlink; /* whether to unlink file on close */
3645 @END
3648 /* set fd name information */
3649 @REQ(set_fd_name_info)
3650 obj_handle_t handle; /* handle to a file or directory */
3651 obj_handle_t rootdir; /* root directory */
3652 int link; /* link instead of renaming */
3653 VARARG(filename,string); /* new file name */
3654 @END
3657 /* Retrieve layered info for a window */
3658 @REQ(get_window_layered_info)
3659 user_handle_t handle; /* handle to the window */
3660 @REPLY
3661 unsigned int color_key; /* color key */
3662 unsigned int alpha; /* alpha (0..255) */
3663 unsigned int flags; /* LWA_* flags */
3664 @END
3667 /* Set layered info for a window */
3668 @REQ(set_window_layered_info)
3669 user_handle_t handle; /* handle to the window */
3670 unsigned int color_key; /* color key */
3671 unsigned int alpha; /* alpha (0..255) */
3672 unsigned int flags; /* LWA_* flags */
3673 @END
3676 /* Allocate an arbitrary user handle */
3677 @REQ(alloc_user_handle)
3678 @REPLY
3679 user_handle_t handle; /* allocated handle */
3680 @END
3683 /* Free an arbitrary user handle */
3684 @REQ(free_user_handle)
3685 user_handle_t handle; /* handle to free*/
3686 @END
3689 /* Set/get the current cursor */
3690 @REQ(set_cursor)
3691 unsigned int flags; /* flags for fields to set (see below) */
3692 user_handle_t handle; /* handle to the cursor */
3693 int show_count; /* show count increment/decrement */
3694 int x; /* cursor position */
3695 int y;
3696 rectangle_t clip; /* cursor clip rectangle */
3697 unsigned int clip_msg; /* message to post on cursor clip changes */
3698 @REPLY
3699 user_handle_t prev_handle; /* previous handle */
3700 int prev_count; /* previous show count */
3701 int prev_x; /* previous position */
3702 int prev_y;
3703 int new_x; /* new position */
3704 int new_y;
3705 rectangle_t new_clip; /* new clip rectangle */
3706 unsigned int last_change; /* time of last position change */
3707 @END
3708 #define SET_CURSOR_HANDLE 0x01
3709 #define SET_CURSOR_COUNT 0x02
3710 #define SET_CURSOR_POS 0x04
3711 #define SET_CURSOR_CLIP 0x08
3712 #define SET_CURSOR_NOCLIP 0x10
3715 /* Modify the list of registered rawinput devices */
3716 @REQ(update_rawinput_devices)
3717 VARARG(devices,rawinput_devices);
3718 @END
3721 /* Retrieve the suspended context of a thread */
3722 @REQ(get_suspend_context)
3723 @REPLY
3724 VARARG(context,context); /* thread context */
3725 @END
3728 /* Store the suspend context of a thread */
3729 @REQ(set_suspend_context)
3730 VARARG(context,context); /* thread context */
3731 @END
3734 /* Create a new job object */
3735 @REQ(create_job)
3736 unsigned int access; /* wanted access rights */
3737 VARARG(objattr,object_attributes); /* object attributes */
3738 @REPLY
3739 obj_handle_t handle; /* handle to the job */
3740 @END
3743 /* Open a job object */
3744 @REQ(open_job)
3745 unsigned int access; /* wanted access rights */
3746 unsigned int attributes; /* object attributes */
3747 obj_handle_t rootdir; /* root directory */
3748 VARARG(name,unicode_str); /* object name */
3749 @REPLY
3750 obj_handle_t handle; /* handle to the job */
3751 @END
3754 /* Assign a job object to a process */
3755 @REQ(assign_job)
3756 obj_handle_t job; /* handle to the job */
3757 obj_handle_t process; /* handle to the process */
3758 @END
3761 /* Check if a process is associated with a job */
3762 @REQ(process_in_job)
3763 obj_handle_t job; /* handle to the job */
3764 obj_handle_t process; /* handle to the process */
3765 @END
3768 /* Set limit flags on a job */
3769 @REQ(set_job_limits)
3770 obj_handle_t handle; /* handle to the job */
3771 unsigned int limit_flags; /* new limit flags */
3772 @END
3775 /* Set new completion port for a job */
3776 @REQ(set_job_completion_port)
3777 obj_handle_t job; /* handle to the job */
3778 obj_handle_t port; /* handle to the completion port */
3779 client_ptr_t key; /* key to send with completion messages */
3780 @END
3783 /* Terminate all processes associated with the job */
3784 @REQ(terminate_job)
3785 obj_handle_t handle; /* handle to the job */
3786 int status; /* process exit code */
3787 @END