winex11: Escape non-UTF-8 characters in string literals.
[wine.git] / server / protocol.def
bloba21d69406e26a1f18fb211f8f381e7a137a6c217
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 struct { unsigned __int64 d[32]; unsigned int fpscr; } arm_regs;
175 struct { unsigned __int64 d[64]; unsigned int fpcr, fpsr; } arm64_regs;
176 } fp; /* selected by SERVER_CTX_FLOATING_POINT */
177 union
179 struct { unsigned int dr0, dr1, dr2, dr3, dr6, dr7; } i386_regs;
180 struct { unsigned __int64 dr0, dr1, dr2, dr3, dr6, dr7; } x86_64_regs;
181 struct { unsigned int dr[8]; } powerpc_regs;
182 struct { unsigned int bvr[8], bcr[8], wvr[1], wcr[1]; } arm_regs;
183 struct { unsigned __int64 bvr[8], wvr[2]; unsigned int bcr[8], wcr[2]; } arm64_regs;
184 } debug; /* selected by SERVER_CTX_DEBUG_REGISTERS */
185 union
187 unsigned char i386_regs[512];
188 } ext; /* selected by SERVER_CTX_EXTENDED_REGISTERS */
189 } context_t;
191 #define SERVER_CTX_CONTROL 0x01
192 #define SERVER_CTX_INTEGER 0x02
193 #define SERVER_CTX_SEGMENTS 0x04
194 #define SERVER_CTX_FLOATING_POINT 0x08
195 #define SERVER_CTX_DEBUG_REGISTERS 0x10
196 #define SERVER_CTX_EXTENDED_REGISTERS 0x20
198 /* structure used in sending an fd from client to server */
199 struct send_fd
201 thread_id_t tid; /* thread id */
202 int fd; /* file descriptor on client-side */
205 /* structure sent by the server on the wait fifo */
206 struct wake_up_reply
208 client_ptr_t cookie; /* magic cookie that was passed in select_request */
209 int signaled; /* wait result */
210 int __pad;
213 /* NT-style timeout, in 100ns units, negative means relative timeout */
214 typedef __int64 timeout_t;
215 #define TIMEOUT_INFINITE (((timeout_t)0x7fffffff) << 32 | 0xffffffff)
217 /* structure for process startup info */
218 typedef struct
220 unsigned int debug_flags;
221 unsigned int console_flags;
222 obj_handle_t console;
223 obj_handle_t hstdin;
224 obj_handle_t hstdout;
225 obj_handle_t hstderr;
226 unsigned int x;
227 unsigned int y;
228 unsigned int xsize;
229 unsigned int ysize;
230 unsigned int xchars;
231 unsigned int ychars;
232 unsigned int attribute;
233 unsigned int flags;
234 unsigned int show;
235 data_size_t curdir_len;
236 data_size_t dllpath_len;
237 data_size_t imagepath_len;
238 data_size_t cmdline_len;
239 data_size_t title_len;
240 data_size_t desktop_len;
241 data_size_t shellinfo_len;
242 data_size_t runtime_len;
243 /* VARARG(curdir,unicode_str,curdir_len); */
244 /* VARARG(dllpath,unicode_str,dllpath_len); */
245 /* VARARG(imagepath,unicode_str,imagepath_len); */
246 /* VARARG(cmdline,unicode_str,cmdline_len); */
247 /* VARARG(title,unicode_str,title_len); */
248 /* VARARG(desktop,unicode_str,desktop_len); */
249 /* VARARG(shellinfo,unicode_str,shellinfo_len); */
250 /* VARARG(runtime,unicode_str,runtime_len); */
251 } startup_info_t;
253 /* structure returned in the list of window properties */
254 typedef struct
256 atom_t atom; /* property atom */
257 int string; /* was atom a string originally? */
258 lparam_t data; /* data stored in property */
259 } property_data_t;
261 /* structure to specify window rectangles */
262 typedef struct
264 int left;
265 int top;
266 int right;
267 int bottom;
268 } rectangle_t;
270 /* structure for parameters of async I/O calls */
271 typedef struct
273 obj_handle_t handle; /* object to perform I/O on */
274 obj_handle_t event; /* event to signal when done */
275 client_ptr_t iosb; /* I/O status block in client addr space */
276 client_ptr_t user; /* opaque user data containing callback pointer and async-specific data */
277 client_ptr_t apc; /* user APC to call */
278 apc_param_t apc_context; /* user APC context or completion value */
279 } async_data_t;
281 /* structures for extra message data */
283 struct hardware_msg_data
285 lparam_t info; /* extra info */
286 unsigned int hw_id; /* unique id */
287 unsigned int flags; /* hook flags */
288 union
290 int type;
291 struct
293 int type; /* RIM_TYPEKEYBOARD */
294 unsigned int message; /* message generated by this rawinput event */
295 unsigned short vkey; /* virtual key code */
296 unsigned short scan; /* scan code */
297 } kbd;
298 struct
300 int type; /* RIM_TYPEMOUSE */
301 int x; /* x coordinate */
302 int y; /* y coordinate */
303 unsigned int data; /* mouse data */
304 } mouse;
305 } rawinput;
308 struct callback_msg_data
310 client_ptr_t callback; /* callback function */
311 lparam_t data; /* user data for callback */
312 lparam_t result; /* message result */
315 struct winevent_msg_data
317 user_handle_t hook; /* hook handle */
318 thread_id_t tid; /* thread id */
319 client_ptr_t hook_proc; /* hook proc address */
320 /* followed by module name if any */
323 typedef union
325 int type;
326 struct
328 int type; /* INPUT_KEYBOARD */
329 unsigned short vkey; /* virtual key code */
330 unsigned short scan; /* scan code */
331 unsigned int flags; /* event flags */
332 unsigned int time; /* event time */
333 lparam_t info; /* extra info */
334 } kbd;
335 struct
337 int type; /* INPUT_MOUSE */
338 int x; /* coordinates */
339 int y;
340 unsigned int data; /* mouse data */
341 unsigned int flags; /* event flags */
342 unsigned int time; /* event time */
343 lparam_t info; /* extra info */
344 } mouse;
345 struct
347 int type; /* INPUT_HARDWARE */
348 unsigned int msg; /* message code */
349 lparam_t lparam; /* message param */
350 } hw;
351 } hw_input_t;
353 typedef union
355 unsigned char bytes[1]; /* raw data for sent messages */
356 struct hardware_msg_data hardware;
357 struct callback_msg_data callback;
358 struct winevent_msg_data winevent;
359 } message_data_t;
361 /* structure for console char/attribute info */
362 typedef struct
364 WCHAR ch;
365 unsigned short attr;
366 } char_info_t;
368 /* structure returned in filesystem events */
369 struct filesystem_event
371 int action;
372 data_size_t len;
373 char name[1];
376 typedef struct
378 unsigned int low_part;
379 int high_part;
380 } luid_t;
382 #define MAX_ACL_LEN 65535
384 struct security_descriptor
386 unsigned int control; /* SE_ flags */
387 data_size_t owner_len;
388 data_size_t group_len;
389 data_size_t sacl_len;
390 data_size_t dacl_len;
391 /* VARARG(owner,SID); */
392 /* VARARG(group,SID); */
393 /* VARARG(sacl,ACL); */
394 /* VARARG(dacl,ACL); */
397 struct object_attributes
399 obj_handle_t rootdir; /* root directory */
400 unsigned int attributes; /* object attributes */
401 data_size_t sd_len; /* length of security_descriptor data. may be 0 */
402 data_size_t name_len; /* length of the name string. may be 0 */
403 /* VARARG(sd,security_descriptor); */
404 /* VARARG(name,unicode_str); */
407 struct token_groups
409 unsigned int count;
410 /* unsigned int attributes[count]; */
411 /* VARARG(sids,SID); */
414 enum select_op
416 SELECT_NONE,
417 SELECT_WAIT,
418 SELECT_WAIT_ALL,
419 SELECT_SIGNAL_AND_WAIT,
420 SELECT_KEYED_EVENT_WAIT,
421 SELECT_KEYED_EVENT_RELEASE
424 typedef union
426 enum select_op op;
427 struct
429 enum select_op op; /* SELECT_WAIT or SELECT_WAIT_ALL */
430 obj_handle_t handles[MAXIMUM_WAIT_OBJECTS];
431 } wait;
432 struct
434 enum select_op op; /* SELECT_SIGNAL_AND_WAIT */
435 obj_handle_t wait;
436 obj_handle_t signal; /* must be last in the structure so we can remove it on retries */
437 } signal_and_wait;
438 struct
440 enum select_op op; /* SELECT_KEYED_EVENT_WAIT or SELECT_KEYED_EVENT_RELEASE */
441 obj_handle_t handle;
442 client_ptr_t key;
443 } keyed_event;
444 } select_op_t;
446 enum apc_type
448 APC_NONE,
449 APC_USER,
450 APC_TIMER,
451 APC_ASYNC_IO,
452 APC_VIRTUAL_ALLOC,
453 APC_VIRTUAL_FREE,
454 APC_VIRTUAL_QUERY,
455 APC_VIRTUAL_PROTECT,
456 APC_VIRTUAL_FLUSH,
457 APC_VIRTUAL_LOCK,
458 APC_VIRTUAL_UNLOCK,
459 APC_MAP_VIEW,
460 APC_UNMAP_VIEW,
461 APC_CREATE_THREAD
464 typedef union
466 enum apc_type type;
467 struct
469 enum apc_type type; /* APC_USER */
470 int __pad;
471 client_ptr_t func; /* void (__stdcall *func)(ULONG_PTR,ULONG_PTR,ULONG_PTR); */
472 apc_param_t args[3]; /* arguments for user function */
473 } user;
474 struct
476 enum apc_type type; /* APC_TIMER */
477 int __pad;
478 client_ptr_t func; /* void (__stdcall *func)(void*, unsigned int, unsigned int); */
479 timeout_t time; /* absolute time of expiration */
480 client_ptr_t arg; /* user argument */
481 } timer;
482 struct
484 enum apc_type type; /* APC_ASYNC_IO */
485 unsigned int status; /* I/O status */
486 client_ptr_t user; /* user pointer */
487 client_ptr_t sb; /* status block */
488 } async_io;
489 struct
491 enum apc_type type; /* APC_VIRTUAL_ALLOC */
492 unsigned int op_type; /* type of operation */
493 client_ptr_t addr; /* requested address */
494 mem_size_t size; /* allocation size */
495 unsigned int zero_bits; /* allocation alignment */
496 unsigned int prot; /* memory protection flags */
497 } virtual_alloc;
498 struct
500 enum apc_type type; /* APC_VIRTUAL_FREE */
501 unsigned int op_type; /* type of operation */
502 client_ptr_t addr; /* requested address */
503 mem_size_t size; /* allocation size */
504 } virtual_free;
505 struct
507 enum apc_type type; /* APC_VIRTUAL_QUERY */
508 int __pad;
509 client_ptr_t addr; /* requested address */
510 } virtual_query;
511 struct
513 enum apc_type type; /* APC_VIRTUAL_PROTECT */
514 unsigned int prot; /* new protection flags */
515 client_ptr_t addr; /* requested address */
516 mem_size_t size; /* requested size */
517 } virtual_protect;
518 struct
520 enum apc_type type; /* APC_VIRTUAL_FLUSH */
521 int __pad;
522 client_ptr_t addr; /* requested address */
523 mem_size_t size; /* requested size */
524 } virtual_flush;
525 struct
527 enum apc_type type; /* APC_VIRTUAL_LOCK */
528 int __pad;
529 client_ptr_t addr; /* requested address */
530 mem_size_t size; /* requested size */
531 } virtual_lock;
532 struct
534 enum apc_type type; /* APC_VIRTUAL_UNLOCK */
535 int __pad;
536 client_ptr_t addr; /* requested address */
537 mem_size_t size; /* requested size */
538 } virtual_unlock;
539 struct
541 enum apc_type type; /* APC_MAP_VIEW */
542 obj_handle_t handle; /* mapping handle */
543 client_ptr_t addr; /* requested address */
544 mem_size_t size; /* allocation size */
545 file_pos_t offset; /* file offset */
546 unsigned int alloc_type;/* allocation type */
547 unsigned short zero_bits; /* allocation alignment */
548 unsigned short prot; /* memory protection flags */
549 } map_view;
550 struct
552 enum apc_type type; /* APC_UNMAP_VIEW */
553 int __pad;
554 client_ptr_t addr; /* view address */
555 } unmap_view;
556 struct
558 enum apc_type type; /* APC_CREATE_THREAD */
559 int suspend; /* suspended thread? */
560 client_ptr_t func; /* void (__stdcall *func)(void*); start function */
561 client_ptr_t arg; /* argument for start function */
562 mem_size_t reserve; /* reserve size for thread stack */
563 mem_size_t commit; /* commit size for thread stack */
564 } create_thread;
565 } apc_call_t;
567 typedef union
569 enum apc_type type;
570 struct
572 enum apc_type type; /* APC_ASYNC_IO */
573 unsigned int status; /* new status of async operation */
574 unsigned int total; /* bytes transferred */
575 } async_io;
576 struct
578 enum apc_type type; /* APC_VIRTUAL_ALLOC */
579 unsigned int status; /* status returned by call */
580 client_ptr_t addr; /* resulting address */
581 mem_size_t size; /* resulting size */
582 } virtual_alloc;
583 struct
585 enum apc_type type; /* APC_VIRTUAL_FREE */
586 unsigned int status; /* status returned by call */
587 client_ptr_t addr; /* resulting address */
588 mem_size_t size; /* resulting size */
589 } virtual_free;
590 struct
592 enum apc_type type; /* APC_VIRTUAL_QUERY */
593 unsigned int status; /* status returned by call */
594 client_ptr_t base; /* resulting base address */
595 client_ptr_t alloc_base;/* resulting allocation base */
596 mem_size_t size; /* resulting region size */
597 unsigned short state; /* resulting region state */
598 unsigned short prot; /* resulting region protection */
599 unsigned short alloc_prot;/* resulting allocation protection */
600 unsigned short alloc_type;/* resulting region allocation type */
601 } virtual_query;
602 struct
604 enum apc_type type; /* APC_VIRTUAL_PROTECT */
605 unsigned int status; /* status returned by call */
606 client_ptr_t addr; /* resulting address */
607 mem_size_t size; /* resulting size */
608 unsigned int prot; /* old protection flags */
609 } virtual_protect;
610 struct
612 enum apc_type type; /* APC_VIRTUAL_FLUSH */
613 unsigned int status; /* status returned by call */
614 client_ptr_t addr; /* resulting address */
615 mem_size_t size; /* resulting size */
616 } virtual_flush;
617 struct
619 enum apc_type type; /* APC_VIRTUAL_LOCK */
620 unsigned int status; /* status returned by call */
621 client_ptr_t addr; /* resulting address */
622 mem_size_t size; /* resulting size */
623 } virtual_lock;
624 struct
626 enum apc_type type; /* APC_VIRTUAL_UNLOCK */
627 unsigned int status; /* status returned by call */
628 client_ptr_t addr; /* resulting address */
629 mem_size_t size; /* resulting size */
630 } virtual_unlock;
631 struct
633 enum apc_type type; /* APC_MAP_VIEW */
634 unsigned int status; /* status returned by call */
635 client_ptr_t addr; /* resulting address */
636 mem_size_t size; /* resulting size */
637 } map_view;
638 struct
640 enum apc_type type; /* APC_MAP_VIEW */
641 unsigned int status; /* status returned by call */
642 } unmap_view;
643 struct
645 enum apc_type type; /* APC_CREATE_THREAD */
646 unsigned int status; /* status returned by call */
647 thread_id_t tid; /* thread id */
648 obj_handle_t handle; /* handle to new thread */
649 } create_thread;
650 } apc_result_t;
652 typedef union
654 unsigned int major; /* irp major function */
655 struct
657 unsigned int major; /* IRP_MJ_CREATE */
658 unsigned int access; /* access rights */
659 unsigned int sharing; /* sharing flags */
660 unsigned int options; /* file options */
661 client_ptr_t device; /* opaque ptr for the device */
662 } create;
663 struct
665 unsigned int major; /* IRP_MJ_CLOSE */
666 int __pad;
667 client_ptr_t file; /* opaque ptr for the file object */
668 } close;
669 struct
671 unsigned int major; /* IRP_MJ_READ */
672 unsigned int key; /* driver key */
673 client_ptr_t file; /* opaque ptr for the file object */
674 file_pos_t pos; /* file position */
675 } read;
676 struct
678 unsigned int major; /* IRP_MJ_WRITE */
679 unsigned int key; /* driver key */
680 client_ptr_t file; /* opaque ptr for the file object */
681 file_pos_t pos; /* file position */
682 } write;
683 struct
685 unsigned int major; /* IRP_MJ_FLUSH_BUFFERS */
686 int __pad;
687 client_ptr_t file; /* opaque ptr for the file object */
688 } flush;
689 struct
691 unsigned int major; /* IRP_MJ_DEVICE_CONTROL */
692 ioctl_code_t code; /* ioctl code */
693 client_ptr_t file; /* opaque ptr for the file object */
694 } ioctl;
695 } irp_params_t;
697 /* information about a PE image mapping, roughly equivalent to SECTION_IMAGE_INFORMATION */
698 typedef struct
700 client_ptr_t base;
701 client_ptr_t entry_point;
702 mem_size_t map_size;
703 mem_size_t stack_size;
704 mem_size_t stack_commit;
705 unsigned int zerobits;
706 unsigned int subsystem;
707 unsigned short subsystem_low;
708 unsigned short subsystem_high;
709 unsigned int gp;
710 unsigned short image_charact;
711 unsigned short dll_charact;
712 unsigned short machine;
713 unsigned char contains_code;
714 unsigned char image_flags;
715 unsigned int loader_flags;
716 unsigned int header_size;
717 unsigned int file_size;
718 unsigned int checksum;
719 } pe_image_info_t;
721 struct rawinput_device
723 unsigned short usage_page;
724 unsigned short usage;
725 unsigned int flags;
726 user_handle_t target;
729 /****************************************************************/
730 /* Request declarations */
732 /* Create a new process from the context of the parent */
733 @REQ(new_process)
734 int inherit_all; /* inherit all handles from parent */
735 unsigned int create_flags; /* creation flags */
736 int socket_fd; /* file descriptor for process socket */
737 obj_handle_t exe_file; /* file handle for main exe */
738 unsigned int process_access; /* access rights for process object */
739 unsigned int process_attr; /* attributes for process object */
740 unsigned int thread_access; /* access rights for thread object */
741 unsigned int thread_attr; /* attributes for thread object */
742 cpu_type_t cpu; /* CPU that the new process will use */
743 data_size_t info_size; /* size of startup info */
744 VARARG(info,startup_info,info_size); /* startup information */
745 VARARG(env,unicode_str); /* environment for new process */
746 @REPLY
747 obj_handle_t info; /* new process info handle */
748 process_id_t pid; /* process id */
749 obj_handle_t phandle; /* process handle (in the current process) */
750 thread_id_t tid; /* thread id */
751 obj_handle_t thandle; /* thread handle (in the current process) */
752 @END
755 /* Retrieve information about a newly started process */
756 @REQ(get_new_process_info)
757 obj_handle_t info; /* info handle returned from new_process_request */
758 @REPLY
759 int success; /* did the process start successfully? */
760 int exit_code; /* process exit code if failed */
761 @END
764 /* Create a new thread from the context of the parent */
765 @REQ(new_thread)
766 unsigned int access; /* wanted access rights */
767 unsigned int attributes; /* object attributes */
768 int suspend; /* new thread should be suspended on creation */
769 int request_fd; /* fd for request pipe */
770 @REPLY
771 thread_id_t tid; /* thread id */
772 obj_handle_t handle; /* thread handle (in the current process) */
773 @END
776 /* Retrieve the new process startup info */
777 @REQ(get_startup_info)
778 @REPLY
779 obj_handle_t exe_file; /* file handle for main exe */
780 data_size_t info_size; /* size of startup info */
781 VARARG(info,startup_info,info_size); /* startup information */
782 VARARG(env,unicode_str); /* environment */
783 @END
786 /* Signal the end of the process initialization */
787 @REQ(init_process_done)
788 int gui; /* is it a GUI process? */
789 mod_handle_t module; /* main module base address */
790 client_ptr_t ldt_copy; /* address of LDT copy (in thread address space) */
791 client_ptr_t entry; /* process entry point */
792 @REPLY
793 int suspend; /* is process suspended? */
794 @END
797 /* Initialize a thread; called from the child after fork()/clone() */
798 @REQ(init_thread)
799 int unix_pid; /* Unix pid of new thread */
800 int unix_tid; /* Unix tid of new thread */
801 int debug_level; /* new debug level */
802 client_ptr_t teb; /* TEB of new thread (in thread address space) */
803 client_ptr_t entry; /* entry point or PEB if initial thread (in thread address space) */
804 int reply_fd; /* fd for reply pipe */
805 int wait_fd; /* fd for blocking calls pipe */
806 cpu_type_t cpu; /* CPU that this thread is running on */
807 @REPLY
808 process_id_t pid; /* process id of the new thread's process */
809 thread_id_t tid; /* thread id of the new thread */
810 timeout_t server_start; /* server start time */
811 data_size_t info_size; /* total size of startup info */
812 int version; /* protocol version */
813 unsigned int all_cpus; /* bitset of supported CPUs */
814 int suspend; /* is thread suspended? */
815 @END
818 /* Terminate a process */
819 @REQ(terminate_process)
820 obj_handle_t handle; /* process handle to terminate */
821 int exit_code; /* process exit code */
822 @REPLY
823 int self; /* suicide? */
824 @END
827 /* Terminate a thread */
828 @REQ(terminate_thread)
829 obj_handle_t handle; /* thread handle to terminate */
830 int exit_code; /* thread exit code */
831 @REPLY
832 int self; /* suicide? */
833 int last; /* last thread in this process? */
834 @END
837 /* Retrieve information about a process */
838 @REQ(get_process_info)
839 obj_handle_t handle; /* process handle */
840 @REPLY
841 process_id_t pid; /* server process id */
842 process_id_t ppid; /* server process id of parent */
843 affinity_t affinity; /* process affinity mask */
844 client_ptr_t peb; /* PEB address in process address space */
845 timeout_t start_time; /* process start time */
846 timeout_t end_time; /* process end time */
847 int exit_code; /* process exit code */
848 int priority; /* priority class */
849 cpu_type_t cpu; /* CPU that this process is running on */
850 short int debugger_present; /* process is being debugged */
851 short int debug_children; /* inherit debugger to child processes */
852 @END
855 /* Retrieve information about a process memory usage */
856 @REQ(get_process_vm_counters)
857 obj_handle_t handle; /* process handle */
858 @REPLY
859 mem_size_t peak_virtual_size; /* peak virtual memory in bytes */
860 mem_size_t virtual_size; /* virtual memory in bytes */
861 mem_size_t peak_working_set_size; /* peak real memory in bytes */
862 mem_size_t working_set_size; /* real memory in bytes */
863 mem_size_t pagefile_usage; /* commit charge in bytes */
864 mem_size_t peak_pagefile_usage; /* peak commit charge in bytes */
865 @END
868 /* Set a process information */
869 @REQ(set_process_info)
870 obj_handle_t handle; /* process handle */
871 int mask; /* setting mask (see below) */
872 int priority; /* priority class */
873 affinity_t affinity; /* affinity mask */
874 @END
875 #define SET_PROCESS_INFO_PRIORITY 0x01
876 #define SET_PROCESS_INFO_AFFINITY 0x02
879 /* Retrieve information about a thread */
880 @REQ(get_thread_info)
881 obj_handle_t handle; /* thread handle */
882 thread_id_t tid_in; /* thread id (optional) */
883 @REPLY
884 process_id_t pid; /* server process id */
885 thread_id_t tid; /* server thread id */
886 client_ptr_t teb; /* thread teb pointer */
887 client_ptr_t entry_point; /* thread entry point */
888 affinity_t affinity; /* thread affinity mask */
889 int exit_code; /* thread exit code */
890 int priority; /* thread priority level */
891 int last; /* last thread in process */
892 @END
895 /* Retrieve information about thread times */
896 @REQ(get_thread_times)
897 obj_handle_t handle; /* thread handle */
898 @REPLY
899 timeout_t creation_time; /* thread creation time */
900 timeout_t exit_time; /* thread exit time */
901 @END
904 /* Set a thread information */
905 @REQ(set_thread_info)
906 obj_handle_t handle; /* thread handle */
907 int mask; /* setting mask (see below) */
908 int priority; /* priority class */
909 affinity_t affinity; /* affinity mask */
910 client_ptr_t entry_point; /* thread entry point */
911 obj_handle_t token; /* impersonation token */
912 @END
913 #define SET_THREAD_INFO_PRIORITY 0x01
914 #define SET_THREAD_INFO_AFFINITY 0x02
915 #define SET_THREAD_INFO_TOKEN 0x04
916 #define SET_THREAD_INFO_ENTRYPOINT 0x08
919 /* Retrieve information about a module */
920 @REQ(get_dll_info)
921 obj_handle_t handle; /* process handle */
922 mod_handle_t base_address; /* base address of module */
923 @REPLY
924 client_ptr_t entry_point;
925 data_size_t filename_len; /* buffer len in bytes required to store filename */
926 VARARG(filename,unicode_str); /* file name of module */
927 @END
930 /* Suspend a thread */
931 @REQ(suspend_thread)
932 obj_handle_t handle; /* thread handle */
933 @REPLY
934 int count; /* new suspend count */
935 @END
938 /* Resume a thread */
939 @REQ(resume_thread)
940 obj_handle_t handle; /* thread handle */
941 @REPLY
942 int count; /* new suspend count */
943 @END
946 /* Notify the server that a dll has been loaded */
947 @REQ(load_dll)
948 data_size_t dbg_offset; /* debug info offset */
949 mod_handle_t base; /* base address */
950 client_ptr_t name; /* ptr to ptr to name (in process addr space) */
951 data_size_t dbg_size; /* debug info size */
952 VARARG(filename,unicode_str); /* file name of dll */
953 @END
956 /* Notify the server that a dll is being unloaded */
957 @REQ(unload_dll)
958 mod_handle_t base; /* base address */
959 @END
962 /* Queue an APC for a thread or process */
963 @REQ(queue_apc)
964 obj_handle_t handle; /* thread or process handle */
965 apc_call_t call; /* call arguments */
966 @REPLY
967 obj_handle_t handle; /* APC handle */
968 int self; /* run APC in caller itself? */
969 @END
972 /* Get the result of an APC call */
973 @REQ(get_apc_result)
974 obj_handle_t handle; /* handle to the APC */
975 @REPLY
976 apc_result_t result; /* result of the APC */
977 @END
980 /* Close a handle for the current process */
981 @REQ(close_handle)
982 obj_handle_t handle; /* handle to close */
983 @END
986 /* Set a handle information */
987 @REQ(set_handle_info)
988 obj_handle_t handle; /* handle we are interested in */
989 int flags; /* new handle flags */
990 int mask; /* mask for flags to set */
991 @REPLY
992 int old_flags; /* old flag value */
993 @END
996 /* Duplicate a handle */
997 @REQ(dup_handle)
998 obj_handle_t src_process; /* src process handle */
999 obj_handle_t src_handle; /* src handle to duplicate */
1000 obj_handle_t dst_process; /* dst process handle */
1001 unsigned int access; /* wanted access rights */
1002 unsigned int attributes; /* object attributes */
1003 unsigned int options; /* duplicate options (see below) */
1004 @REPLY
1005 obj_handle_t handle; /* duplicated handle in dst process */
1006 int self; /* is the source the current process? */
1007 int closed; /* whether the source handle has been closed */
1008 @END
1009 #define DUP_HANDLE_CLOSE_SOURCE DUPLICATE_CLOSE_SOURCE
1010 #define DUP_HANDLE_SAME_ACCESS DUPLICATE_SAME_ACCESS
1011 #define DUP_HANDLE_MAKE_GLOBAL 0x80000000 /* Not a Windows flag */
1014 /* Open a handle to a process */
1015 @REQ(open_process)
1016 process_id_t pid; /* process id to open */
1017 unsigned int access; /* wanted access rights */
1018 unsigned int attributes; /* object attributes */
1019 @REPLY
1020 obj_handle_t handle; /* handle to the process */
1021 @END
1024 /* Open a handle to a thread */
1025 @REQ(open_thread)
1026 thread_id_t tid; /* thread id to open */
1027 unsigned int access; /* wanted access rights */
1028 unsigned int attributes; /* object attributes */
1029 @REPLY
1030 obj_handle_t handle; /* handle to the thread */
1031 @END
1034 /* Wait for handles */
1035 @REQ(select)
1036 int flags; /* wait flags (see below) */
1037 client_ptr_t cookie; /* magic cookie to return to client */
1038 timeout_t timeout; /* timeout */
1039 obj_handle_t prev_apc; /* handle to previous APC */
1040 VARARG(result,apc_result); /* result of previous APC */
1041 VARARG(data,select_op); /* operation-specific data */
1042 @REPLY
1043 timeout_t timeout; /* timeout converted to absolute */
1044 apc_call_t call; /* APC call arguments */
1045 obj_handle_t apc_handle; /* handle to next APC */
1046 @END
1047 #define SELECT_ALERTABLE 1
1048 #define SELECT_INTERRUPTIBLE 2
1051 /* Create an event */
1052 @REQ(create_event)
1053 unsigned int access; /* wanted access rights */
1054 int manual_reset; /* manual reset event */
1055 int initial_state; /* initial state of the event */
1056 VARARG(objattr,object_attributes); /* object attributes */
1057 @REPLY
1058 obj_handle_t handle; /* handle to the event */
1059 @END
1061 /* Event operation */
1062 @REQ(event_op)
1063 obj_handle_t handle; /* handle to event */
1064 int op; /* event operation (see below) */
1065 @END
1066 enum event_op { PULSE_EVENT, SET_EVENT, RESET_EVENT };
1068 @REQ(query_event)
1069 obj_handle_t handle; /* handle to event */
1070 @REPLY
1071 int manual_reset; /* manual reset event */
1072 int state; /* current state of the event */
1073 @END
1075 /* Open an event */
1076 @REQ(open_event)
1077 unsigned int access; /* wanted access rights */
1078 unsigned int attributes; /* object attributes */
1079 obj_handle_t rootdir; /* root directory */
1080 VARARG(name,unicode_str); /* object name */
1081 @REPLY
1082 obj_handle_t handle; /* handle to the event */
1083 @END
1086 /* Create a keyed event */
1087 @REQ(create_keyed_event)
1088 unsigned int access; /* wanted access rights */
1089 VARARG(objattr,object_attributes); /* object attributes */
1090 @REPLY
1091 obj_handle_t handle; /* handle to the event */
1092 @END
1094 /* Open a keyed event */
1095 @REQ(open_keyed_event)
1096 unsigned int access; /* wanted access rights */
1097 unsigned int attributes; /* object attributes */
1098 obj_handle_t rootdir; /* root directory */
1099 VARARG(name,unicode_str); /* object name */
1100 @REPLY
1101 obj_handle_t handle; /* handle to the event */
1102 @END
1105 /* Create a mutex */
1106 @REQ(create_mutex)
1107 unsigned int access; /* wanted access rights */
1108 int owned; /* initially owned? */
1109 VARARG(objattr,object_attributes); /* object attributes */
1110 @REPLY
1111 obj_handle_t handle; /* handle to the mutex */
1112 @END
1115 /* Release a mutex */
1116 @REQ(release_mutex)
1117 obj_handle_t handle; /* handle to the mutex */
1118 @REPLY
1119 unsigned int prev_count; /* value of internal counter, before release */
1120 @END
1123 /* Open a mutex */
1124 @REQ(open_mutex)
1125 unsigned int access; /* wanted access rights */
1126 unsigned int attributes; /* object attributes */
1127 obj_handle_t rootdir; /* root directory */
1128 VARARG(name,unicode_str); /* object name */
1129 @REPLY
1130 obj_handle_t handle; /* handle to the mutex */
1131 @END
1134 /* Query a mutex */
1135 @REQ(query_mutex)
1136 obj_handle_t handle; /* handle to mutex */
1137 @REPLY
1138 unsigned int count; /* current count of mutex */
1139 int owned; /* true if owned by current thread */
1140 int abandoned; /* true if abandoned */
1141 @END
1144 /* Create a semaphore */
1145 @REQ(create_semaphore)
1146 unsigned int access; /* wanted access rights */
1147 unsigned int initial; /* initial count */
1148 unsigned int max; /* maximum count */
1149 VARARG(objattr,object_attributes); /* object attributes */
1150 @REPLY
1151 obj_handle_t handle; /* handle to the semaphore */
1152 @END
1155 /* Release a semaphore */
1156 @REQ(release_semaphore)
1157 obj_handle_t handle; /* handle to the semaphore */
1158 unsigned int count; /* count to add to semaphore */
1159 @REPLY
1160 unsigned int prev_count; /* previous semaphore count */
1161 @END
1163 @REQ(query_semaphore)
1164 obj_handle_t handle; /* handle to the semaphore */
1165 @REPLY
1166 unsigned int current; /* current count */
1167 unsigned int max; /* maximum count */
1168 @END
1170 /* Open a semaphore */
1171 @REQ(open_semaphore)
1172 unsigned int access; /* wanted access rights */
1173 unsigned int attributes; /* object attributes */
1174 obj_handle_t rootdir; /* root directory */
1175 VARARG(name,unicode_str); /* object name */
1176 @REPLY
1177 obj_handle_t handle; /* handle to the semaphore */
1178 @END
1181 /* Create a file */
1182 @REQ(create_file)
1183 unsigned int access; /* wanted access rights */
1184 unsigned int sharing; /* sharing flags */
1185 int create; /* file create action */
1186 unsigned int options; /* file options */
1187 unsigned int attrs; /* file attributes for creation */
1188 VARARG(objattr,object_attributes); /* object attributes */
1189 VARARG(filename,string); /* file name */
1190 @REPLY
1191 obj_handle_t handle; /* handle to the file */
1192 @END
1195 /* Open a file object */
1196 @REQ(open_file_object)
1197 unsigned int access; /* wanted access rights */
1198 unsigned int attributes; /* open attributes */
1199 obj_handle_t rootdir; /* root directory */
1200 unsigned int sharing; /* sharing flags */
1201 unsigned int options; /* file options */
1202 VARARG(filename,unicode_str); /* file name */
1203 @REPLY
1204 obj_handle_t handle; /* handle to the file */
1205 @END
1208 /* Allocate a file handle for a Unix fd */
1209 @REQ(alloc_file_handle)
1210 unsigned int access; /* wanted access rights */
1211 unsigned int attributes; /* object attributes */
1212 int fd; /* file descriptor on the client side */
1213 @REPLY
1214 obj_handle_t handle; /* handle to the file */
1215 @END
1218 /* Get the Unix name from a file handle */
1219 @REQ(get_handle_unix_name)
1220 obj_handle_t handle; /* file handle */
1221 @REPLY
1222 data_size_t name_len; /* unix name length */
1223 VARARG(name,string); /* unix name */
1224 @END
1227 /* Get a Unix fd to access a file */
1228 @REQ(get_handle_fd)
1229 obj_handle_t handle; /* handle to the file */
1230 @REPLY
1231 int type; /* file type (see below) */
1232 int cacheable; /* can fd be cached in the client? */
1233 unsigned int access; /* file access rights */
1234 unsigned int options; /* file open options */
1235 @END
1236 enum server_fd_type
1238 FD_TYPE_INVALID, /* invalid file (no associated fd) */
1239 FD_TYPE_FILE, /* regular file */
1240 FD_TYPE_DIR, /* directory */
1241 FD_TYPE_SOCKET, /* socket */
1242 FD_TYPE_SERIAL, /* serial port */
1243 FD_TYPE_PIPE, /* named pipe */
1244 FD_TYPE_MAILSLOT, /* mailslot */
1245 FD_TYPE_CHAR, /* unspecified char device */
1246 FD_TYPE_DEVICE, /* Windows device file */
1247 FD_TYPE_NB_TYPES
1251 /* Retrieve (or allocate) the client-side directory cache entry */
1252 @REQ(get_directory_cache_entry)
1253 obj_handle_t handle; /* handle to the directory */
1254 @REPLY
1255 int entry; /* cache entry on the client side */
1256 VARARG(free,ints); /* entries that can be freed */
1257 @END
1260 /* Flush a file buffers */
1261 @REQ(flush)
1262 async_data_t async; /* async I/O parameters */
1263 @REPLY
1264 obj_handle_t event; /* event set when finished */
1265 @END
1267 /* Query file information */
1268 @REQ(get_file_info)
1269 obj_handle_t handle; /* handle to the file */
1270 unsigned int info_class; /* queried information class */
1271 @REPLY
1272 VARARG(data,bytes); /* file info data */
1273 @END
1275 /* Query volume information */
1276 @REQ(get_volume_info)
1277 obj_handle_t handle; /* handle to the file */
1278 unsigned int info_class; /* queried information class */
1279 @REPLY
1280 VARARG(data,bytes); /* volume info data */
1281 @END
1283 /* Lock a region of a file */
1284 @REQ(lock_file)
1285 obj_handle_t handle; /* handle to the file */
1286 file_pos_t offset; /* offset of start of lock */
1287 file_pos_t count; /* count of bytes to lock */
1288 int shared; /* shared or exclusive lock? */
1289 int wait; /* do we want to wait? */
1290 @REPLY
1291 obj_handle_t handle; /* handle to wait on */
1292 int overlapped; /* is it an overlapped I/O handle? */
1293 @END
1296 /* Unlock a region of a file */
1297 @REQ(unlock_file)
1298 obj_handle_t handle; /* handle to the file */
1299 file_pos_t offset; /* offset of start of unlock */
1300 file_pos_t count; /* count of bytes to unlock */
1301 @END
1304 /* Create a socket */
1305 @REQ(create_socket)
1306 unsigned int access; /* wanted access rights */
1307 unsigned int attributes; /* object attributes */
1308 int family; /* family, see socket manpage */
1309 int type; /* type, see socket manpage */
1310 int protocol; /* protocol, see socket manpage */
1311 unsigned int flags; /* socket flags */
1312 @REPLY
1313 obj_handle_t handle; /* handle to the new socket */
1314 @END
1317 /* Accept a socket */
1318 @REQ(accept_socket)
1319 obj_handle_t lhandle; /* handle to the listening socket */
1320 unsigned int access; /* wanted access rights */
1321 unsigned int attributes; /* object attributes */
1322 @REPLY
1323 obj_handle_t handle; /* handle to the new socket */
1324 @END
1327 /* Accept into an initialized socket */
1328 @REQ(accept_into_socket)
1329 obj_handle_t lhandle; /* handle to the listening socket */
1330 obj_handle_t ahandle; /* handle to the accepting socket */
1331 @END
1334 /* Set socket event parameters */
1335 @REQ(set_socket_event)
1336 obj_handle_t handle; /* handle to the socket */
1337 unsigned int mask; /* event mask */
1338 obj_handle_t event; /* event object */
1339 user_handle_t window; /* window to send the message to */
1340 unsigned int msg; /* message to send */
1341 @END
1344 /* Get socket event parameters */
1345 @REQ(get_socket_event)
1346 obj_handle_t handle; /* handle to the socket */
1347 int service; /* clear pending? */
1348 obj_handle_t c_event; /* event to clear */
1349 @REPLY
1350 unsigned int mask; /* event mask */
1351 unsigned int pmask; /* pending events */
1352 unsigned int state; /* status bits */
1353 VARARG(errors,ints); /* event errors */
1354 @END
1357 /* Get socket info */
1358 @REQ(get_socket_info)
1359 obj_handle_t handle; /* handle to the socket */
1360 @REPLY
1361 int family; /* family, see socket manpage */
1362 int type; /* type, see socket manpage */
1363 int protocol; /* protocol, see socket manpage */
1364 @END
1367 /* Re-enable pending socket events */
1368 @REQ(enable_socket_event)
1369 obj_handle_t handle; /* handle to the socket */
1370 unsigned int mask; /* events to re-enable */
1371 unsigned int sstate; /* status bits to set */
1372 unsigned int cstate; /* status bits to clear */
1373 @END
1375 @REQ(set_socket_deferred)
1376 obj_handle_t handle; /* handle to the socket */
1377 obj_handle_t deferred; /* handle to the socket for which accept() is deferred */
1378 @END
1380 /* Allocate a console (only used by a console renderer) */
1381 @REQ(alloc_console)
1382 unsigned int access; /* wanted access rights */
1383 unsigned int attributes; /* object attributes */
1384 process_id_t pid; /* pid of process which shall be attached to the console */
1385 int input_fd; /* if pid=-1 (bare console to current process), fd for input */
1386 @REPLY
1387 obj_handle_t handle_in; /* handle to console input */
1388 obj_handle_t event; /* handle to renderer events change notification */
1389 @END
1392 /* Free the console of the current process */
1393 @REQ(free_console)
1394 @END
1397 #define CONSOLE_RENDERER_NONE_EVENT 0x00
1398 #define CONSOLE_RENDERER_TITLE_EVENT 0x01
1399 #define CONSOLE_RENDERER_ACTIVE_SB_EVENT 0x02
1400 #define CONSOLE_RENDERER_SB_RESIZE_EVENT 0x03
1401 #define CONSOLE_RENDERER_UPDATE_EVENT 0x04
1402 #define CONSOLE_RENDERER_CURSOR_POS_EVENT 0x05
1403 #define CONSOLE_RENDERER_CURSOR_GEOM_EVENT 0x06
1404 #define CONSOLE_RENDERER_DISPLAY_EVENT 0x07
1405 #define CONSOLE_RENDERER_EXIT_EVENT 0x08
1406 struct console_renderer_event
1408 short event;
1409 union
1411 struct update
1413 short top;
1414 short bottom;
1415 } update;
1416 struct resize
1418 short width;
1419 short height;
1420 } resize;
1421 struct cursor_pos
1423 short x;
1424 short y;
1425 } cursor_pos;
1426 struct cursor_geom
1428 short visible;
1429 short size;
1430 } cursor_geom;
1431 struct display
1433 short left;
1434 short top;
1435 short width;
1436 short height;
1437 } display;
1438 } u;
1441 /* retrieve console events for the renderer */
1442 @REQ(get_console_renderer_events)
1443 obj_handle_t handle; /* handle to console input events */
1444 @REPLY
1445 VARARG(data,bytes); /* the various console_renderer_events */
1446 @END
1449 /* Open a handle to the process console */
1450 @REQ(open_console)
1451 obj_handle_t from; /* 0 (resp 1) input (resp output) of current process console */
1452 /* otherwise console_in handle to get active screen buffer? */
1453 unsigned int access; /* wanted access rights */
1454 unsigned int attributes; /* object attributes */
1455 int share; /* share mask (only for output handles) */
1456 @REPLY
1457 obj_handle_t handle; /* handle to the console */
1458 @END
1461 /* Get the input queue wait event */
1462 @REQ(get_console_wait_event)
1463 @REPLY
1464 obj_handle_t handle;
1465 @END
1467 /* Get a console mode (input or output) */
1468 @REQ(get_console_mode)
1469 obj_handle_t handle; /* handle to the console */
1470 @REPLY
1471 int mode; /* console mode */
1472 @END
1475 /* Set a console mode (input or output) */
1476 @REQ(set_console_mode)
1477 obj_handle_t handle; /* handle to the console */
1478 int mode; /* console mode */
1479 @END
1482 /* Set info about a console (input only) */
1483 @REQ(set_console_input_info)
1484 obj_handle_t handle; /* handle to console input, or 0 for process' console */
1485 int mask; /* setting mask (see below) */
1486 obj_handle_t active_sb; /* active screen buffer */
1487 int history_mode; /* whether we duplicate lines in history */
1488 int history_size; /* number of lines in history */
1489 int edition_mode; /* index to the edition mode flavors */
1490 int input_cp; /* console input codepage */
1491 int output_cp; /* console output codepage */
1492 user_handle_t win; /* console window if backend supports it */
1493 VARARG(title,unicode_str); /* console title */
1494 @END
1495 #define SET_CONSOLE_INPUT_INFO_ACTIVE_SB 0x01
1496 #define SET_CONSOLE_INPUT_INFO_TITLE 0x02
1497 #define SET_CONSOLE_INPUT_INFO_HISTORY_MODE 0x04
1498 #define SET_CONSOLE_INPUT_INFO_HISTORY_SIZE 0x08
1499 #define SET_CONSOLE_INPUT_INFO_EDITION_MODE 0x10
1500 #define SET_CONSOLE_INPUT_INFO_INPUT_CODEPAGE 0x20
1501 #define SET_CONSOLE_INPUT_INFO_OUTPUT_CODEPAGE 0x40
1502 #define SET_CONSOLE_INPUT_INFO_WIN 0x80
1505 /* Get info about a console (input only) */
1506 @REQ(get_console_input_info)
1507 obj_handle_t handle; /* handle to console input, or 0 for process' console */
1508 @REPLY
1509 int history_mode; /* whether we duplicate lines in history */
1510 int history_size; /* number of lines in history */
1511 int history_index; /* number of used lines in history */
1512 int edition_mode; /* index to the edition mode flavors */
1513 int input_cp; /* console input codepage */
1514 int output_cp; /* console output codepage */
1515 user_handle_t win; /* console window if backend supports it */
1516 VARARG(title,unicode_str); /* console title */
1517 @END
1520 /* appends a string to console's history */
1521 @REQ(append_console_input_history)
1522 obj_handle_t handle; /* handle to console input, or 0 for process' console */
1523 VARARG(line,unicode_str); /* line to add */
1524 @END
1527 /* appends a string to console's history */
1528 @REQ(get_console_input_history)
1529 obj_handle_t handle; /* handle to console input, or 0 for process' console */
1530 int index; /* index to get line from */
1531 @REPLY
1532 int total; /* total length of line in Unicode chars */
1533 VARARG(line,unicode_str); /* line to add */
1534 @END
1537 /* creates a new screen buffer on process' console */
1538 @REQ(create_console_output)
1539 obj_handle_t handle_in; /* handle to console input, or 0 for process' console */
1540 unsigned int access; /* wanted access rights */
1541 unsigned int attributes; /* object attributes */
1542 unsigned int share; /* sharing credentials */
1543 int fd; /* for bare consoles, fd the screen-buffer is attached to */
1544 @REPLY
1545 obj_handle_t handle_out; /* handle to the screen buffer */
1546 @END
1549 /* Set info about a console (output only) */
1550 @REQ(set_console_output_info)
1551 obj_handle_t handle; /* handle to the console */
1552 int mask; /* setting mask (see below) */
1553 short int cursor_size; /* size of cursor (percentage filled) */
1554 short int cursor_visible;/* cursor visibility flag */
1555 short int cursor_x; /* position of cursor (x, y) */
1556 short int cursor_y;
1557 short int width; /* width of the screen buffer */
1558 short int height; /* height of the screen buffer */
1559 short int attr; /* default fill attributes (screen colors) */
1560 short int popup_attr; /* pop-up color attributes */
1561 short int win_left; /* window actually displayed by renderer */
1562 short int win_top; /* the rect area is expressed within the */
1563 short int win_right; /* boundaries of the screen buffer */
1564 short int win_bottom;
1565 short int max_width; /* maximum size (width x height) for the window */
1566 short int max_height;
1567 short int font_width; /* font size (width x height) */
1568 short int font_height;
1569 VARARG(colors,uints); /* color table */
1570 @END
1571 #define SET_CONSOLE_OUTPUT_INFO_CURSOR_GEOM 0x0001
1572 #define SET_CONSOLE_OUTPUT_INFO_CURSOR_POS 0x0002
1573 #define SET_CONSOLE_OUTPUT_INFO_SIZE 0x0004
1574 #define SET_CONSOLE_OUTPUT_INFO_ATTR 0x0008
1575 #define SET_CONSOLE_OUTPUT_INFO_DISPLAY_WINDOW 0x0010
1576 #define SET_CONSOLE_OUTPUT_INFO_MAX_SIZE 0x0020
1577 #define SET_CONSOLE_OUTPUT_INFO_FONT 0x0040
1578 #define SET_CONSOLE_OUTPUT_INFO_COLORTABLE 0x0080
1579 #define SET_CONSOLE_OUTPUT_INFO_POPUP_ATTR 0x0100
1582 /* Get info about a console (output only) */
1583 @REQ(get_console_output_info)
1584 obj_handle_t handle; /* handle to the console */
1585 @REPLY
1586 short int cursor_size; /* size of cursor (percentage filled) */
1587 short int cursor_visible;/* cursor visibility flag */
1588 short int cursor_x; /* position of cursor (x, y) */
1589 short int cursor_y;
1590 short int width; /* width of the screen buffer */
1591 short int height; /* height of the screen buffer */
1592 short int attr; /* default fill attributes (screen colors) */
1593 short int popup_attr; /* pop-up color attributes */
1594 short int win_left; /* window actually displayed by renderer */
1595 short int win_top; /* the rect area is expressed within the */
1596 short int win_right; /* boundaries of the screen buffer */
1597 short int win_bottom;
1598 short int max_width; /* maximum size (width x height) for the window */
1599 short int max_height;
1600 short int font_width; /* font size (width x height) */
1601 short int font_height;
1602 VARARG(colors,uints); /* color table */
1603 @END
1605 /* Add input records to a console input queue */
1606 @REQ(write_console_input)
1607 obj_handle_t handle; /* handle to the console input */
1608 VARARG(rec,input_records); /* input records */
1609 @REPLY
1610 int written; /* number of records written */
1611 @END
1614 /* Fetch input records from a console input queue */
1615 @REQ(read_console_input)
1616 obj_handle_t handle; /* handle to the console input */
1617 int flush; /* flush the retrieved records from the queue? */
1618 @REPLY
1619 int read; /* number of records read */
1620 VARARG(rec,input_records); /* input records */
1621 @END
1624 /* write data (chars and/or attributes) in a screen buffer */
1625 @REQ(write_console_output)
1626 obj_handle_t handle; /* handle to the console output */
1627 int x; /* position where to start writing */
1628 int y;
1629 int mode; /* char info (see below) */
1630 int wrap; /* wrap around at end of line? */
1631 VARARG(data,bytes); /* info to write */
1632 @REPLY
1633 int written; /* number of char infos actually written */
1634 int width; /* width of screen buffer */
1635 int height; /* height of screen buffer */
1636 @END
1637 enum char_info_mode
1639 CHAR_INFO_MODE_TEXT, /* characters only */
1640 CHAR_INFO_MODE_ATTR, /* attributes only */
1641 CHAR_INFO_MODE_TEXTATTR, /* both characters and attributes */
1642 CHAR_INFO_MODE_TEXTSTDATTR /* characters but use standard attributes */
1646 /* fill a screen buffer with constant data (chars and/or attributes) */
1647 @REQ(fill_console_output)
1648 obj_handle_t handle; /* handle to the console output */
1649 int x; /* position where to start writing */
1650 int y;
1651 int mode; /* char info mode */
1652 int count; /* number to write */
1653 int wrap; /* wrap around at end of line? */
1654 char_info_t data; /* data to write */
1655 @REPLY
1656 int written; /* number of char infos actually written */
1657 @END
1660 /* read data (chars and/or attributes) from a screen buffer */
1661 @REQ(read_console_output)
1662 obj_handle_t handle; /* handle to the console output */
1663 int x; /* position (x,y) where to start reading */
1664 int y;
1665 int mode; /* char info mode */
1666 int wrap; /* wrap around at end of line? */
1667 @REPLY
1668 int width; /* width of screen buffer */
1669 int height; /* height of screen buffer */
1670 VARARG(data,bytes);
1671 @END
1674 /* move a rect (of data) in screen buffer content */
1675 @REQ(move_console_output)
1676 obj_handle_t handle; /* handle to the console output */
1677 short int x_src; /* position (x, y) of rect to start moving from */
1678 short int y_src;
1679 short int x_dst; /* position (x, y) of rect to move to */
1680 short int y_dst;
1681 short int w; /* size of the rect (width, height) to move */
1682 short int h;
1683 @END
1686 /* Sends a signal to a process group */
1687 @REQ(send_console_signal)
1688 int signal; /* the signal to send */
1689 process_id_t group_id; /* the group to send the signal to */
1690 @END
1693 /* enable directory change notifications */
1694 @REQ(read_directory_changes)
1695 unsigned int filter; /* notification filter */
1696 int subtree; /* watch the subtree? */
1697 int want_data; /* flag indicating whether change data should be collected */
1698 async_data_t async; /* async I/O parameters */
1699 @END
1702 @REQ(read_change)
1703 obj_handle_t handle;
1704 @REPLY
1705 VARARG(events,filesystem_event); /* collected filesystem events */
1706 @END
1709 /* Create a file mapping */
1710 @REQ(create_mapping)
1711 unsigned int access; /* wanted access rights */
1712 unsigned int flags; /* SEC_* flags */
1713 unsigned int file_access; /* file access rights */
1714 mem_size_t size; /* mapping size */
1715 obj_handle_t file_handle; /* file handle */
1716 VARARG(objattr,object_attributes); /* object attributes */
1717 @REPLY
1718 obj_handle_t handle; /* handle to the mapping */
1719 @END
1722 /* Open a mapping */
1723 @REQ(open_mapping)
1724 unsigned int access; /* wanted access rights */
1725 unsigned int attributes; /* object attributes */
1726 obj_handle_t rootdir; /* root directory */
1727 VARARG(name,unicode_str); /* object name */
1728 @REPLY
1729 obj_handle_t handle; /* handle to the mapping */
1730 @END
1733 /* Get information about a file mapping */
1734 @REQ(get_mapping_info)
1735 obj_handle_t handle; /* handle to the mapping */
1736 unsigned int access; /* wanted access rights */
1737 @REPLY
1738 mem_size_t size; /* mapping size */
1739 unsigned int flags; /* SEC_* flags */
1740 obj_handle_t shared_file; /* shared mapping file handle */
1741 VARARG(image,pe_image_info);/* image info for SEC_IMAGE mappings */
1742 @END
1745 /* Add a memory view in the current process */
1746 @REQ(map_view)
1747 obj_handle_t mapping; /* file mapping handle */
1748 unsigned int access; /* wanted access rights */
1749 client_ptr_t base; /* view base address (page-aligned) */
1750 mem_size_t size; /* view size */
1751 file_pos_t start; /* start offset in mapping */
1752 @END
1755 /* Unmap a memory view from the current process */
1756 @REQ(unmap_view)
1757 client_ptr_t base; /* view base address */
1758 @END
1761 /* Get a range of committed pages in a file mapping */
1762 @REQ(get_mapping_committed_range)
1763 client_ptr_t base; /* view base address */
1764 file_pos_t offset; /* starting offset (page-aligned, in bytes) */
1765 @REPLY
1766 mem_size_t size; /* size of range starting at offset (page-aligned, in bytes) */
1767 int committed; /* whether it is a committed range */
1768 @END
1771 /* Add a range to the committed pages in a file mapping */
1772 @REQ(add_mapping_committed_range)
1773 client_ptr_t base; /* view base address */
1774 file_pos_t offset; /* starting offset (page-aligned, in bytes) */
1775 mem_size_t size; /* size to set (page-aligned, in bytes) or 0 if only retrieving */
1776 @END
1779 /* Check if two memory maps are for the same file */
1780 @REQ(is_same_mapping)
1781 client_ptr_t base1; /* first view base address */
1782 client_ptr_t base2; /* second view base address */
1783 @END
1786 #define SNAP_PROCESS 0x00000001
1787 #define SNAP_THREAD 0x00000002
1788 /* Create a snapshot */
1789 @REQ(create_snapshot)
1790 unsigned int attributes; /* object attributes */
1791 unsigned int flags; /* snapshot flags (SNAP_*) */
1792 @REPLY
1793 obj_handle_t handle; /* handle to the snapshot */
1794 @END
1797 /* Get the next process from a snapshot */
1798 @REQ(next_process)
1799 obj_handle_t handle; /* handle to the snapshot */
1800 int reset; /* reset snapshot position? */
1801 @REPLY
1802 int count; /* process usage count */
1803 process_id_t pid; /* process id */
1804 process_id_t ppid; /* parent process id */
1805 int threads; /* number of threads */
1806 int priority; /* process priority */
1807 int handles; /* number of handles */
1808 int unix_pid; /* Unix pid */
1809 VARARG(filename,unicode_str); /* file name of main exe */
1810 @END
1813 /* Get the next thread from a snapshot */
1814 @REQ(next_thread)
1815 obj_handle_t handle; /* handle to the snapshot */
1816 int reset; /* reset snapshot position? */
1817 @REPLY
1818 int count; /* thread usage count */
1819 process_id_t pid; /* process id */
1820 thread_id_t tid; /* thread id */
1821 int base_pri; /* base priority */
1822 int delta_pri; /* delta priority */
1823 @END
1826 /* Wait for a debug event */
1827 @REQ(wait_debug_event)
1828 int get_handle; /* should we alloc a handle for waiting? */
1829 @REPLY
1830 process_id_t pid; /* process id */
1831 thread_id_t tid; /* thread id */
1832 obj_handle_t wait; /* wait handle if no event ready */
1833 VARARG(event,debug_event); /* debug event data */
1834 @END
1837 /* Queue an exception event */
1838 @REQ(queue_exception_event)
1839 int first; /* first chance exception? */
1840 unsigned int code; /* exception code */
1841 unsigned int flags; /* exception flags */
1842 client_ptr_t record; /* exception record */
1843 client_ptr_t address; /* exception address */
1844 data_size_t len; /* size of parameters */
1845 VARARG(params,uints64,len);/* exception parameters */
1846 VARARG(context,context); /* thread context */
1847 @REPLY
1848 obj_handle_t handle; /* handle to the queued event */
1849 @END
1852 /* Retrieve the status of an exception event */
1853 @REQ(get_exception_status)
1854 obj_handle_t handle; /* handle to the queued event */
1855 @REPLY
1856 VARARG(context,context); /* modified thread context */
1857 @END
1860 /* Continue a debug event */
1861 @REQ(continue_debug_event)
1862 process_id_t pid; /* process id to continue */
1863 thread_id_t tid; /* thread id to continue */
1864 int status; /* continuation status */
1865 @END
1868 /* Start/stop debugging an existing process */
1869 @REQ(debug_process)
1870 process_id_t pid; /* id of the process to debug */
1871 int attach; /* 1=attaching / 0=detaching from the process */
1872 @END
1875 /* Simulate a breakpoint in a process */
1876 @REQ(debug_break)
1877 obj_handle_t handle; /* process handle */
1878 @REPLY
1879 int self; /* was it the caller itself? */
1880 @END
1883 /* Set debugger kill on exit flag */
1884 @REQ(set_debugger_kill_on_exit)
1885 int kill_on_exit; /* 0=detach/1=kill debuggee when debugger dies */
1886 @END
1889 /* Read data from a process address space */
1890 @REQ(read_process_memory)
1891 obj_handle_t handle; /* process handle */
1892 client_ptr_t addr; /* addr to read from */
1893 @REPLY
1894 VARARG(data,bytes); /* result data */
1895 @END
1898 /* Write data to a process address space */
1899 @REQ(write_process_memory)
1900 obj_handle_t handle; /* process handle */
1901 client_ptr_t addr; /* addr to write to */
1902 VARARG(data,bytes); /* data to write */
1903 @END
1906 /* Create a registry key */
1907 @REQ(create_key)
1908 unsigned int access; /* desired access rights */
1909 unsigned int options; /* creation options */
1910 VARARG(objattr,object_attributes); /* object attributes */
1911 VARARG(class,unicode_str); /* class name */
1912 @REPLY
1913 obj_handle_t hkey; /* handle to the created key */
1914 int created; /* has it been newly created? */
1915 @END
1917 /* Open a registry key */
1918 @REQ(open_key)
1919 obj_handle_t parent; /* handle to the parent key */
1920 unsigned int access; /* desired access rights */
1921 unsigned int attributes; /* object attributes */
1922 VARARG(name,unicode_str); /* key name */
1923 @REPLY
1924 obj_handle_t hkey; /* handle to the open key */
1925 @END
1928 /* Delete a registry key */
1929 @REQ(delete_key)
1930 obj_handle_t hkey; /* handle to the key */
1931 @END
1934 /* Flush a registry key */
1935 @REQ(flush_key)
1936 obj_handle_t hkey; /* handle to the key */
1937 @END
1940 /* Enumerate registry subkeys */
1941 @REQ(enum_key)
1942 obj_handle_t hkey; /* handle to registry key */
1943 int index; /* index of subkey (or -1 for current key) */
1944 int info_class; /* requested information class */
1945 @REPLY
1946 int subkeys; /* number of subkeys */
1947 int max_subkey; /* longest subkey name */
1948 int max_class; /* longest class name */
1949 int values; /* number of values */
1950 int max_value; /* longest value name */
1951 int max_data; /* longest value data */
1952 timeout_t modif; /* last modification time */
1953 data_size_t total; /* total length needed for full name and class */
1954 data_size_t namelen; /* length of key name in bytes */
1955 VARARG(name,unicode_str,namelen); /* key name */
1956 VARARG(class,unicode_str); /* class name */
1957 @END
1960 /* Set a value of a registry key */
1961 @REQ(set_key_value)
1962 obj_handle_t hkey; /* handle to registry key */
1963 int type; /* value type */
1964 data_size_t namelen; /* length of value name in bytes */
1965 VARARG(name,unicode_str,namelen); /* value name */
1966 VARARG(data,bytes); /* value data */
1967 @END
1970 /* Retrieve the value of a registry key */
1971 @REQ(get_key_value)
1972 obj_handle_t hkey; /* handle to registry key */
1973 VARARG(name,unicode_str); /* value name */
1974 @REPLY
1975 int type; /* value type */
1976 data_size_t total; /* total length needed for data */
1977 VARARG(data,bytes); /* value data */
1978 @END
1981 /* Enumerate a value of a registry key */
1982 @REQ(enum_key_value)
1983 obj_handle_t hkey; /* handle to registry key */
1984 int index; /* value index */
1985 int info_class; /* requested information class */
1986 @REPLY
1987 int type; /* value type */
1988 data_size_t total; /* total length needed for full name and data */
1989 data_size_t namelen; /* length of value name in bytes */
1990 VARARG(name,unicode_str,namelen); /* value name */
1991 VARARG(data,bytes); /* value data */
1992 @END
1995 /* Delete a value of a registry key */
1996 @REQ(delete_key_value)
1997 obj_handle_t hkey; /* handle to registry key */
1998 VARARG(name,unicode_str); /* value name */
1999 @END
2002 /* Load a registry branch from a file */
2003 @REQ(load_registry)
2004 obj_handle_t file; /* file to load from */
2005 VARARG(objattr,object_attributes); /* object attributes */
2006 @END
2009 /* UnLoad a registry branch from a file */
2010 @REQ(unload_registry)
2011 obj_handle_t hkey; /* root key to unload to */
2012 @END
2015 /* Save a registry branch to a file */
2016 @REQ(save_registry)
2017 obj_handle_t hkey; /* key to save */
2018 obj_handle_t file; /* file to save to */
2019 @END
2022 /* Add a registry key change notification */
2023 @REQ(set_registry_notification)
2024 obj_handle_t hkey; /* key to watch for changes */
2025 obj_handle_t event; /* event to set */
2026 int subtree; /* should we watch the whole subtree? */
2027 unsigned int filter; /* things to watch */
2028 @END
2031 /* Create a waitable timer */
2032 @REQ(create_timer)
2033 unsigned int access; /* wanted access rights */
2034 int manual; /* manual reset */
2035 VARARG(objattr,object_attributes); /* object attributes */
2036 @REPLY
2037 obj_handle_t handle; /* handle to the timer */
2038 @END
2041 /* Open a waitable timer */
2042 @REQ(open_timer)
2043 unsigned int access; /* wanted access rights */
2044 unsigned int attributes; /* object attributes */
2045 obj_handle_t rootdir; /* root directory */
2046 VARARG(name,unicode_str); /* object name */
2047 @REPLY
2048 obj_handle_t handle; /* handle to the timer */
2049 @END
2051 /* Set a waitable timer */
2052 @REQ(set_timer)
2053 obj_handle_t handle; /* handle to the timer */
2054 timeout_t expire; /* next expiration absolute time */
2055 client_ptr_t callback; /* callback function */
2056 client_ptr_t arg; /* callback argument */
2057 int period; /* timer period in ms */
2058 @REPLY
2059 int signaled; /* was the timer signaled before this call ? */
2060 @END
2062 /* Cancel a waitable timer */
2063 @REQ(cancel_timer)
2064 obj_handle_t handle; /* handle to the timer */
2065 @REPLY
2066 int signaled; /* was the timer signaled before this calltime ? */
2067 @END
2069 /* Get information on a waitable timer */
2070 @REQ(get_timer_info)
2071 obj_handle_t handle; /* handle to the timer */
2072 @REPLY
2073 timeout_t when; /* absolute time when the timer next expires */
2074 int signaled; /* is the timer signaled? */
2075 @END
2078 /* Retrieve the current context of a thread */
2079 @REQ(get_thread_context)
2080 obj_handle_t handle; /* thread handle */
2081 unsigned int flags; /* context flags */
2082 int suspend; /* suspend the thread if needed */
2083 @REPLY
2084 int self; /* was it a handle to the current thread? */
2085 VARARG(context,context); /* thread context */
2086 @END
2089 /* Set the current context of a thread */
2090 @REQ(set_thread_context)
2091 obj_handle_t handle; /* thread handle */
2092 int suspend; /* suspend the thread if needed */
2093 VARARG(context,context); /* thread context */
2094 @REPLY
2095 int self; /* was it a handle to the current thread? */
2096 @END
2099 /* Fetch a selector entry for a thread */
2100 @REQ(get_selector_entry)
2101 obj_handle_t handle; /* thread handle */
2102 int entry; /* LDT entry */
2103 @REPLY
2104 unsigned int base; /* selector base */
2105 unsigned int limit; /* selector limit */
2106 unsigned char flags; /* selector flags */
2107 @END
2110 /* Add an atom */
2111 @REQ(add_atom)
2112 obj_handle_t table; /* which table to add atom to */
2113 VARARG(name,unicode_str); /* atom name */
2114 @REPLY
2115 atom_t atom; /* resulting atom */
2116 @END
2119 /* Delete an atom */
2120 @REQ(delete_atom)
2121 obj_handle_t table; /* which table to delete atom from */
2122 atom_t atom; /* atom handle */
2123 @END
2126 /* Find an atom */
2127 @REQ(find_atom)
2128 obj_handle_t table; /* which table to find atom from */
2129 VARARG(name,unicode_str); /* atom name */
2130 @REPLY
2131 atom_t atom; /* atom handle */
2132 @END
2135 /* Get information about an atom */
2136 @REQ(get_atom_information)
2137 obj_handle_t table; /* which table to find atom from */
2138 atom_t atom; /* atom handle */
2139 @REPLY
2140 int count; /* atom lock count */
2141 int pinned; /* whether the atom has been pinned */
2142 data_size_t total; /* actual length of atom name */
2143 VARARG(name,unicode_str); /* atom name */
2144 @END
2147 /* Set information about an atom */
2148 @REQ(set_atom_information)
2149 obj_handle_t table; /* which table to find atom from */
2150 atom_t atom; /* atom handle */
2151 int pinned; /* whether to bump atom information */
2152 @END
2155 /* Empty an atom table */
2156 @REQ(empty_atom_table)
2157 obj_handle_t table; /* which table to find atom from */
2158 int if_pinned; /* whether to delete pinned atoms */
2159 @END
2162 /* Init an atom table */
2163 @REQ(init_atom_table)
2164 int entries; /* number of entries (only for local) */
2165 @REPLY
2166 obj_handle_t table; /* handle to the atom table */
2167 @END
2170 /* Get the message queue of the current thread */
2171 @REQ(get_msg_queue)
2172 @REPLY
2173 obj_handle_t handle; /* handle to the queue */
2174 @END
2177 /* Set the file descriptor associated to the current thread queue */
2178 @REQ(set_queue_fd)
2179 obj_handle_t handle; /* handle to the file descriptor */
2180 @END
2183 /* Set the current message queue wakeup mask */
2184 @REQ(set_queue_mask)
2185 unsigned int wake_mask; /* wakeup bits mask */
2186 unsigned int changed_mask; /* changed bits mask */
2187 int skip_wait; /* will we skip waiting if signaled? */
2188 @REPLY
2189 unsigned int wake_bits; /* current wake bits */
2190 unsigned int changed_bits; /* current changed bits */
2191 @END
2194 /* Get the current message queue status */
2195 @REQ(get_queue_status)
2196 unsigned int clear_bits; /* should we clear the change bits? */
2197 @REPLY
2198 unsigned int wake_bits; /* wake bits */
2199 unsigned int changed_bits; /* changed bits since last time */
2200 @END
2203 /* Retrieve the process idle event */
2204 @REQ(get_process_idle_event)
2205 obj_handle_t handle; /* process handle */
2206 @REPLY
2207 obj_handle_t event; /* handle to idle event */
2208 @END
2211 /* Send a message to a thread queue */
2212 @REQ(send_message)
2213 thread_id_t id; /* thread id */
2214 int type; /* message type (see below) */
2215 int flags; /* message flags (see below) */
2216 user_handle_t win; /* window handle */
2217 unsigned int msg; /* message code */
2218 lparam_t wparam; /* parameters */
2219 lparam_t lparam; /* parameters */
2220 timeout_t timeout; /* timeout for reply */
2221 VARARG(data,message_data); /* message data for sent messages */
2222 @END
2224 @REQ(post_quit_message)
2225 int exit_code; /* exit code to return */
2226 @END
2228 enum message_type
2230 MSG_ASCII, /* Ascii message (from SendMessageA) */
2231 MSG_UNICODE, /* Unicode message (from SendMessageW) */
2232 MSG_NOTIFY, /* notify message (from SendNotifyMessageW), always Unicode */
2233 MSG_CALLBACK, /* callback message (from SendMessageCallbackW), always Unicode */
2234 MSG_CALLBACK_RESULT,/* result of a callback message */
2235 MSG_OTHER_PROCESS, /* sent from other process, may include vararg data, always Unicode */
2236 MSG_POSTED, /* posted message (from PostMessageW), always Unicode */
2237 MSG_HARDWARE, /* hardware message */
2238 MSG_WINEVENT, /* winevent message */
2239 MSG_HOOK_LL /* low-level hardware hook */
2241 #define SEND_MSG_ABORT_IF_HUNG 0x01
2244 /* Send a hardware message to a thread queue */
2245 @REQ(send_hardware_message)
2246 user_handle_t win; /* window handle */
2247 hw_input_t input; /* input data */
2248 unsigned int flags; /* flags (see below) */
2249 @REPLY
2250 int wait; /* do we need to wait for a reply? */
2251 int prev_x; /* previous cursor position */
2252 int prev_y;
2253 int new_x; /* new cursor position */
2254 int new_y;
2255 VARARG(keystate,bytes); /* global state array for all the keys */
2256 @END
2257 #define SEND_HWMSG_INJECTED 0x01
2260 /* Get a message from the current queue */
2261 @REQ(get_message)
2262 unsigned int flags; /* PM_* flags */
2263 user_handle_t get_win; /* window handle to get */
2264 unsigned int get_first; /* first message code to get */
2265 unsigned int get_last; /* last message code to get */
2266 unsigned int hw_id; /* id of the previous hardware message (or 0) */
2267 unsigned int wake_mask; /* wakeup bits mask */
2268 unsigned int changed_mask; /* changed bits mask */
2269 @REPLY
2270 user_handle_t win; /* window handle */
2271 unsigned int msg; /* message code */
2272 lparam_t wparam; /* parameters */
2273 lparam_t lparam; /* parameters */
2274 int type; /* message type */
2275 int x; /* message x position */
2276 int y; /* message y position */
2277 unsigned int time; /* message time */
2278 unsigned int active_hooks; /* active hooks bitmap */
2279 data_size_t total; /* total size of extra data */
2280 VARARG(data,message_data); /* message data for sent messages */
2281 @END
2284 /* Reply to a sent message */
2285 @REQ(reply_message)
2286 int remove; /* should we remove the message? */
2287 lparam_t result; /* message result */
2288 VARARG(data,bytes); /* message data for sent messages */
2289 @END
2292 /* Accept the current hardware message */
2293 @REQ(accept_hardware_message)
2294 unsigned int hw_id; /* id of the hardware message */
2295 int remove; /* should we remove the message? */
2296 @END
2299 /* Retrieve the reply for the last message sent */
2300 @REQ(get_message_reply)
2301 int cancel; /* cancel message if not ready? */
2302 @REPLY
2303 lparam_t result; /* message result */
2304 VARARG(data,bytes); /* message data for sent messages */
2305 @END
2308 /* Set a window timer */
2309 @REQ(set_win_timer)
2310 user_handle_t win; /* window handle */
2311 unsigned int msg; /* message to post */
2312 unsigned int rate; /* timer rate in ms */
2313 lparam_t id; /* timer id */
2314 lparam_t lparam; /* message lparam (callback proc) */
2315 @REPLY
2316 lparam_t id; /* timer id */
2317 @END
2320 /* Kill a window timer */
2321 @REQ(kill_win_timer)
2322 user_handle_t win; /* window handle */
2323 lparam_t id; /* timer id */
2324 unsigned int msg; /* message to post */
2325 @END
2328 /* check if the thread owning the window is hung */
2329 @REQ(is_window_hung)
2330 user_handle_t win; /* window handle */
2331 @REPLY
2332 int is_hung;
2333 @END
2336 /* Retrieve info about a serial port */
2337 @REQ(get_serial_info)
2338 obj_handle_t handle; /* handle to comm port */
2339 int flags;
2340 @REPLY
2341 unsigned int eventmask;
2342 unsigned int cookie;
2343 unsigned int pending_write;
2344 @END
2347 /* Set info about a serial port */
2348 @REQ(set_serial_info)
2349 obj_handle_t handle; /* handle to comm port */
2350 int flags; /* bitmask to set values (see below) */
2351 @END
2352 #define SERIALINFO_PENDING_WRITE 0x04
2353 #define SERIALINFO_PENDING_WAIT 0x08
2356 /* Create an async I/O */
2357 @REQ(register_async)
2358 int type; /* type of queue to look after */
2359 async_data_t async; /* async I/O parameters */
2360 int count; /* count - usually # of bytes to be read/written */
2361 @END
2362 #define ASYNC_TYPE_READ 0x01
2363 #define ASYNC_TYPE_WRITE 0x02
2364 #define ASYNC_TYPE_WAIT 0x03
2367 /* Cancel all async op on a fd */
2368 @REQ(cancel_async)
2369 obj_handle_t handle; /* handle to comm port, socket or file */
2370 client_ptr_t iosb; /* I/O status block (NULL=all) */
2371 int only_thread; /* cancel matching this thread */
2372 @END
2375 /* Retrieve results of an async */
2376 @REQ(get_async_result)
2377 client_ptr_t user_arg; /* user arg used to identify async */
2378 @REPLY
2379 data_size_t size; /* result size (input or output depending on the operation) */
2380 VARARG(out_data,bytes); /* iosb output data */
2381 @END
2384 /* Perform a read on a file object */
2385 @REQ(read)
2386 async_data_t async; /* async I/O parameters */
2387 file_pos_t pos; /* read position */
2388 @REPLY
2389 obj_handle_t wait; /* handle to wait on for blocking read */
2390 unsigned int options; /* device open options */
2391 VARARG(data,bytes); /* read data */
2392 @END
2395 /* Perform a write on a file object */
2396 @REQ(write)
2397 async_data_t async; /* async I/O parameters */
2398 file_pos_t pos; /* write position */
2399 VARARG(data,bytes); /* write data */
2400 @REPLY
2401 obj_handle_t wait; /* handle to wait on for blocking write */
2402 unsigned int options; /* device open options */
2403 data_size_t size; /* size written */
2404 @END
2407 /* Perform an ioctl on a file */
2408 @REQ(ioctl)
2409 ioctl_code_t code; /* ioctl code */
2410 async_data_t async; /* async I/O parameters */
2411 VARARG(in_data,bytes); /* ioctl input data */
2412 @REPLY
2413 obj_handle_t wait; /* handle to wait on for blocking ioctl */
2414 unsigned int options; /* device open options */
2415 VARARG(out_data,bytes); /* ioctl output data */
2416 @END
2419 /* Store results of an async irp */
2420 @REQ(set_irp_result)
2421 obj_handle_t handle; /* handle to the irp */
2422 unsigned int status; /* status of the irp */
2423 data_size_t size; /* result size (input or output depending on the operation) */
2424 client_ptr_t file_ptr; /* opaque pointer to the file object */
2425 VARARG(data,bytes); /* output data of the irp */
2426 @END
2429 /* Create a named pipe */
2430 @REQ(create_named_pipe)
2431 unsigned int access;
2432 unsigned int options;
2433 unsigned int sharing;
2434 unsigned int maxinstances;
2435 unsigned int outsize;
2436 unsigned int insize;
2437 timeout_t timeout;
2438 unsigned int flags;
2439 VARARG(objattr,object_attributes); /* object attributes */
2440 @REPLY
2441 obj_handle_t handle; /* handle to the pipe */
2442 @END
2444 /* flags in create_named_pipe and get_named_pipe_info */
2445 #define NAMED_PIPE_MESSAGE_STREAM_WRITE 0x0001
2446 #define NAMED_PIPE_MESSAGE_STREAM_READ 0x0002
2447 #define NAMED_PIPE_NONBLOCKING_MODE 0x0004
2448 #define NAMED_PIPE_SERVER_END 0x8000
2450 /* Get named pipe information by handle */
2451 @REQ(get_named_pipe_info)
2452 obj_handle_t handle;
2453 @REPLY
2454 unsigned int flags;
2455 unsigned int sharing;
2456 unsigned int maxinstances;
2457 unsigned int instances;
2458 unsigned int outsize;
2459 unsigned int insize;
2460 @END
2462 /* Set named pipe information by handle */
2463 @REQ(set_named_pipe_info)
2464 obj_handle_t handle;
2465 unsigned int flags;
2466 @END
2468 /* Create a window */
2469 @REQ(create_window)
2470 user_handle_t parent; /* parent window */
2471 user_handle_t owner; /* owner window */
2472 atom_t atom; /* class atom */
2473 mod_handle_t instance; /* module instance */
2474 VARARG(class,unicode_str); /* class name */
2475 @REPLY
2476 user_handle_t handle; /* created window */
2477 user_handle_t parent; /* full handle of parent */
2478 user_handle_t owner; /* full handle of owner */
2479 int extra; /* number of extra bytes */
2480 client_ptr_t class_ptr; /* pointer to class in client address space */
2481 @END
2484 /* Destroy a window */
2485 @REQ(destroy_window)
2486 user_handle_t handle; /* handle to the window */
2487 @END
2490 /* Retrieve the desktop window for the current thread */
2491 @REQ(get_desktop_window)
2492 int force; /* force creation if it doesn't exist */
2493 @REPLY
2494 user_handle_t top_window; /* handle to the desktop window */
2495 user_handle_t msg_window; /* handle to the top-level HWND_MESSAGE parent */
2496 @END
2499 /* Set a window owner */
2500 @REQ(set_window_owner)
2501 user_handle_t handle; /* handle to the window */
2502 user_handle_t owner; /* new owner */
2503 @REPLY
2504 user_handle_t full_owner; /* full handle of new owner */
2505 user_handle_t prev_owner; /* full handle of previous owner */
2506 @END
2509 /* Get information from a window handle */
2510 @REQ(get_window_info)
2511 user_handle_t handle; /* handle to the window */
2512 @REPLY
2513 user_handle_t full_handle; /* full 32-bit handle */
2514 user_handle_t last_active; /* last active popup */
2515 process_id_t pid; /* process owning the window */
2516 thread_id_t tid; /* thread owning the window */
2517 atom_t atom; /* class atom */
2518 int is_unicode; /* ANSI or unicode */
2519 @END
2522 /* Set some information in a window */
2523 @REQ(set_window_info)
2524 unsigned short flags; /* flags for fields to set (see below) */
2525 short int is_unicode; /* ANSI or unicode */
2526 user_handle_t handle; /* handle to the window */
2527 unsigned int style; /* window style */
2528 unsigned int ex_style; /* window extended style */
2529 unsigned int id; /* window id */
2530 mod_handle_t instance; /* creator instance */
2531 lparam_t user_data; /* user-specific data */
2532 int extra_offset; /* offset to set in extra bytes */
2533 data_size_t extra_size; /* size to set in extra bytes */
2534 lparam_t extra_value; /* value to set in extra bytes */
2535 @REPLY
2536 unsigned int old_style; /* old window style */
2537 unsigned int old_ex_style; /* old window extended style */
2538 mod_handle_t old_instance; /* old creator instance */
2539 lparam_t old_user_data; /* old user-specific data */
2540 lparam_t old_extra_value; /* old value in extra bytes */
2541 unsigned int old_id; /* old window id */
2542 @END
2543 #define SET_WIN_STYLE 0x01
2544 #define SET_WIN_EXSTYLE 0x02
2545 #define SET_WIN_ID 0x04
2546 #define SET_WIN_INSTANCE 0x08
2547 #define SET_WIN_USERDATA 0x10
2548 #define SET_WIN_EXTRA 0x20
2549 #define SET_WIN_UNICODE 0x40
2552 /* Set the parent of a window */
2553 @REQ(set_parent)
2554 user_handle_t handle; /* handle to the window */
2555 user_handle_t parent; /* handle to the parent */
2556 @REPLY
2557 user_handle_t old_parent; /* old parent window */
2558 user_handle_t full_parent; /* full handle of new parent */
2559 @END
2562 /* Get a list of the window parents, up to the root of the tree */
2563 @REQ(get_window_parents)
2564 user_handle_t handle; /* handle to the window */
2565 @REPLY
2566 int count; /* total count of parents */
2567 VARARG(parents,user_handles); /* parent handles */
2568 @END
2571 /* Get a list of the window children */
2572 @REQ(get_window_children)
2573 obj_handle_t desktop; /* handle to desktop */
2574 user_handle_t parent; /* parent window */
2575 atom_t atom; /* class atom for the listed children */
2576 thread_id_t tid; /* thread owning the listed children */
2577 VARARG(class,unicode_str); /* class name */
2578 @REPLY
2579 int count; /* total count of children */
2580 VARARG(children,user_handles); /* children handles */
2581 @END
2584 /* Get a list of the window children that contain a given point */
2585 @REQ(get_window_children_from_point)
2586 user_handle_t parent; /* parent window */
2587 int x; /* point in parent coordinates */
2588 int y;
2589 @REPLY
2590 int count; /* total count of children */
2591 VARARG(children,user_handles); /* children handles */
2592 @END
2595 /* Get window tree information from a window handle */
2596 @REQ(get_window_tree)
2597 user_handle_t handle; /* handle to the window */
2598 @REPLY
2599 user_handle_t parent; /* parent window */
2600 user_handle_t owner; /* owner window */
2601 user_handle_t next_sibling; /* next sibling in Z-order */
2602 user_handle_t prev_sibling; /* prev sibling in Z-order */
2603 user_handle_t first_sibling; /* first sibling in Z-order */
2604 user_handle_t last_sibling; /* last sibling in Z-order */
2605 user_handle_t first_child; /* first child */
2606 user_handle_t last_child; /* last child */
2607 @END
2609 /* Set the position and Z order of a window */
2610 @REQ(set_window_pos)
2611 unsigned short swp_flags; /* SWP_* flags */
2612 unsigned short paint_flags; /* paint flags (see below) */
2613 user_handle_t handle; /* handle to the window */
2614 user_handle_t previous; /* previous window in Z order */
2615 rectangle_t window; /* window rectangle (in parent coords) */
2616 rectangle_t client; /* client rectangle (in parent coords) */
2617 VARARG(valid,rectangles); /* valid rectangles from WM_NCCALCSIZE (in parent coords) */
2618 @REPLY
2619 unsigned int new_style; /* new window style */
2620 unsigned int new_ex_style; /* new window extended style */
2621 user_handle_t surface_win; /* parent window that holds the surface */
2622 int needs_update; /* whether the surface region needs an update */
2623 @END
2624 #define SET_WINPOS_PAINT_SURFACE 0x01 /* window has a paintable surface */
2625 #define SET_WINPOS_PIXEL_FORMAT 0x02 /* window has a custom pixel format */
2627 /* Get the window and client rectangles of a window */
2628 @REQ(get_window_rectangles)
2629 user_handle_t handle; /* handle to the window */
2630 int relative; /* coords relative to (see below) */
2631 @REPLY
2632 rectangle_t window; /* window rectangle */
2633 rectangle_t visible; /* visible part of the window rectangle */
2634 rectangle_t client; /* client rectangle */
2635 @END
2636 enum coords_relative
2638 COORDS_CLIENT, /* relative to client area */
2639 COORDS_WINDOW, /* relative to whole window area */
2640 COORDS_PARENT, /* relative to parent's client area */
2641 COORDS_SCREEN /* relative to screen origin */
2645 /* Get the window text */
2646 @REQ(get_window_text)
2647 user_handle_t handle; /* handle to the window */
2648 @REPLY
2649 VARARG(text,unicode_str); /* window text */
2650 @END
2653 /* Set the window text */
2654 @REQ(set_window_text)
2655 user_handle_t handle; /* handle to the window */
2656 VARARG(text,unicode_str); /* window text */
2657 @END
2660 /* Get the coordinates offset between two windows */
2661 @REQ(get_windows_offset)
2662 user_handle_t from; /* handle to the first window */
2663 user_handle_t to; /* handle to the second window */
2664 @REPLY
2665 int x; /* x coordinate offset */
2666 int y; /* y coordinate offset */
2667 int mirror; /* whether to mirror the x coordinate */
2668 @END
2671 /* Get the visible region of a window */
2672 @REQ(get_visible_region)
2673 user_handle_t window; /* handle to the window */
2674 unsigned int flags; /* DCX flags */
2675 @REPLY
2676 user_handle_t top_win; /* top window to clip against */
2677 rectangle_t top_rect; /* top window visible rect with screen coords */
2678 rectangle_t win_rect; /* window rect in screen coords */
2679 unsigned int paint_flags; /* paint flags (from SET_WINPOS_* flags) */
2680 data_size_t total_size; /* total size of the resulting region */
2681 VARARG(region,rectangles); /* list of rectangles for the region (in screen coords) */
2682 @END
2685 /* Get the visible surface region of a window */
2686 @REQ(get_surface_region)
2687 user_handle_t window; /* handle to the window */
2688 @REPLY
2689 rectangle_t visible_rect; /* window visible rect in screen coords */
2690 data_size_t total_size; /* total size of the resulting region */
2691 VARARG(region,rectangles); /* list of rectangles for the region (in screen coords) */
2692 @END
2695 /* Get the window region */
2696 @REQ(get_window_region)
2697 user_handle_t window; /* handle to the window */
2698 @REPLY
2699 data_size_t total_size; /* total size of the resulting region */
2700 VARARG(region,rectangles); /* list of rectangles for the region (in window coords) */
2701 @END
2704 /* Set the window region */
2705 @REQ(set_window_region)
2706 user_handle_t window; /* handle to the window */
2707 int redraw; /* redraw the window? */
2708 VARARG(region,rectangles); /* list of rectangles for the region (in window coords) */
2709 @END
2712 /* Get the window update region */
2713 @REQ(get_update_region)
2714 user_handle_t window; /* handle to the window */
2715 user_handle_t from_child; /* child to start searching from */
2716 unsigned int flags; /* update flags (see below) */
2717 @REPLY
2718 user_handle_t child; /* child to repaint (or window itself) */
2719 unsigned int flags; /* resulting update flags (see below) */
2720 data_size_t total_size; /* total size of the resulting region */
2721 VARARG(region,rectangles); /* list of rectangles for the region (in screen coords) */
2722 @END
2723 #define UPDATE_NONCLIENT 0x001 /* get region for repainting non-client area */
2724 #define UPDATE_ERASE 0x002 /* get region for erasing client area */
2725 #define UPDATE_PAINT 0x004 /* get region for painting client area */
2726 #define UPDATE_INTERNALPAINT 0x008 /* get region if internal paint is pending */
2727 #define UPDATE_ALLCHILDREN 0x010 /* force repaint of all children */
2728 #define UPDATE_NOCHILDREN 0x020 /* don't try to repaint any children */
2729 #define UPDATE_NOREGION 0x040 /* don't return a region, only the flags */
2730 #define UPDATE_DELAYED_ERASE 0x080 /* still needs erase after BeginPaint */
2731 #define UPDATE_CLIPCHILDREN 0x100 /* remove clipped children from the update region */
2734 /* Update the z order of a window so that a given rectangle is fully visible */
2735 @REQ(update_window_zorder)
2736 user_handle_t window; /* handle to the window */
2737 rectangle_t rect; /* rectangle that must be visible (in client coords) */
2738 @END
2741 /* Mark parts of a window as needing a redraw */
2742 @REQ(redraw_window)
2743 user_handle_t window; /* handle to the window */
2744 unsigned int flags; /* RDW_* flags */
2745 VARARG(region,rectangles); /* list of rectangles for the region (in window coords) */
2746 @END
2749 /* Set a window property */
2750 @REQ(set_window_property)
2751 user_handle_t window; /* handle to the window */
2752 lparam_t data; /* data to store */
2753 atom_t atom; /* property atom (if no name specified) */
2754 VARARG(name,unicode_str); /* property name */
2755 @END
2758 /* Remove a window property */
2759 @REQ(remove_window_property)
2760 user_handle_t window; /* handle to the window */
2761 atom_t atom; /* property atom (if no name specified) */
2762 VARARG(name,unicode_str); /* property name */
2763 @REPLY
2764 lparam_t data; /* data stored in property */
2765 @END
2768 /* Get a window property */
2769 @REQ(get_window_property)
2770 user_handle_t window; /* handle to the window */
2771 atom_t atom; /* property atom (if no name specified) */
2772 VARARG(name,unicode_str); /* property name */
2773 @REPLY
2774 lparam_t data; /* data stored in property */
2775 @END
2778 /* Get the list of properties of a window */
2779 @REQ(get_window_properties)
2780 user_handle_t window; /* handle to the window */
2781 @REPLY
2782 int total; /* total number of properties */
2783 VARARG(props,properties); /* list of properties */
2784 @END
2787 /* Create a window station */
2788 @REQ(create_winstation)
2789 unsigned int flags; /* window station flags */
2790 unsigned int access; /* wanted access rights */
2791 unsigned int attributes; /* object attributes */
2792 obj_handle_t rootdir; /* root directory */
2793 VARARG(name,unicode_str); /* object name */
2794 @REPLY
2795 obj_handle_t handle; /* handle to the window station */
2796 @END
2799 /* Open a handle to a window station */
2800 @REQ(open_winstation)
2801 unsigned int access; /* wanted access rights */
2802 unsigned int attributes; /* object attributes */
2803 obj_handle_t rootdir; /* root directory */
2804 VARARG(name,unicode_str); /* object name */
2805 @REPLY
2806 obj_handle_t handle; /* handle to the window station */
2807 @END
2810 /* Close a window station */
2811 @REQ(close_winstation)
2812 obj_handle_t handle; /* handle to the window station */
2813 @END
2816 /* Get the process current window station */
2817 @REQ(get_process_winstation)
2818 @REPLY
2819 obj_handle_t handle; /* handle to the window station */
2820 @END
2823 /* Set the process current window station */
2824 @REQ(set_process_winstation)
2825 obj_handle_t handle; /* handle to the window station */
2826 @END
2829 /* Enumerate window stations */
2830 @REQ(enum_winstation)
2831 unsigned int index; /* current index */
2832 @REPLY
2833 unsigned int next; /* next index */
2834 VARARG(name,unicode_str); /* window station name */
2835 @END
2838 /* Create a desktop */
2839 @REQ(create_desktop)
2840 unsigned int flags; /* desktop flags */
2841 unsigned int access; /* wanted access rights */
2842 unsigned int attributes; /* object attributes */
2843 VARARG(name,unicode_str); /* object name */
2844 @REPLY
2845 obj_handle_t handle; /* handle to the desktop */
2846 @END
2849 /* Open a handle to a desktop */
2850 @REQ(open_desktop)
2851 obj_handle_t winsta; /* window station to open (null allowed) */
2852 unsigned int flags; /* desktop flags */
2853 unsigned int access; /* wanted access rights */
2854 unsigned int attributes; /* object attributes */
2855 VARARG(name,unicode_str); /* object name */
2856 @REPLY
2857 obj_handle_t handle; /* handle to the desktop */
2858 @END
2861 /* Open a handle to current input desktop */
2862 @REQ(open_input_desktop)
2863 unsigned int flags; /* desktop flags */
2864 unsigned int access; /* wanted access rights */
2865 unsigned int attributes; /* object attributes */
2866 @REPLY
2867 obj_handle_t handle; /* handle to the desktop */
2868 @END
2871 /* Close a desktop */
2872 @REQ(close_desktop)
2873 obj_handle_t handle; /* handle to the desktop */
2874 @END
2877 /* Get the thread current desktop */
2878 @REQ(get_thread_desktop)
2879 thread_id_t tid; /* thread id */
2880 @REPLY
2881 obj_handle_t handle; /* handle to the desktop */
2882 @END
2885 /* Set the thread current desktop */
2886 @REQ(set_thread_desktop)
2887 obj_handle_t handle; /* handle to the desktop */
2888 @END
2891 /* Enumerate desktops */
2892 @REQ(enum_desktop)
2893 obj_handle_t winstation; /* handle to the window station */
2894 unsigned int index; /* current index */
2895 @REPLY
2896 unsigned int next; /* next index */
2897 VARARG(name,unicode_str); /* window station name */
2898 @END
2901 /* Get/set information about a user object (window station or desktop) */
2902 @REQ(set_user_object_info)
2903 obj_handle_t handle; /* handle to the object */
2904 unsigned int flags; /* information to set/get */
2905 unsigned int obj_flags; /* new object flags */
2906 @REPLY
2907 int is_desktop; /* is object a desktop? */
2908 unsigned int old_obj_flags; /* old object flags */
2909 VARARG(name,unicode_str); /* object name */
2910 @END
2911 #define SET_USER_OBJECT_SET_FLAGS 1
2912 #define SET_USER_OBJECT_GET_FULL_NAME 2
2915 /* Register a hotkey */
2916 @REQ(register_hotkey)
2917 user_handle_t window; /* handle to the window */
2918 int id; /* hotkey identifier */
2919 unsigned int flags; /* modifier keys */
2920 unsigned int vkey; /* virtual key code */
2921 @REPLY
2922 int replaced; /* did we replace an existing hotkey? */
2923 unsigned int flags; /* flags of replaced hotkey */
2924 unsigned int vkey; /* virtual key code of replaced hotkey */
2925 @END
2928 /* Unregister a hotkey */
2929 @REQ(unregister_hotkey)
2930 user_handle_t window; /* handle to the window */
2931 int id; /* hotkey identifier */
2932 @REPLY
2933 unsigned int flags; /* flags of removed hotkey */
2934 unsigned int vkey; /* virtual key code of removed hotkey */
2935 @END
2938 /* Attach (or detach) thread inputs */
2939 @REQ(attach_thread_input)
2940 thread_id_t tid_from; /* thread to be attached */
2941 thread_id_t tid_to; /* thread to which tid_from should be attached */
2942 int attach; /* is it an attach? */
2943 @END
2946 /* Get input data for a given thread */
2947 @REQ(get_thread_input)
2948 thread_id_t tid; /* id of thread */
2949 @REPLY
2950 user_handle_t focus; /* handle to the focus window */
2951 user_handle_t capture; /* handle to the capture window */
2952 user_handle_t active; /* handle to the active window */
2953 user_handle_t foreground; /* handle to the global foreground window */
2954 user_handle_t menu_owner; /* handle to the menu owner */
2955 user_handle_t move_size; /* handle to the moving/resizing window */
2956 user_handle_t caret; /* handle to the caret window */
2957 user_handle_t cursor; /* handle to the cursor */
2958 int show_count; /* cursor show count */
2959 rectangle_t rect; /* caret rectangle */
2960 @END
2963 /* Get the time of the last input event */
2964 @REQ(get_last_input_time)
2965 @REPLY
2966 unsigned int time;
2967 @END
2970 /* Retrieve queue keyboard state for a given thread */
2971 @REQ(get_key_state)
2972 thread_id_t tid; /* id of thread */
2973 int key; /* optional key code or -1 */
2974 @REPLY
2975 unsigned char state; /* state of specified key */
2976 VARARG(keystate,bytes); /* state array for all the keys */
2977 @END
2979 /* Set queue keyboard state for a given thread */
2980 @REQ(set_key_state)
2981 thread_id_t tid; /* id of thread */
2982 int async; /* whether to change the async state too */
2983 VARARG(keystate,bytes); /* state array for all the keys */
2984 @END
2986 /* Set the system foreground window */
2987 @REQ(set_foreground_window)
2988 user_handle_t handle; /* handle to the foreground window */
2989 @REPLY
2990 user_handle_t previous; /* handle to the previous foreground window */
2991 int send_msg_old; /* whether we have to send a msg to the old window */
2992 int send_msg_new; /* whether we have to send a msg to the new window */
2993 @END
2995 /* Set the current thread focus window */
2996 @REQ(set_focus_window)
2997 user_handle_t handle; /* handle to the focus window */
2998 @REPLY
2999 user_handle_t previous; /* handle to the previous focus window */
3000 @END
3002 /* Set the current thread active window */
3003 @REQ(set_active_window)
3004 user_handle_t handle; /* handle to the active window */
3005 @REPLY
3006 user_handle_t previous; /* handle to the previous active window */
3007 @END
3009 /* Set the current thread capture window */
3010 @REQ(set_capture_window)
3011 user_handle_t handle; /* handle to the capture window */
3012 unsigned int flags; /* capture flags (see below) */
3013 @REPLY
3014 user_handle_t previous; /* handle to the previous capture window */
3015 user_handle_t full_handle; /* full 32-bit handle of new capture window */
3016 @END
3017 #define CAPTURE_MENU 0x01 /* capture is for a menu */
3018 #define CAPTURE_MOVESIZE 0x02 /* capture is for moving/resizing */
3021 /* Set the current thread caret window */
3022 @REQ(set_caret_window)
3023 user_handle_t handle; /* handle to the caret window */
3024 int width; /* caret width */
3025 int height; /* caret height */
3026 @REPLY
3027 user_handle_t previous; /* handle to the previous caret window */
3028 rectangle_t old_rect; /* previous caret rectangle */
3029 int old_hide; /* previous hide count */
3030 int old_state; /* previous caret state (1=on, 0=off) */
3031 @END
3034 /* Set the current thread caret information */
3035 @REQ(set_caret_info)
3036 unsigned int flags; /* caret flags (see below) */
3037 user_handle_t handle; /* handle to the caret window */
3038 int x; /* caret x position */
3039 int y; /* caret y position */
3040 int hide; /* increment for hide count (can be negative to show it) */
3041 int state; /* caret state (see below) */
3042 @REPLY
3043 user_handle_t full_handle; /* handle to the current caret window */
3044 rectangle_t old_rect; /* previous caret rectangle */
3045 int old_hide; /* previous hide count */
3046 int old_state; /* previous caret state (1=on, 0=off) */
3047 @END
3048 #define SET_CARET_POS 0x01 /* set the caret position from x,y */
3049 #define SET_CARET_HIDE 0x02 /* increment the caret hide count */
3050 #define SET_CARET_STATE 0x04 /* set the caret on/off state */
3051 enum caret_state
3053 CARET_STATE_OFF, /* off */
3054 CARET_STATE_ON, /* on */
3055 CARET_STATE_TOGGLE, /* toggle current state */
3056 CARET_STATE_ON_IF_MOVED /* on if the position differs, unchanged otherwise */
3060 /* Set a window hook */
3061 @REQ(set_hook)
3062 int id; /* id of the hook */
3063 process_id_t pid; /* id of process to set the hook into */
3064 thread_id_t tid; /* id of thread to set the hook into */
3065 int event_min;
3066 int event_max;
3067 client_ptr_t proc; /* hook procedure */
3068 int flags;
3069 int unicode; /* is it a unicode hook? */
3070 VARARG(module,unicode_str); /* module name */
3071 @REPLY
3072 user_handle_t handle; /* handle to the hook */
3073 unsigned int active_hooks; /* active hooks bitmap */
3074 @END
3077 /* Remove a window hook */
3078 @REQ(remove_hook)
3079 user_handle_t handle; /* handle to the hook */
3080 client_ptr_t proc; /* hook procedure if handle is 0 */
3081 int id; /* id of the hook if handle is 0 */
3082 @REPLY
3083 unsigned int active_hooks; /* active hooks bitmap */
3084 @END
3087 /* Start calling a hook chain */
3088 @REQ(start_hook_chain)
3089 int id; /* id of the hook */
3090 int event; /* signalled event */
3091 user_handle_t window; /* handle to the event window */
3092 int object_id; /* object id for out of context winevent */
3093 int child_id; /* child id for out of context winevent */
3094 @REPLY
3095 user_handle_t handle; /* handle to the next hook */
3096 process_id_t pid; /* process id for low-level keyboard/mouse hooks */
3097 thread_id_t tid; /* thread id for low-level keyboard/mouse hooks */
3098 int unicode; /* is it a unicode hook? */
3099 client_ptr_t proc; /* hook procedure */
3100 unsigned int active_hooks; /* active hooks bitmap */
3101 VARARG(module,unicode_str); /* module name */
3102 @END
3105 /* Finished calling a hook chain */
3106 @REQ(finish_hook_chain)
3107 int id; /* id of the hook */
3108 @END
3111 /* Get the hook information */
3112 @REQ(get_hook_info)
3113 user_handle_t handle; /* handle to the current hook */
3114 int get_next; /* do we want info about current or next hook? */
3115 int event; /* signalled event */
3116 user_handle_t window; /* handle to the event window */
3117 int object_id; /* object id for out of context winevent */
3118 int child_id; /* child id for out of context winevent */
3119 @REPLY
3120 user_handle_t handle; /* handle to the hook */
3121 int id; /* id of the hook */
3122 process_id_t pid; /* process id for low-level keyboard/mouse hooks */
3123 thread_id_t tid; /* thread id for low-level keyboard/mouse hooks */
3124 client_ptr_t proc; /* hook procedure */
3125 int unicode; /* is it a unicode hook? */
3126 VARARG(module,unicode_str); /* module name */
3127 @END
3130 /* Create a window class */
3131 @REQ(create_class)
3132 int local; /* is it a local class? */
3133 atom_t atom; /* class atom */
3134 unsigned int style; /* class style */
3135 mod_handle_t instance; /* module instance */
3136 int extra; /* number of extra class bytes */
3137 int win_extra; /* number of window extra bytes */
3138 client_ptr_t client_ptr; /* pointer to class in client address space */
3139 VARARG(name,unicode_str); /* class name */
3140 @REPLY
3141 atom_t atom; /* resulting class atom */
3142 @END
3145 /* Destroy a window class */
3146 @REQ(destroy_class)
3147 atom_t atom; /* class atom */
3148 mod_handle_t instance; /* module instance */
3149 VARARG(name,unicode_str); /* class name */
3150 @REPLY
3151 client_ptr_t client_ptr; /* pointer to class in client address space */
3152 @END
3155 /* Set some information in a class */
3156 @REQ(set_class_info)
3157 user_handle_t window; /* handle to the window */
3158 unsigned int flags; /* flags for info to set (see below) */
3159 atom_t atom; /* class atom */
3160 unsigned int style; /* class style */
3161 int win_extra; /* number of window extra bytes */
3162 mod_handle_t instance; /* module instance */
3163 int extra_offset; /* offset to set in extra bytes */
3164 data_size_t extra_size; /* size to set in extra bytes */
3165 lparam_t extra_value; /* value to set in extra bytes */
3166 @REPLY
3167 atom_t old_atom; /* previous class atom */
3168 unsigned int old_style; /* previous class style */
3169 int old_extra; /* previous number of class extra bytes */
3170 int old_win_extra; /* previous number of window extra bytes */
3171 mod_handle_t old_instance; /* previous module instance */
3172 lparam_t old_extra_value; /* old value in extra bytes */
3173 @END
3174 #define SET_CLASS_ATOM 0x0001
3175 #define SET_CLASS_STYLE 0x0002
3176 #define SET_CLASS_WINEXTRA 0x0004
3177 #define SET_CLASS_INSTANCE 0x0008
3178 #define SET_CLASS_EXTRA 0x0010
3181 /* Open the clipboard */
3182 @REQ(open_clipboard)
3183 user_handle_t window; /* clipboard window */
3184 @REPLY
3185 user_handle_t owner; /* current clipboard owner */
3186 @END
3189 /* Close the clipboard */
3190 @REQ(close_clipboard)
3191 @REPLY
3192 user_handle_t viewer; /* first clipboard viewer */
3193 user_handle_t owner; /* current clipboard owner */
3194 @END
3197 /* Empty the clipboard and grab ownership */
3198 @REQ(empty_clipboard)
3199 @END
3202 /* Add a data format to the clipboard */
3203 @REQ(set_clipboard_data)
3204 unsigned int format; /* clipboard format of the data */
3205 unsigned int lcid; /* locale id to use for synthesizing text formats */
3206 VARARG(data,bytes); /* data contents */
3207 @REPLY
3208 unsigned int seqno; /* sequence number for the set data */
3209 @END
3212 /* Fetch a data format from the clipboard */
3213 @REQ(get_clipboard_data)
3214 unsigned int format; /* clipboard format of the data */
3215 int render; /* will we try to render it if missing? */
3216 int cached; /* do we already have it in the client-side cache? */
3217 unsigned int seqno; /* sequence number for the data in the cache */
3218 @REPLY
3219 unsigned int from; /* for synthesized data, format to generate it from */
3220 user_handle_t owner; /* clipboard owner for delayed-rendered formats */
3221 unsigned int seqno; /* sequence number for the originally set data */
3222 data_size_t total; /* total data size */
3223 VARARG(data,bytes); /* data contents */
3224 @END
3227 /* Retrieve a list of available formats */
3228 @REQ(get_clipboard_formats)
3229 unsigned int format; /* specific format to query, return all if 0 */
3230 @REPLY
3231 unsigned int count; /* count of available formats */
3232 VARARG(formats,uints); /* array of available formats */
3233 @END
3236 /* Retrieve the next available format */
3237 @REQ(enum_clipboard_formats)
3238 unsigned int previous; /* previous format, or first if 0 */
3239 @REPLY
3240 unsigned int format; /* next format */
3241 @END
3244 /* Release ownership of the clipboard */
3245 @REQ(release_clipboard)
3246 user_handle_t owner; /* clipboard owner to release */
3247 @REPLY
3248 user_handle_t viewer; /* first clipboard viewer */
3249 user_handle_t owner; /* current clipboard owner */
3250 @END
3253 /* Get clipboard information */
3254 @REQ(get_clipboard_info)
3255 @REPLY
3256 user_handle_t window; /* clipboard window */
3257 user_handle_t owner; /* clipboard owner */
3258 user_handle_t viewer; /* clipboard viewer */
3259 unsigned int seqno; /* current sequence number */
3260 @END
3263 /* Set the clipboard viewer window */
3264 @REQ(set_clipboard_viewer)
3265 user_handle_t viewer; /* clipboard viewer */
3266 user_handle_t previous; /* if non-zero, check that this was the previous viewer */
3267 @REPLY
3268 user_handle_t old_viewer; /* previous clipboard viewer */
3269 user_handle_t owner; /* clipboard owner */
3270 @END
3273 /* Add a clipboard listener window */
3274 @REQ(add_clipboard_listener)
3275 user_handle_t window; /* clipboard listener window */
3276 @END
3279 /* Remove a clipboard listener window */
3280 @REQ(remove_clipboard_listener)
3281 user_handle_t window; /* clipboard listener window */
3282 @END
3285 /* Open a security token */
3286 @REQ(open_token)
3287 obj_handle_t handle; /* handle to the thread or process */
3288 unsigned int access; /* access rights to the new token */
3289 unsigned int attributes;/* object attributes */
3290 unsigned int flags; /* flags (see below) */
3291 @REPLY
3292 obj_handle_t token; /* handle to the token */
3293 @END
3294 #define OPEN_TOKEN_THREAD 1
3295 #define OPEN_TOKEN_AS_SELF 2
3298 /* Set/get the global windows */
3299 @REQ(set_global_windows)
3300 unsigned int flags; /* flags for fields to set (see below) */
3301 user_handle_t shell_window; /* handle to the new shell window */
3302 user_handle_t shell_listview; /* handle to the new shell listview window */
3303 user_handle_t progman_window; /* handle to the new program manager window */
3304 user_handle_t taskman_window; /* handle to the new task manager window */
3305 @REPLY
3306 user_handle_t old_shell_window; /* handle to the shell window */
3307 user_handle_t old_shell_listview; /* handle to the shell listview window */
3308 user_handle_t old_progman_window; /* handle to the new program manager window */
3309 user_handle_t old_taskman_window; /* handle to the new task manager window */
3310 @END
3311 #define SET_GLOBAL_SHELL_WINDOWS 0x01 /* set both main shell and listview windows */
3312 #define SET_GLOBAL_PROGMAN_WINDOW 0x02
3313 #define SET_GLOBAL_TASKMAN_WINDOW 0x04
3315 /* Adjust the privileges held by a token */
3316 @REQ(adjust_token_privileges)
3317 obj_handle_t handle; /* handle to the token */
3318 int disable_all; /* disable all privileges? */
3319 int get_modified_state; /* get modified privileges? */
3320 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges to enable/disable/remove */
3321 @REPLY
3322 unsigned int len; /* total length in bytes required to store token privileges */
3323 VARARG(privileges,LUID_AND_ATTRIBUTES); /* modified privileges */
3324 @END
3326 /* Retrieves the set of privileges held by or available to a token */
3327 @REQ(get_token_privileges)
3328 obj_handle_t handle; /* handle to the token */
3329 @REPLY
3330 unsigned int len; /* total length in bytes required to store token privileges */
3331 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges held by or available to a token */
3332 @END
3334 /* Check the token has the required privileges */
3335 @REQ(check_token_privileges)
3336 obj_handle_t handle; /* handle to the token */
3337 int all_required; /* are all the privileges required for the check to succeed? */
3338 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges to check */
3339 @REPLY
3340 int has_privileges; /* does the token have the required privileges? */
3341 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges held by or available to a token */
3342 @END
3344 @REQ(duplicate_token)
3345 obj_handle_t handle; /* handle to the token to duplicate */
3346 unsigned int access; /* access rights to the new token */
3347 int primary; /* is the new token to be a primary one? */
3348 int impersonation_level; /* impersonation level of the new token */
3349 VARARG(objattr,object_attributes); /* object attributes */
3350 @REPLY
3351 obj_handle_t new_handle; /* duplicated handle */
3352 @END
3354 @REQ(access_check)
3355 obj_handle_t handle; /* handle to the token */
3356 unsigned int desired_access; /* desired access to the object */
3357 unsigned int mapping_read; /* mapping from generic read to specific rights */
3358 unsigned int mapping_write; /* mapping from generic write to specific rights */
3359 unsigned int mapping_execute; /* mapping from generic execute to specific rights */
3360 unsigned int mapping_all; /* mapping from generic all to specific rights */
3361 VARARG(sd,security_descriptor); /* security descriptor to check */
3362 @REPLY
3363 unsigned int access_granted; /* access rights actually granted */
3364 unsigned int access_status; /* was access granted? */
3365 unsigned int privileges_len; /* length needed to store privileges */
3366 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges used during access check */
3367 @END
3369 @REQ(get_token_sid)
3370 obj_handle_t handle; /* handle to the token */
3371 unsigned int which_sid; /* which SID to retrieve from the token */
3372 @REPLY
3373 data_size_t sid_len; /* length needed to store sid */
3374 VARARG(sid,SID); /* the sid specified by which_sid from the token */
3375 @END
3377 @REQ(get_token_groups)
3378 obj_handle_t handle; /* handle to the token */
3379 @REPLY
3380 data_size_t user_len; /* length needed to store user */
3381 VARARG(user,token_groups); /* groups the token's user belongs to */
3382 @END
3384 @REQ(get_token_default_dacl)
3385 obj_handle_t handle; /* handle to the token */
3386 @REPLY
3387 data_size_t acl_len; /* length needed to store access control list */
3388 VARARG(acl,ACL); /* access control list */
3389 @END
3391 @REQ(set_token_default_dacl)
3392 obj_handle_t handle; /* handle to the token */
3393 VARARG(acl,ACL); /* default dacl to set */
3394 @END
3396 @REQ(set_security_object)
3397 obj_handle_t handle; /* handle to the object */
3398 unsigned int security_info; /* which parts of security descriptor to set */
3399 VARARG(sd,security_descriptor); /* security descriptor to set */
3400 @END
3402 @REQ(get_security_object)
3403 obj_handle_t handle; /* handle to the object */
3404 unsigned int security_info; /* which parts of security descriptor to get */
3405 @REPLY
3406 unsigned int sd_len; /* buffer size needed for sd */
3407 VARARG(sd,security_descriptor); /* retrieved security descriptor */
3408 @END
3411 struct handle_info
3413 process_id_t owner;
3414 obj_handle_t handle;
3415 unsigned int access;
3418 /* Return a list of all opened handles */
3419 @REQ(get_system_handles)
3420 @REPLY
3421 unsigned int count; /* number of handles */
3422 VARARG(data,handle_infos); /* array of handle_infos */
3423 @END
3426 /* Create a mailslot */
3427 @REQ(create_mailslot)
3428 unsigned int access; /* wanted access rights */
3429 timeout_t read_timeout;
3430 unsigned int max_msgsize;
3431 VARARG(objattr,object_attributes); /* object attributes */
3432 @REPLY
3433 obj_handle_t handle; /* handle to the mailslot */
3434 @END
3437 /* Set mailslot information */
3438 @REQ(set_mailslot_info)
3439 obj_handle_t handle; /* handle to the mailslot */
3440 timeout_t read_timeout;
3441 unsigned int flags;
3442 @REPLY
3443 timeout_t read_timeout;
3444 unsigned int max_msgsize;
3445 @END
3446 #define MAILSLOT_SET_READ_TIMEOUT 1
3449 /* Create a directory object */
3450 @REQ(create_directory)
3451 unsigned int access; /* access flags */
3452 VARARG(objattr,object_attributes); /* object attributes */
3453 @REPLY
3454 obj_handle_t handle; /* handle to the directory */
3455 @END
3458 /* Open a directory object */
3459 @REQ(open_directory)
3460 unsigned int access; /* access flags */
3461 unsigned int attributes; /* object attributes */
3462 obj_handle_t rootdir; /* root directory */
3463 VARARG(directory_name,unicode_str); /* Directory name */
3464 @REPLY
3465 obj_handle_t handle; /* handle to the directory */
3466 @END
3469 /* Get a directory entry by index */
3470 @REQ(get_directory_entry)
3471 obj_handle_t handle; /* handle to the directory */
3472 unsigned int index; /* entry index */
3473 @REPLY
3474 data_size_t name_len; /* length of the entry name in bytes */
3475 VARARG(name,unicode_str,name_len); /* entry name */
3476 VARARG(type,unicode_str); /* entry type */
3477 @END
3480 /* Create a symbolic link object */
3481 @REQ(create_symlink)
3482 unsigned int access; /* access flags */
3483 VARARG(objattr,object_attributes); /* object attributes */
3484 VARARG(target_name,unicode_str); /* target name */
3485 @REPLY
3486 obj_handle_t handle; /* handle to the symlink */
3487 @END
3490 /* Open a symbolic link object */
3491 @REQ(open_symlink)
3492 unsigned int access; /* access flags */
3493 unsigned int attributes; /* object attributes */
3494 obj_handle_t rootdir; /* root directory */
3495 VARARG(name,unicode_str); /* symlink name */
3496 @REPLY
3497 obj_handle_t handle; /* handle to the symlink */
3498 @END
3501 /* Query a symbolic link object */
3502 @REQ(query_symlink)
3503 obj_handle_t handle; /* handle to the symlink */
3504 @REPLY
3505 data_size_t total; /* total needed size for name */
3506 VARARG(target_name,unicode_str); /* target name */
3507 @END
3510 /* Query basic object information */
3511 @REQ(get_object_info)
3512 obj_handle_t handle; /* handle to the object */
3513 @REPLY
3514 unsigned int access; /* granted access mask */
3515 unsigned int ref_count; /* object ref count */
3516 unsigned int handle_count; /* object handle count */
3517 data_size_t total; /* total needed size for name */
3518 VARARG(name,unicode_str); /* object name */
3519 @END
3522 /* Query object type name information */
3523 @REQ(get_object_type)
3524 obj_handle_t handle; /* handle to the object */
3525 @REPLY
3526 data_size_t total; /* needed size for type name */
3527 VARARG(type,unicode_str); /* type name */
3528 @END
3531 /* Unlink a named object */
3532 @REQ(unlink_object)
3533 obj_handle_t handle; /* handle to the object */
3534 @END
3537 /* Query the impersonation level of an impersonation token */
3538 @REQ(get_token_impersonation_level)
3539 obj_handle_t handle; /* handle to the object */
3540 @REPLY
3541 int impersonation_level; /* impersonation level of the impersonation token */
3542 @END
3544 /* Allocate a locally-unique identifier */
3545 @REQ(allocate_locally_unique_id)
3546 @REPLY
3547 luid_t luid;
3548 @END
3551 /* Create a device manager */
3552 @REQ(create_device_manager)
3553 unsigned int access; /* wanted access rights */
3554 unsigned int attributes; /* object attributes */
3555 @REPLY
3556 obj_handle_t handle; /* handle to the device */
3557 @END
3560 /* Create a device */
3561 @REQ(create_device)
3562 unsigned int access; /* wanted access rights */
3563 unsigned int attributes; /* object attributes */
3564 obj_handle_t rootdir; /* root directory */
3565 client_ptr_t user_ptr; /* opaque ptr for use by client */
3566 obj_handle_t manager; /* device manager */
3567 VARARG(name,unicode_str); /* object name */
3568 @REPLY
3569 obj_handle_t handle; /* handle to the device */
3570 @END
3573 /* Delete a device */
3574 @REQ(delete_device)
3575 obj_handle_t handle; /* handle to the device */
3576 @END
3579 /* Retrieve the next pending device irp request */
3580 @REQ(get_next_device_request)
3581 obj_handle_t manager; /* handle to the device manager */
3582 obj_handle_t prev; /* handle to the previous irp */
3583 unsigned int status; /* status of the previous irp */
3584 @REPLY
3585 irp_params_t params; /* irp parameters */
3586 obj_handle_t next; /* handle to the next irp */
3587 process_id_t client_pid; /* pid of process calling irp */
3588 thread_id_t client_tid; /* tid of thread calling irp */
3589 data_size_t in_size; /* total needed input size */
3590 data_size_t out_size; /* needed output size */
3591 VARARG(next_data,bytes); /* input data of the next irp */
3592 @END
3595 /* Make the current process a system process */
3596 @REQ(make_process_system)
3597 @REPLY
3598 obj_handle_t event; /* event signaled when all user processes have exited */
3599 @END
3602 /* Get detailed fixed-size information about a token */
3603 @REQ(get_token_statistics)
3604 obj_handle_t handle; /* handle to the object */
3605 @REPLY
3606 luid_t token_id; /* locally-unique identifier of the token */
3607 luid_t modified_id; /* locally-unique identifier of the modified version of the token */
3608 int primary; /* is the token primary or impersonation? */
3609 int impersonation_level; /* level of impersonation */
3610 int group_count; /* the number of groups the token is a member of */
3611 int privilege_count; /* the number of privileges the token has */
3612 @END
3615 /* Create I/O completion port */
3616 @REQ(create_completion)
3617 unsigned int access; /* desired access to a port */
3618 unsigned int concurrent; /* max number of concurrent active threads */
3619 VARARG(objattr,object_attributes); /* object attributes */
3620 @REPLY
3621 obj_handle_t handle; /* port handle */
3622 @END
3625 /* Open I/O completion port */
3626 @REQ(open_completion)
3627 unsigned int access; /* desired access to a port */
3628 unsigned int attributes; /* object attributes */
3629 obj_handle_t rootdir; /* root directory */
3630 VARARG(filename,unicode_str); /* port name */
3631 @REPLY
3632 obj_handle_t handle; /* port handle */
3633 @END
3636 /* add completion to completion port */
3637 @REQ(add_completion)
3638 obj_handle_t handle; /* port handle */
3639 apc_param_t ckey; /* completion key */
3640 apc_param_t cvalue; /* completion value */
3641 apc_param_t information; /* IO_STATUS_BLOCK Information */
3642 unsigned int status; /* completion result */
3643 @END
3646 /* get completion from completion port queue */
3647 @REQ(remove_completion)
3648 obj_handle_t handle; /* port handle */
3649 @REPLY
3650 apc_param_t ckey; /* completion key */
3651 apc_param_t cvalue; /* completion value */
3652 apc_param_t information; /* IO_STATUS_BLOCK Information */
3653 unsigned int status; /* completion result */
3654 @END
3657 /* get completion queue depth */
3658 @REQ(query_completion)
3659 obj_handle_t handle; /* port handle */
3660 @REPLY
3661 unsigned int depth; /* completion queue depth */
3662 @END
3665 /* associate object with completion port */
3666 @REQ(set_completion_info)
3667 obj_handle_t handle; /* object handle */
3668 apc_param_t ckey; /* completion key */
3669 obj_handle_t chandle; /* port handle */
3670 @END
3673 /* check for associated completion and push msg */
3674 @REQ(add_fd_completion)
3675 obj_handle_t handle; /* async' object */
3676 apc_param_t cvalue; /* completion value */
3677 apc_param_t information; /* IO_STATUS_BLOCK Information */
3678 unsigned int status; /* completion status */
3679 @END
3682 /* set fd disposition information */
3683 @REQ(set_fd_disp_info)
3684 obj_handle_t handle; /* handle to a file or directory */
3685 int unlink; /* whether to unlink file on close */
3686 @END
3689 /* set fd name information */
3690 @REQ(set_fd_name_info)
3691 obj_handle_t handle; /* handle to a file or directory */
3692 obj_handle_t rootdir; /* root directory */
3693 int link; /* link instead of renaming */
3694 VARARG(filename,string); /* new file name */
3695 @END
3698 /* Retrieve layered info for a window */
3699 @REQ(get_window_layered_info)
3700 user_handle_t handle; /* handle to the window */
3701 @REPLY
3702 unsigned int color_key; /* color key */
3703 unsigned int alpha; /* alpha (0..255) */
3704 unsigned int flags; /* LWA_* flags */
3705 @END
3708 /* Set layered info for a window */
3709 @REQ(set_window_layered_info)
3710 user_handle_t handle; /* handle to the window */
3711 unsigned int color_key; /* color key */
3712 unsigned int alpha; /* alpha (0..255) */
3713 unsigned int flags; /* LWA_* flags */
3714 @END
3717 /* Allocate an arbitrary user handle */
3718 @REQ(alloc_user_handle)
3719 @REPLY
3720 user_handle_t handle; /* allocated handle */
3721 @END
3724 /* Free an arbitrary user handle */
3725 @REQ(free_user_handle)
3726 user_handle_t handle; /* handle to free*/
3727 @END
3730 /* Set/get the current cursor */
3731 @REQ(set_cursor)
3732 unsigned int flags; /* flags for fields to set (see below) */
3733 user_handle_t handle; /* handle to the cursor */
3734 int show_count; /* show count increment/decrement */
3735 int x; /* cursor position */
3736 int y;
3737 rectangle_t clip; /* cursor clip rectangle */
3738 unsigned int clip_msg; /* message to post on cursor clip changes */
3739 @REPLY
3740 user_handle_t prev_handle; /* previous handle */
3741 int prev_count; /* previous show count */
3742 int prev_x; /* previous position */
3743 int prev_y;
3744 int new_x; /* new position */
3745 int new_y;
3746 rectangle_t new_clip; /* new clip rectangle */
3747 unsigned int last_change; /* time of last position change */
3748 @END
3749 #define SET_CURSOR_HANDLE 0x01
3750 #define SET_CURSOR_COUNT 0x02
3751 #define SET_CURSOR_POS 0x04
3752 #define SET_CURSOR_CLIP 0x08
3753 #define SET_CURSOR_NOCLIP 0x10
3756 /* Modify the list of registered rawinput devices */
3757 @REQ(update_rawinput_devices)
3758 VARARG(devices,rawinput_devices);
3759 @END
3762 /* Retrieve the suspended context of a thread */
3763 @REQ(get_suspend_context)
3764 @REPLY
3765 VARARG(context,context); /* thread context */
3766 @END
3769 /* Store the suspend context of a thread */
3770 @REQ(set_suspend_context)
3771 VARARG(context,context); /* thread context */
3772 @END
3775 /* Create a new job object */
3776 @REQ(create_job)
3777 unsigned int access; /* wanted access rights */
3778 VARARG(objattr,object_attributes); /* object attributes */
3779 @REPLY
3780 obj_handle_t handle; /* handle to the job */
3781 @END
3784 /* Open a job object */
3785 @REQ(open_job)
3786 unsigned int access; /* wanted access rights */
3787 unsigned int attributes; /* object attributes */
3788 obj_handle_t rootdir; /* root directory */
3789 VARARG(name,unicode_str); /* object name */
3790 @REPLY
3791 obj_handle_t handle; /* handle to the job */
3792 @END
3795 /* Assign a job object to a process */
3796 @REQ(assign_job)
3797 obj_handle_t job; /* handle to the job */
3798 obj_handle_t process; /* handle to the process */
3799 @END
3802 /* Check if a process is associated with a job */
3803 @REQ(process_in_job)
3804 obj_handle_t job; /* handle to the job */
3805 obj_handle_t process; /* handle to the process */
3806 @END
3809 /* Set limit flags on a job */
3810 @REQ(set_job_limits)
3811 obj_handle_t handle; /* handle to the job */
3812 unsigned int limit_flags; /* new limit flags */
3813 @END
3816 /* Set new completion port for a job */
3817 @REQ(set_job_completion_port)
3818 obj_handle_t job; /* handle to the job */
3819 obj_handle_t port; /* handle to the completion port */
3820 client_ptr_t key; /* key to send with completion messages */
3821 @END
3824 /* Terminate all processes associated with the job */
3825 @REQ(terminate_job)
3826 obj_handle_t handle; /* handle to the job */
3827 int status; /* process exit code */
3828 @END