dwrite: Pass drawing effect to renderer in DrawStrikethrough().
[wine.git] / server / protocol.def
blobea5bd6152927c66d52ef73eac7188df0e45f84af
1 /* -*- C -*-
3 * Wine server protocol definition
5 * Copyright (C) 2001 Alexandre Julliard
7 * This file is used by tools/make_requests to build the
8 * protocol structures in include/wine/server_protocol.h
10 * This library is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU Lesser General Public
12 * License as published by the Free Software Foundation; either
13 * version 2.1 of the License, or (at your option) any later version.
15 * This library is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * Lesser General Public License for more details.
20 * You should have received a copy of the GNU Lesser General Public
21 * License along with this library; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
25 @HEADER /* start of C declarations */
27 #include <stdarg.h>
28 #include <stdlib.h>
29 #include <time.h>
31 #include <windef.h>
32 #include <winbase.h>
34 typedef unsigned int obj_handle_t;
35 typedef unsigned int user_handle_t;
36 typedef unsigned int atom_t;
37 typedef unsigned int process_id_t;
38 typedef unsigned int thread_id_t;
39 typedef unsigned int data_size_t;
40 typedef unsigned int ioctl_code_t;
41 typedef unsigned __int64 lparam_t;
42 typedef unsigned __int64 apc_param_t;
43 typedef unsigned __int64 mem_size_t;
44 typedef unsigned __int64 file_pos_t;
45 typedef unsigned __int64 client_ptr_t;
46 typedef unsigned __int64 affinity_t;
47 typedef client_ptr_t mod_handle_t;
49 struct request_header
51 int req; /* request code */
52 data_size_t request_size; /* request variable part size */
53 data_size_t reply_size; /* reply variable part maximum size */
56 struct reply_header
58 unsigned int error; /* error result */
59 data_size_t reply_size; /* reply variable part size */
62 /* placeholder structure for the maximum allowed request size */
63 /* this is used to construct the generic_request union */
64 struct request_max_size
66 int pad[16]; /* the max request size is 16 ints */
69 #define FIRST_USER_HANDLE 0x0020 /* first possible value for low word of user handle */
70 #define LAST_USER_HANDLE 0xffef /* last possible value for low word of user handle */
73 /* debug event data */
74 typedef union
76 int code; /* event code */
77 struct
79 int code; /* EXCEPTION_DEBUG_EVENT */
80 int first; /* first chance exception? */
81 unsigned int exc_code; /* exception code */
82 unsigned int flags; /* exception flags */
83 client_ptr_t record; /* exception record */
84 client_ptr_t address; /* exception address */
85 int nb_params; /* number of parameters */
86 int __pad;
87 client_ptr_t params[15]; /* parameters */
88 } exception;
89 struct
91 int code; /* CREATE_THREAD_DEBUG_EVENT */
92 obj_handle_t handle; /* handle to the new thread */
93 client_ptr_t teb; /* thread teb (in debugged process address space) */
94 client_ptr_t start; /* thread startup routine */
95 } create_thread;
96 struct
98 int code; /* CREATE_PROCESS_DEBUG_EVENT */
99 obj_handle_t file; /* handle to the process exe file */
100 obj_handle_t process; /* handle to the new process */
101 obj_handle_t thread; /* handle to the new thread */
102 mod_handle_t base; /* base of executable image */
103 int dbg_offset; /* offset of debug info in file */
104 int dbg_size; /* size of debug info */
105 client_ptr_t teb; /* thread teb (in debugged process address space) */
106 client_ptr_t start; /* thread startup routine */
107 client_ptr_t name; /* image name (optional) */
108 int unicode; /* is it Unicode? */
109 } create_process;
110 struct
112 int code; /* EXIT_THREAD_DEBUG_EVENT/EXIT_PROCESS_DEBUG_EVENT */
113 int exit_code; /* thread or process exit code */
114 } exit;
115 struct
117 int code; /* LOAD_DLL_DEBUG_EVENT */
118 obj_handle_t handle; /* file handle for the dll */
119 mod_handle_t base; /* base address of the dll */
120 int dbg_offset; /* offset of debug info in file */
121 int dbg_size; /* size of debug info */
122 client_ptr_t name; /* image name (optional) */
123 int unicode; /* is it Unicode? */
124 } load_dll;
125 struct
127 int code; /* UNLOAD_DLL_DEBUG_EVENT */
128 int __pad;
129 mod_handle_t base; /* base address of the dll */
130 } unload_dll;
131 } debug_event_t;
133 /* supported CPU types */
134 enum cpu_type
136 CPU_x86, CPU_x86_64, CPU_POWERPC, CPU_ARM, CPU_ARM64
138 typedef int cpu_type_t;
140 /* context data */
141 typedef struct
143 cpu_type_t cpu; /* cpu type */
144 unsigned int flags; /* SERVER_CTX_* flags */
145 union
147 struct { unsigned int eip, ebp, esp, eflags, cs, ss; } i386_regs;
148 struct { unsigned __int64 rip, rbp, rsp;
149 unsigned int cs, ss, flags, __pad; } x86_64_regs;
150 struct { unsigned int iar, msr, ctr, lr, dar, dsisr, trap, __pad; } powerpc_regs;
151 struct { unsigned int sp, lr, pc, cpsr; } arm_regs;
152 struct { unsigned __int64 sp, pc, pstate; } arm64_regs;
153 } ctl; /* selected by SERVER_CTX_CONTROL */
154 union
156 struct { unsigned int eax, ebx, ecx, edx, esi, edi; } i386_regs;
157 struct { unsigned __int64 rax,rbx, rcx, rdx, rsi, rdi,
158 r8, r9, r10, r11, r12, r13, r14, r15; } x86_64_regs;
159 struct { unsigned int gpr[32], cr, xer; } powerpc_regs;
160 struct { unsigned int r[13]; } arm_regs;
161 struct { unsigned __int64 x[31]; } arm64_regs;
162 } integer; /* selected by SERVER_CTX_INTEGER */
163 union
165 struct { unsigned int ds, es, fs, gs; } i386_regs;
166 struct { unsigned int ds, es, fs, gs; } x86_64_regs;
167 } seg; /* selected by SERVER_CTX_SEGMENTS */
168 union
170 struct { unsigned int ctrl, status, tag, err_off, err_sel, data_off, data_sel, cr0npx;
171 unsigned char regs[80]; } i386_regs;
172 struct { struct { unsigned __int64 low, high; } fpregs[32]; } x86_64_regs;
173 struct { double fpr[32], fpscr; } powerpc_regs;
174 } fp; /* selected by SERVER_CTX_FLOATING_POINT */
175 union
177 struct { unsigned int dr0, dr1, dr2, dr3, dr6, dr7; } i386_regs;
178 struct { unsigned __int64 dr0, dr1, dr2, dr3, dr6, dr7; } x86_64_regs;
179 struct { unsigned int dr[8]; } powerpc_regs;
180 } debug; /* selected by SERVER_CTX_DEBUG_REGISTERS */
181 union
183 unsigned char i386_regs[512];
184 } ext; /* selected by SERVER_CTX_EXTENDED_REGISTERS */
185 } context_t;
187 #define SERVER_CTX_CONTROL 0x01
188 #define SERVER_CTX_INTEGER 0x02
189 #define SERVER_CTX_SEGMENTS 0x04
190 #define SERVER_CTX_FLOATING_POINT 0x08
191 #define SERVER_CTX_DEBUG_REGISTERS 0x10
192 #define SERVER_CTX_EXTENDED_REGISTERS 0x20
194 /* structure used in sending an fd from client to server */
195 struct send_fd
197 thread_id_t tid; /* thread id */
198 int fd; /* file descriptor on client-side */
201 /* structure sent by the server on the wait fifo */
202 struct wake_up_reply
204 client_ptr_t cookie; /* magic cookie that was passed in select_request */
205 int signaled; /* wait result */
206 int __pad;
209 /* NT-style timeout, in 100ns units, negative means relative timeout */
210 typedef __int64 timeout_t;
211 #define TIMEOUT_INFINITE (((timeout_t)0x7fffffff) << 32 | 0xffffffff)
213 /* structure for process startup info */
214 typedef struct
216 unsigned int debug_flags;
217 unsigned int console_flags;
218 obj_handle_t console;
219 obj_handle_t hstdin;
220 obj_handle_t hstdout;
221 obj_handle_t hstderr;
222 unsigned int x;
223 unsigned int y;
224 unsigned int xsize;
225 unsigned int ysize;
226 unsigned int xchars;
227 unsigned int ychars;
228 unsigned int attribute;
229 unsigned int flags;
230 unsigned int show;
231 data_size_t curdir_len;
232 data_size_t dllpath_len;
233 data_size_t imagepath_len;
234 data_size_t cmdline_len;
235 data_size_t title_len;
236 data_size_t desktop_len;
237 data_size_t shellinfo_len;
238 data_size_t runtime_len;
239 /* VARARG(curdir,unicode_str,curdir_len); */
240 /* VARARG(dllpath,unicode_str,dllpath_len); */
241 /* VARARG(imagepath,unicode_str,imagepath_len); */
242 /* VARARG(cmdline,unicode_str,cmdline_len); */
243 /* VARARG(title,unicode_str,title_len); */
244 /* VARARG(desktop,unicode_str,desktop_len); */
245 /* VARARG(shellinfo,unicode_str,shellinfo_len); */
246 /* VARARG(runtime,unicode_str,runtime_len); */
247 } startup_info_t;
249 /* structure returned in the list of window properties */
250 typedef struct
252 atom_t atom; /* property atom */
253 int string; /* was atom a string originally? */
254 lparam_t data; /* data stored in property */
255 } property_data_t;
257 /* structure to specify window rectangles */
258 typedef struct
260 int left;
261 int top;
262 int right;
263 int bottom;
264 } rectangle_t;
266 /* structure for parameters of async I/O calls */
267 typedef struct
269 obj_handle_t handle; /* object to perform I/O on */
270 obj_handle_t event; /* event to signal when done */
271 client_ptr_t callback; /* client-side callback to call upon end of async */
272 client_ptr_t iosb; /* I/O status block in client addr space */
273 client_ptr_t arg; /* opaque user data to pass to callback */
274 apc_param_t cvalue; /* completion value to use for completion events */
275 } async_data_t;
277 /* structures for extra message data */
279 struct hardware_msg_data
281 lparam_t info; /* extra info */
282 unsigned int hw_id; /* unique id */
283 unsigned int flags; /* hook flags */
284 union
286 int type;
287 struct
289 int type; /* RIM_TYPEKEYBOARD */
290 unsigned int message; /* message generated by this rawinput event */
291 unsigned short vkey; /* virtual key code */
292 unsigned short scan; /* scan code */
293 } kbd;
294 struct
296 int type; /* RIM_TYPEMOUSE */
297 int x; /* x coordinate */
298 int y; /* y coordinate */
299 unsigned int data; /* mouse data */
300 } mouse;
301 } rawinput;
304 struct callback_msg_data
306 client_ptr_t callback; /* callback function */
307 lparam_t data; /* user data for callback */
308 lparam_t result; /* message result */
311 struct winevent_msg_data
313 user_handle_t hook; /* hook handle */
314 thread_id_t tid; /* thread id */
315 client_ptr_t hook_proc; /* hook proc address */
316 /* followed by module name if any */
319 typedef union
321 int type;
322 struct
324 int type; /* INPUT_KEYBOARD */
325 unsigned short vkey; /* virtual key code */
326 unsigned short scan; /* scan code */
327 unsigned int flags; /* event flags */
328 unsigned int time; /* event time */
329 lparam_t info; /* extra info */
330 } kbd;
331 struct
333 int type; /* INPUT_MOUSE */
334 int x; /* coordinates */
335 int y;
336 unsigned int data; /* mouse data */
337 unsigned int flags; /* event flags */
338 unsigned int time; /* event time */
339 lparam_t info; /* extra info */
340 } mouse;
341 struct
343 int type; /* INPUT_HARDWARE */
344 unsigned int msg; /* message code */
345 lparam_t lparam; /* message param */
346 } hw;
347 } hw_input_t;
349 typedef union
351 unsigned char bytes[1]; /* raw data for sent messages */
352 struct hardware_msg_data hardware;
353 struct callback_msg_data callback;
354 struct winevent_msg_data winevent;
355 } message_data_t;
357 /* structure for console char/attribute info */
358 typedef struct
360 WCHAR ch;
361 unsigned short attr;
362 } char_info_t;
364 /* structure returned in filesystem events */
365 struct filesystem_event
367 int action;
368 data_size_t len;
369 char name[1];
372 typedef struct
374 unsigned int low_part;
375 int high_part;
376 } luid_t;
378 #define MAX_ACL_LEN 65535
380 struct security_descriptor
382 unsigned int control; /* SE_ flags */
383 data_size_t owner_len;
384 data_size_t group_len;
385 data_size_t sacl_len;
386 data_size_t dacl_len;
387 /* VARARG(owner,SID); */
388 /* VARARG(group,SID); */
389 /* VARARG(sacl,ACL); */
390 /* VARARG(dacl,ACL); */
393 struct object_attributes
395 obj_handle_t rootdir; /* root directory */
396 data_size_t sd_len; /* length of security_descriptor data. may be 0 */
397 data_size_t name_len; /* length of the name string. may be 0 */
398 /* VARARG(sd,security_descriptor); */
399 /* VARARG(name,unicode_str); */
402 struct token_groups
404 unsigned int count;
405 /* unsigned int attributes[count]; */
406 /* VARARG(sids,SID); */
409 enum select_op
411 SELECT_NONE,
412 SELECT_WAIT,
413 SELECT_WAIT_ALL,
414 SELECT_SIGNAL_AND_WAIT,
415 SELECT_KEYED_EVENT_WAIT,
416 SELECT_KEYED_EVENT_RELEASE
419 typedef union
421 enum select_op op;
422 struct
424 enum select_op op; /* SELECT_WAIT or SELECT_WAIT_ALL */
425 obj_handle_t handles[MAXIMUM_WAIT_OBJECTS];
426 } wait;
427 struct
429 enum select_op op; /* SELECT_SIGNAL_AND_WAIT */
430 obj_handle_t wait;
431 obj_handle_t signal; /* must be last in the structure so we can remove it on retries */
432 } signal_and_wait;
433 struct
435 enum select_op op; /* SELECT_KEYED_EVENT_WAIT or SELECT_KEYED_EVENT_RELEASE */
436 obj_handle_t handle;
437 client_ptr_t key;
438 } keyed_event;
439 } select_op_t;
441 enum apc_type
443 APC_NONE,
444 APC_USER,
445 APC_TIMER,
446 APC_ASYNC_IO,
447 APC_VIRTUAL_ALLOC,
448 APC_VIRTUAL_FREE,
449 APC_VIRTUAL_QUERY,
450 APC_VIRTUAL_PROTECT,
451 APC_VIRTUAL_FLUSH,
452 APC_VIRTUAL_LOCK,
453 APC_VIRTUAL_UNLOCK,
454 APC_MAP_VIEW,
455 APC_UNMAP_VIEW,
456 APC_CREATE_THREAD
459 typedef union
461 enum apc_type type;
462 struct
464 enum apc_type type; /* APC_USER */
465 int __pad;
466 client_ptr_t func; /* void (__stdcall *func)(ULONG_PTR,ULONG_PTR,ULONG_PTR); */
467 apc_param_t args[3]; /* arguments for user function */
468 } user;
469 struct
471 enum apc_type type; /* APC_TIMER */
472 int __pad;
473 client_ptr_t func; /* void (__stdcall *func)(void*, unsigned int, unsigned int); */
474 timeout_t time; /* absolute time of expiration */
475 client_ptr_t arg; /* user argument */
476 } timer;
477 struct
479 enum apc_type type; /* APC_ASYNC_IO */
480 unsigned int status; /* I/O status */
481 client_ptr_t func; /* unsigned int (*func)(void*, void*, unsigned int, void**, void**); */
482 client_ptr_t user; /* user pointer */
483 client_ptr_t sb; /* status block */
484 } async_io;
485 struct
487 enum apc_type type; /* APC_VIRTUAL_ALLOC */
488 unsigned int op_type; /* type of operation */
489 client_ptr_t addr; /* requested address */
490 mem_size_t size; /* allocation size */
491 unsigned int zero_bits; /* allocation alignment */
492 unsigned int prot; /* memory protection flags */
493 } virtual_alloc;
494 struct
496 enum apc_type type; /* APC_VIRTUAL_FREE */
497 unsigned int op_type; /* type of operation */
498 client_ptr_t addr; /* requested address */
499 mem_size_t size; /* allocation size */
500 } virtual_free;
501 struct
503 enum apc_type type; /* APC_VIRTUAL_QUERY */
504 int __pad;
505 client_ptr_t addr; /* requested address */
506 } virtual_query;
507 struct
509 enum apc_type type; /* APC_VIRTUAL_PROTECT */
510 unsigned int prot; /* new protection flags */
511 client_ptr_t addr; /* requested address */
512 mem_size_t size; /* requested size */
513 } virtual_protect;
514 struct
516 enum apc_type type; /* APC_VIRTUAL_FLUSH */
517 int __pad;
518 client_ptr_t addr; /* requested address */
519 mem_size_t size; /* requested size */
520 } virtual_flush;
521 struct
523 enum apc_type type; /* APC_VIRTUAL_LOCK */
524 int __pad;
525 client_ptr_t addr; /* requested address */
526 mem_size_t size; /* requested size */
527 } virtual_lock;
528 struct
530 enum apc_type type; /* APC_VIRTUAL_UNLOCK */
531 int __pad;
532 client_ptr_t addr; /* requested address */
533 mem_size_t size; /* requested size */
534 } virtual_unlock;
535 struct
537 enum apc_type type; /* APC_MAP_VIEW */
538 obj_handle_t handle; /* mapping handle */
539 client_ptr_t addr; /* requested address */
540 mem_size_t size; /* allocation size */
541 file_pos_t offset; /* file offset */
542 unsigned int alloc_type;/* allocation type */
543 unsigned short zero_bits; /* allocation alignment */
544 unsigned short prot; /* memory protection flags */
545 } map_view;
546 struct
548 enum apc_type type; /* APC_UNMAP_VIEW */
549 int __pad;
550 client_ptr_t addr; /* view address */
551 } unmap_view;
552 struct
554 enum apc_type type; /* APC_CREATE_THREAD */
555 int suspend; /* suspended thread? */
556 client_ptr_t func; /* void (__stdcall *func)(void*); start function */
557 client_ptr_t arg; /* argument for start function */
558 mem_size_t reserve; /* reserve size for thread stack */
559 mem_size_t commit; /* commit size for thread stack */
560 } create_thread;
561 } apc_call_t;
563 typedef union
565 enum apc_type type;
566 struct
568 enum apc_type type; /* APC_ASYNC_IO */
569 unsigned int status; /* new status of async operation */
570 client_ptr_t apc; /* user APC to call */
571 client_ptr_t arg; /* user APC argument */
572 unsigned int total; /* bytes transferred */
573 } async_io;
574 struct
576 enum apc_type type; /* APC_VIRTUAL_ALLOC */
577 unsigned int status; /* status returned by call */
578 client_ptr_t addr; /* resulting address */
579 mem_size_t size; /* resulting size */
580 } virtual_alloc;
581 struct
583 enum apc_type type; /* APC_VIRTUAL_FREE */
584 unsigned int status; /* status returned by call */
585 client_ptr_t addr; /* resulting address */
586 mem_size_t size; /* resulting size */
587 } virtual_free;
588 struct
590 enum apc_type type; /* APC_VIRTUAL_QUERY */
591 unsigned int status; /* status returned by call */
592 client_ptr_t base; /* resulting base address */
593 client_ptr_t alloc_base;/* resulting allocation base */
594 mem_size_t size; /* resulting region size */
595 unsigned short state; /* resulting region state */
596 unsigned short prot; /* resulting region protection */
597 unsigned short alloc_prot;/* resulting allocation protection */
598 unsigned short alloc_type;/* resulting region allocation type */
599 } virtual_query;
600 struct
602 enum apc_type type; /* APC_VIRTUAL_PROTECT */
603 unsigned int status; /* status returned by call */
604 client_ptr_t addr; /* resulting address */
605 mem_size_t size; /* resulting size */
606 unsigned int prot; /* old protection flags */
607 } virtual_protect;
608 struct
610 enum apc_type type; /* APC_VIRTUAL_FLUSH */
611 unsigned int status; /* status returned by call */
612 client_ptr_t addr; /* resulting address */
613 mem_size_t size; /* resulting size */
614 } virtual_flush;
615 struct
617 enum apc_type type; /* APC_VIRTUAL_LOCK */
618 unsigned int status; /* status returned by call */
619 client_ptr_t addr; /* resulting address */
620 mem_size_t size; /* resulting size */
621 } virtual_lock;
622 struct
624 enum apc_type type; /* APC_VIRTUAL_UNLOCK */
625 unsigned int status; /* status returned by call */
626 client_ptr_t addr; /* resulting address */
627 mem_size_t size; /* resulting size */
628 } virtual_unlock;
629 struct
631 enum apc_type type; /* APC_MAP_VIEW */
632 unsigned int status; /* status returned by call */
633 client_ptr_t addr; /* resulting address */
634 mem_size_t size; /* resulting size */
635 } map_view;
636 struct
638 enum apc_type type; /* APC_MAP_VIEW */
639 unsigned int status; /* status returned by call */
640 } unmap_view;
641 struct
643 enum apc_type type; /* APC_CREATE_THREAD */
644 unsigned int status; /* status returned by call */
645 thread_id_t tid; /* thread id */
646 obj_handle_t handle; /* handle to new thread */
647 } create_thread;
648 } apc_result_t;
650 typedef union
652 unsigned int major; /* irp major function */
653 struct
655 unsigned int major; /* IRP_MJ_CREATE */
656 unsigned int access; /* access rights */
657 unsigned int sharing; /* sharing flags */
658 unsigned int options; /* file options */
659 client_ptr_t device; /* opaque ptr for the device */
660 } create;
661 struct
663 unsigned int major; /* IRP_MJ_CLOSE */
664 int __pad;
665 client_ptr_t file; /* opaque ptr for the file object */
666 } close;
667 struct
669 unsigned int major; /* IRP_MJ_READ */
670 unsigned int key; /* driver key */
671 client_ptr_t file; /* opaque ptr for the file object */
672 file_pos_t pos; /* file position */
673 } read;
674 struct
676 unsigned int major; /* IRP_MJ_WRITE */
677 unsigned int key; /* driver key */
678 client_ptr_t file; /* opaque ptr for the file object */
679 file_pos_t pos; /* file position */
680 } write;
681 struct
683 unsigned int major; /* IRP_MJ_FLUSH_BUFFERS */
684 int __pad;
685 client_ptr_t file; /* opaque ptr for the file object */
686 } flush;
687 struct
689 unsigned int major; /* IRP_MJ_DEVICE_CONTROL */
690 ioctl_code_t code; /* ioctl code */
691 client_ptr_t file; /* opaque ptr for the file object */
692 } ioctl;
693 } irp_params_t;
695 struct rawinput_device
697 unsigned short usage_page;
698 unsigned short usage;
699 unsigned int flags;
700 user_handle_t target;
703 /****************************************************************/
704 /* Request declarations */
706 /* Create a new process from the context of the parent */
707 @REQ(new_process)
708 int inherit_all; /* inherit all handles from parent */
709 unsigned int create_flags; /* creation flags */
710 int socket_fd; /* file descriptor for process socket */
711 obj_handle_t exe_file; /* file handle for main exe */
712 unsigned int process_access; /* access rights for process object */
713 unsigned int process_attr; /* attributes for process object */
714 unsigned int thread_access; /* access rights for thread object */
715 unsigned int thread_attr; /* attributes for thread object */
716 cpu_type_t cpu; /* CPU that the new process will use */
717 data_size_t info_size; /* size of startup info */
718 VARARG(info,startup_info,info_size); /* startup information */
719 VARARG(env,unicode_str); /* environment for new process */
720 @REPLY
721 obj_handle_t info; /* new process info handle */
722 process_id_t pid; /* process id */
723 obj_handle_t phandle; /* process handle (in the current process) */
724 thread_id_t tid; /* thread id */
725 obj_handle_t thandle; /* thread handle (in the current process) */
726 @END
729 /* Retrieve information about a newly started process */
730 @REQ(get_new_process_info)
731 obj_handle_t info; /* info handle returned from new_process_request */
732 @REPLY
733 int success; /* did the process start successfully? */
734 int exit_code; /* process exit code if failed */
735 @END
738 /* Create a new thread from the context of the parent */
739 @REQ(new_thread)
740 unsigned int access; /* wanted access rights */
741 unsigned int attributes; /* object attributes */
742 int suspend; /* new thread should be suspended on creation */
743 int request_fd; /* fd for request pipe */
744 @REPLY
745 thread_id_t tid; /* thread id */
746 obj_handle_t handle; /* thread handle (in the current process) */
747 @END
750 /* Retrieve the new process startup info */
751 @REQ(get_startup_info)
752 @REPLY
753 obj_handle_t exe_file; /* file handle for main exe */
754 data_size_t info_size; /* size of startup info */
755 VARARG(info,startup_info,info_size); /* startup information */
756 VARARG(env,unicode_str); /* environment */
757 @END
760 /* Signal the end of the process initialization */
761 @REQ(init_process_done)
762 int gui; /* is it a GUI process? */
763 mod_handle_t module; /* main module base address */
764 client_ptr_t ldt_copy; /* address of LDT copy (in thread address space) */
765 client_ptr_t entry; /* process entry point */
766 @END
769 /* Initialize a thread; called from the child after fork()/clone() */
770 @REQ(init_thread)
771 int unix_pid; /* Unix pid of new thread */
772 int unix_tid; /* Unix tid of new thread */
773 int debug_level; /* new debug level */
774 client_ptr_t teb; /* TEB of new thread (in thread address space) */
775 client_ptr_t entry; /* entry point or PEB if initial thread (in thread address space) */
776 int reply_fd; /* fd for reply pipe */
777 int wait_fd; /* fd for blocking calls pipe */
778 cpu_type_t cpu; /* CPU that this thread is running on */
779 @REPLY
780 process_id_t pid; /* process id of the new thread's process */
781 thread_id_t tid; /* thread id of the new thread */
782 timeout_t server_start; /* server start time */
783 data_size_t info_size; /* total size of startup info */
784 int version; /* protocol version */
785 unsigned int all_cpus; /* bitset of supported CPUs */
786 @END
789 /* Terminate a process */
790 @REQ(terminate_process)
791 obj_handle_t handle; /* process handle to terminate */
792 int exit_code; /* process exit code */
793 @REPLY
794 int self; /* suicide? */
795 @END
798 /* Terminate a thread */
799 @REQ(terminate_thread)
800 obj_handle_t handle; /* thread handle to terminate */
801 int exit_code; /* thread exit code */
802 @REPLY
803 int self; /* suicide? */
804 int last; /* last thread in this process? */
805 @END
808 /* Retrieve information about a process */
809 @REQ(get_process_info)
810 obj_handle_t handle; /* process handle */
811 @REPLY
812 process_id_t pid; /* server process id */
813 process_id_t ppid; /* server process id of parent */
814 affinity_t affinity; /* process affinity mask */
815 client_ptr_t peb; /* PEB address in process address space */
816 timeout_t start_time; /* process start time */
817 timeout_t end_time; /* process end time */
818 int exit_code; /* process exit code */
819 int priority; /* priority class */
820 cpu_type_t cpu; /* CPU that this process is running on */
821 short int debugger_present; /* process is being debugged */
822 short int debug_children; /* inherit debugger to child processes */
823 @END
826 /* Set a process information */
827 @REQ(set_process_info)
828 obj_handle_t handle; /* process handle */
829 int mask; /* setting mask (see below) */
830 int priority; /* priority class */
831 affinity_t affinity; /* affinity mask */
832 @END
833 #define SET_PROCESS_INFO_PRIORITY 0x01
834 #define SET_PROCESS_INFO_AFFINITY 0x02
837 /* Retrieve information about a thread */
838 @REQ(get_thread_info)
839 obj_handle_t handle; /* thread handle */
840 thread_id_t tid_in; /* thread id (optional) */
841 @REPLY
842 process_id_t pid; /* server process id */
843 thread_id_t tid; /* server thread id */
844 client_ptr_t teb; /* thread teb pointer */
845 client_ptr_t entry_point; /* thread entry point */
846 affinity_t affinity; /* thread affinity mask */
847 int exit_code; /* thread exit code */
848 int priority; /* thread priority level */
849 int last; /* last thread in process */
850 @END
853 /* Retrieve information about thread times */
854 @REQ(get_thread_times)
855 obj_handle_t handle; /* thread handle */
856 @REPLY
857 timeout_t creation_time; /* thread creation time */
858 timeout_t exit_time; /* thread exit time */
859 @END
862 /* Set a thread information */
863 @REQ(set_thread_info)
864 obj_handle_t handle; /* thread handle */
865 int mask; /* setting mask (see below) */
866 int priority; /* priority class */
867 affinity_t affinity; /* affinity mask */
868 client_ptr_t entry_point; /* thread entry point */
869 obj_handle_t token; /* impersonation token */
870 @END
871 #define SET_THREAD_INFO_PRIORITY 0x01
872 #define SET_THREAD_INFO_AFFINITY 0x02
873 #define SET_THREAD_INFO_TOKEN 0x04
874 #define SET_THREAD_INFO_ENTRYPOINT 0x08
877 /* Retrieve information about a module */
878 @REQ(get_dll_info)
879 obj_handle_t handle; /* process handle */
880 mod_handle_t base_address; /* base address of module */
881 @REPLY
882 client_ptr_t entry_point;
883 data_size_t size; /* module size */
884 data_size_t filename_len; /* buffer len in bytes required to store filename */
885 VARARG(filename,unicode_str); /* file name of module */
886 @END
889 /* Suspend a thread */
890 @REQ(suspend_thread)
891 obj_handle_t handle; /* thread handle */
892 @REPLY
893 int count; /* new suspend count */
894 @END
897 /* Resume a thread */
898 @REQ(resume_thread)
899 obj_handle_t handle; /* thread handle */
900 @REPLY
901 int count; /* new suspend count */
902 @END
905 /* Notify the server that a dll has been loaded */
906 @REQ(load_dll)
907 obj_handle_t mapping; /* file mapping handle */
908 mod_handle_t base; /* base address */
909 client_ptr_t name; /* ptr to ptr to name (in process addr space) */
910 data_size_t size; /* dll size */
911 int dbg_offset; /* debug info offset */
912 int dbg_size; /* debug info size */
913 VARARG(filename,unicode_str); /* file name of dll */
914 @END
917 /* Notify the server that a dll is being unloaded */
918 @REQ(unload_dll)
919 mod_handle_t base; /* base address */
920 @END
923 /* Queue an APC for a thread or process */
924 @REQ(queue_apc)
925 obj_handle_t handle; /* thread or process handle */
926 apc_call_t call; /* call arguments */
927 @REPLY
928 obj_handle_t handle; /* APC handle */
929 int self; /* run APC in caller itself? */
930 @END
933 /* Get the result of an APC call */
934 @REQ(get_apc_result)
935 obj_handle_t handle; /* handle to the APC */
936 @REPLY
937 apc_result_t result; /* result of the APC */
938 @END
941 /* Close a handle for the current process */
942 @REQ(close_handle)
943 obj_handle_t handle; /* handle to close */
944 @END
947 /* Set a handle information */
948 @REQ(set_handle_info)
949 obj_handle_t handle; /* handle we are interested in */
950 int flags; /* new handle flags */
951 int mask; /* mask for flags to set */
952 @REPLY
953 int old_flags; /* old flag value */
954 @END
957 /* Duplicate a handle */
958 @REQ(dup_handle)
959 obj_handle_t src_process; /* src process handle */
960 obj_handle_t src_handle; /* src handle to duplicate */
961 obj_handle_t dst_process; /* dst process handle */
962 unsigned int access; /* wanted access rights */
963 unsigned int attributes; /* object attributes */
964 unsigned int options; /* duplicate options (see below) */
965 @REPLY
966 obj_handle_t handle; /* duplicated handle in dst process */
967 int self; /* is the source the current process? */
968 int closed; /* whether the source handle has been closed */
969 @END
970 #define DUP_HANDLE_CLOSE_SOURCE DUPLICATE_CLOSE_SOURCE
971 #define DUP_HANDLE_SAME_ACCESS DUPLICATE_SAME_ACCESS
972 #define DUP_HANDLE_MAKE_GLOBAL 0x80000000 /* Not a Windows flag */
975 /* Open a handle to a process */
976 @REQ(open_process)
977 process_id_t pid; /* process id to open */
978 unsigned int access; /* wanted access rights */
979 unsigned int attributes; /* object attributes */
980 @REPLY
981 obj_handle_t handle; /* handle to the process */
982 @END
985 /* Open a handle to a thread */
986 @REQ(open_thread)
987 thread_id_t tid; /* thread id to open */
988 unsigned int access; /* wanted access rights */
989 unsigned int attributes; /* object attributes */
990 @REPLY
991 obj_handle_t handle; /* handle to the thread */
992 @END
995 /* Wait for handles */
996 @REQ(select)
997 int flags; /* wait flags (see below) */
998 client_ptr_t cookie; /* magic cookie to return to client */
999 timeout_t timeout; /* timeout */
1000 obj_handle_t prev_apc; /* handle to previous APC */
1001 VARARG(result,apc_result); /* result of previous APC */
1002 VARARG(data,select_op); /* operation-specific data */
1003 @REPLY
1004 timeout_t timeout; /* timeout converted to absolute */
1005 apc_call_t call; /* APC call arguments */
1006 obj_handle_t apc_handle; /* handle to next APC */
1007 @END
1008 #define SELECT_ALERTABLE 1
1009 #define SELECT_INTERRUPTIBLE 2
1012 /* Create an event */
1013 @REQ(create_event)
1014 unsigned int access; /* wanted access rights */
1015 unsigned int attributes; /* object attributes */
1016 int manual_reset; /* manual reset event */
1017 int initial_state; /* initial state of the event */
1018 VARARG(objattr,object_attributes); /* object attributes */
1019 @REPLY
1020 obj_handle_t handle; /* handle to the event */
1021 @END
1023 /* Event operation */
1024 @REQ(event_op)
1025 obj_handle_t handle; /* handle to event */
1026 int op; /* event operation (see below) */
1027 @END
1028 enum event_op { PULSE_EVENT, SET_EVENT, RESET_EVENT };
1030 @REQ(query_event)
1031 obj_handle_t handle; /* handle to event */
1032 @REPLY
1033 int manual_reset; /* manual reset event */
1034 int state; /* current state of the event */
1035 @END
1037 /* Open an event */
1038 @REQ(open_event)
1039 unsigned int access; /* wanted access rights */
1040 unsigned int attributes; /* object attributes */
1041 obj_handle_t rootdir; /* root directory */
1042 VARARG(name,unicode_str); /* object name */
1043 @REPLY
1044 obj_handle_t handle; /* handle to the event */
1045 @END
1048 /* Create a keyed event */
1049 @REQ(create_keyed_event)
1050 unsigned int access; /* wanted access rights */
1051 unsigned int attributes; /* object attributes */
1052 VARARG(objattr,object_attributes); /* object attributes */
1053 @REPLY
1054 obj_handle_t handle; /* handle to the event */
1055 @END
1057 /* Open a keyed event */
1058 @REQ(open_keyed_event)
1059 unsigned int access; /* wanted access rights */
1060 unsigned int attributes; /* object attributes */
1061 obj_handle_t rootdir; /* root directory */
1062 VARARG(name,unicode_str); /* object name */
1063 @REPLY
1064 obj_handle_t handle; /* handle to the event */
1065 @END
1068 /* Create a mutex */
1069 @REQ(create_mutex)
1070 unsigned int access; /* wanted access rights */
1071 unsigned int attributes; /* object attributes */
1072 int owned; /* initially owned? */
1073 VARARG(objattr,object_attributes); /* object attributes */
1074 @REPLY
1075 obj_handle_t handle; /* handle to the mutex */
1076 @END
1079 /* Release a mutex */
1080 @REQ(release_mutex)
1081 obj_handle_t handle; /* handle to the mutex */
1082 @REPLY
1083 unsigned int prev_count; /* value of internal counter, before release */
1084 @END
1087 /* Open a mutex */
1088 @REQ(open_mutex)
1089 unsigned int access; /* wanted access rights */
1090 unsigned int attributes; /* object attributes */
1091 obj_handle_t rootdir; /* root directory */
1092 VARARG(name,unicode_str); /* object name */
1093 @REPLY
1094 obj_handle_t handle; /* handle to the mutex */
1095 @END
1098 /* Create a semaphore */
1099 @REQ(create_semaphore)
1100 unsigned int access; /* wanted access rights */
1101 unsigned int attributes; /* object attributes */
1102 unsigned int initial; /* initial count */
1103 unsigned int max; /* maximum count */
1104 VARARG(objattr,object_attributes); /* object attributes */
1105 @REPLY
1106 obj_handle_t handle; /* handle to the semaphore */
1107 @END
1110 /* Release a semaphore */
1111 @REQ(release_semaphore)
1112 obj_handle_t handle; /* handle to the semaphore */
1113 unsigned int count; /* count to add to semaphore */
1114 @REPLY
1115 unsigned int prev_count; /* previous semaphore count */
1116 @END
1118 @REQ(query_semaphore)
1119 obj_handle_t handle; /* handle to the semaphore */
1120 @REPLY
1121 unsigned int current; /* current count */
1122 unsigned int max; /* maximum count */
1123 @END
1125 /* Open a semaphore */
1126 @REQ(open_semaphore)
1127 unsigned int access; /* wanted access rights */
1128 unsigned int attributes; /* object attributes */
1129 obj_handle_t rootdir; /* root directory */
1130 VARARG(name,unicode_str); /* object name */
1131 @REPLY
1132 obj_handle_t handle; /* handle to the semaphore */
1133 @END
1136 /* Create a file */
1137 @REQ(create_file)
1138 unsigned int access; /* wanted access rights */
1139 unsigned int attributes; /* object attributes */
1140 unsigned int sharing; /* sharing flags */
1141 int create; /* file create action */
1142 unsigned int options; /* file options */
1143 unsigned int attrs; /* file attributes for creation */
1144 VARARG(objattr,object_attributes); /* object attributes */
1145 VARARG(filename,string); /* file name */
1146 @REPLY
1147 obj_handle_t handle; /* handle to the file */
1148 @END
1151 /* Open a file object */
1152 @REQ(open_file_object)
1153 unsigned int access; /* wanted access rights */
1154 unsigned int attributes; /* open attributes */
1155 obj_handle_t rootdir; /* root directory */
1156 unsigned int sharing; /* sharing flags */
1157 unsigned int options; /* file options */
1158 VARARG(filename,unicode_str); /* file name */
1159 @REPLY
1160 obj_handle_t handle; /* handle to the file */
1161 @END
1164 /* Allocate a file handle for a Unix fd */
1165 @REQ(alloc_file_handle)
1166 unsigned int access; /* wanted access rights */
1167 unsigned int attributes; /* object attributes */
1168 int fd; /* file descriptor on the client side */
1169 @REPLY
1170 obj_handle_t handle; /* handle to the file */
1171 @END
1174 /* Get the Unix name from a file handle */
1175 @REQ(get_handle_unix_name)
1176 obj_handle_t handle; /* file handle */
1177 @REPLY
1178 data_size_t name_len; /* unix name length */
1179 VARARG(name,string); /* unix name */
1180 @END
1183 /* Get a Unix fd to access a file */
1184 @REQ(get_handle_fd)
1185 obj_handle_t handle; /* handle to the file */
1186 @REPLY
1187 int type; /* file type (see below) */
1188 int cacheable; /* can fd be cached in the client? */
1189 unsigned int access; /* file access rights */
1190 unsigned int options; /* file open options */
1191 @END
1192 enum server_fd_type
1194 FD_TYPE_INVALID, /* invalid file (no associated fd) */
1195 FD_TYPE_FILE, /* regular file */
1196 FD_TYPE_DIR, /* directory */
1197 FD_TYPE_SOCKET, /* socket */
1198 FD_TYPE_SERIAL, /* serial port */
1199 FD_TYPE_PIPE, /* named pipe */
1200 FD_TYPE_MAILSLOT, /* mailslot */
1201 FD_TYPE_CHAR, /* unspecified char device */
1202 FD_TYPE_DEVICE, /* Windows device file */
1203 FD_TYPE_NB_TYPES
1207 /* Flush a file buffers */
1208 @REQ(flush)
1209 int blocking; /* whether it's a blocking flush */
1210 async_data_t async; /* async I/O parameters */
1211 @REPLY
1212 obj_handle_t event; /* event set when finished */
1213 @END
1216 /* Lock a region of a file */
1217 @REQ(lock_file)
1218 obj_handle_t handle; /* handle to the file */
1219 file_pos_t offset; /* offset of start of lock */
1220 file_pos_t count; /* count of bytes to lock */
1221 int shared; /* shared or exclusive lock? */
1222 int wait; /* do we want to wait? */
1223 @REPLY
1224 obj_handle_t handle; /* handle to wait on */
1225 int overlapped; /* is it an overlapped I/O handle? */
1226 @END
1229 /* Unlock a region of a file */
1230 @REQ(unlock_file)
1231 obj_handle_t handle; /* handle to the file */
1232 file_pos_t offset; /* offset of start of unlock */
1233 file_pos_t count; /* count of bytes to unlock */
1234 @END
1237 /* Create a socket */
1238 @REQ(create_socket)
1239 unsigned int access; /* wanted access rights */
1240 unsigned int attributes; /* object attributes */
1241 int family; /* family, see socket manpage */
1242 int type; /* type, see socket manpage */
1243 int protocol; /* protocol, see socket manpage */
1244 unsigned int flags; /* socket flags */
1245 @REPLY
1246 obj_handle_t handle; /* handle to the new socket */
1247 @END
1250 /* Accept a socket */
1251 @REQ(accept_socket)
1252 obj_handle_t lhandle; /* handle to the listening socket */
1253 unsigned int access; /* wanted access rights */
1254 unsigned int attributes; /* object attributes */
1255 @REPLY
1256 obj_handle_t handle; /* handle to the new socket */
1257 @END
1260 /* Accept into an initialized socket */
1261 @REQ(accept_into_socket)
1262 obj_handle_t lhandle; /* handle to the listening socket */
1263 obj_handle_t ahandle; /* handle to the accepting socket */
1264 @END
1267 /* Set socket event parameters */
1268 @REQ(set_socket_event)
1269 obj_handle_t handle; /* handle to the socket */
1270 unsigned int mask; /* event mask */
1271 obj_handle_t event; /* event object */
1272 user_handle_t window; /* window to send the message to */
1273 unsigned int msg; /* message to send */
1274 @END
1277 /* Get socket event parameters */
1278 @REQ(get_socket_event)
1279 obj_handle_t handle; /* handle to the socket */
1280 int service; /* clear pending? */
1281 obj_handle_t c_event; /* event to clear */
1282 @REPLY
1283 unsigned int mask; /* event mask */
1284 unsigned int pmask; /* pending events */
1285 unsigned int state; /* status bits */
1286 VARARG(errors,ints); /* event errors */
1287 @END
1290 /* Get socket info */
1291 @REQ(get_socket_info)
1292 obj_handle_t handle; /* handle to the socket */
1293 @REPLY
1294 int family; /* family, see socket manpage */
1295 int type; /* type, see socket manpage */
1296 int protocol; /* protocol, see socket manpage */
1297 @END
1300 /* Re-enable pending socket events */
1301 @REQ(enable_socket_event)
1302 obj_handle_t handle; /* handle to the socket */
1303 unsigned int mask; /* events to re-enable */
1304 unsigned int sstate; /* status bits to set */
1305 unsigned int cstate; /* status bits to clear */
1306 @END
1308 @REQ(set_socket_deferred)
1309 obj_handle_t handle; /* handle to the socket */
1310 obj_handle_t deferred; /* handle to the socket for which accept() is deferred */
1311 @END
1313 /* Allocate a console (only used by a console renderer) */
1314 @REQ(alloc_console)
1315 unsigned int access; /* wanted access rights */
1316 unsigned int attributes; /* object attributes */
1317 process_id_t pid; /* pid of process which shall be attached to the console */
1318 int input_fd; /* if pid=-1 (bare console to current process), fd for input */
1319 @REPLY
1320 obj_handle_t handle_in; /* handle to console input */
1321 obj_handle_t event; /* handle to renderer events change notification */
1322 @END
1325 /* Free the console of the current process */
1326 @REQ(free_console)
1327 @END
1330 #define CONSOLE_RENDERER_NONE_EVENT 0x00
1331 #define CONSOLE_RENDERER_TITLE_EVENT 0x01
1332 #define CONSOLE_RENDERER_ACTIVE_SB_EVENT 0x02
1333 #define CONSOLE_RENDERER_SB_RESIZE_EVENT 0x03
1334 #define CONSOLE_RENDERER_UPDATE_EVENT 0x04
1335 #define CONSOLE_RENDERER_CURSOR_POS_EVENT 0x05
1336 #define CONSOLE_RENDERER_CURSOR_GEOM_EVENT 0x06
1337 #define CONSOLE_RENDERER_DISPLAY_EVENT 0x07
1338 #define CONSOLE_RENDERER_EXIT_EVENT 0x08
1339 struct console_renderer_event
1341 short event;
1342 union
1344 struct update
1346 short top;
1347 short bottom;
1348 } update;
1349 struct resize
1351 short width;
1352 short height;
1353 } resize;
1354 struct cursor_pos
1356 short x;
1357 short y;
1358 } cursor_pos;
1359 struct cursor_geom
1361 short visible;
1362 short size;
1363 } cursor_geom;
1364 struct display
1366 short left;
1367 short top;
1368 short width;
1369 short height;
1370 } display;
1371 } u;
1374 /* retrieve console events for the renderer */
1375 @REQ(get_console_renderer_events)
1376 obj_handle_t handle; /* handle to console input events */
1377 @REPLY
1378 VARARG(data,bytes); /* the various console_renderer_events */
1379 @END
1382 /* Open a handle to the process console */
1383 @REQ(open_console)
1384 obj_handle_t from; /* 0 (resp 1) input (resp output) of current process console */
1385 /* otherwise console_in handle to get active screen buffer? */
1386 unsigned int access; /* wanted access rights */
1387 unsigned int attributes; /* object attributes */
1388 int share; /* share mask (only for output handles) */
1389 @REPLY
1390 obj_handle_t handle; /* handle to the console */
1391 @END
1394 /* Get the input queue wait event */
1395 @REQ(get_console_wait_event)
1396 @REPLY
1397 obj_handle_t handle;
1398 @END
1400 /* Get a console mode (input or output) */
1401 @REQ(get_console_mode)
1402 obj_handle_t handle; /* handle to the console */
1403 @REPLY
1404 int mode; /* console mode */
1405 @END
1408 /* Set a console mode (input or output) */
1409 @REQ(set_console_mode)
1410 obj_handle_t handle; /* handle to the console */
1411 int mode; /* console mode */
1412 @END
1415 /* Set info about a console (input only) */
1416 @REQ(set_console_input_info)
1417 obj_handle_t handle; /* handle to console input, or 0 for process' console */
1418 int mask; /* setting mask (see below) */
1419 obj_handle_t active_sb; /* active screen buffer */
1420 int history_mode; /* whether we duplicate lines in history */
1421 int history_size; /* number of lines in history */
1422 int edition_mode; /* index to the edition mode flavors */
1423 int input_cp; /* console input codepage */
1424 int output_cp; /* console output codepage */
1425 user_handle_t win; /* console window if backend supports it */
1426 VARARG(title,unicode_str); /* console title */
1427 @END
1428 #define SET_CONSOLE_INPUT_INFO_ACTIVE_SB 0x01
1429 #define SET_CONSOLE_INPUT_INFO_TITLE 0x02
1430 #define SET_CONSOLE_INPUT_INFO_HISTORY_MODE 0x04
1431 #define SET_CONSOLE_INPUT_INFO_HISTORY_SIZE 0x08
1432 #define SET_CONSOLE_INPUT_INFO_EDITION_MODE 0x10
1433 #define SET_CONSOLE_INPUT_INFO_INPUT_CODEPAGE 0x20
1434 #define SET_CONSOLE_INPUT_INFO_OUTPUT_CODEPAGE 0x40
1435 #define SET_CONSOLE_INPUT_INFO_WIN 0x80
1438 /* Get info about a console (input only) */
1439 @REQ(get_console_input_info)
1440 obj_handle_t handle; /* handle to console input, or 0 for process' console */
1441 @REPLY
1442 int history_mode; /* whether we duplicate lines in history */
1443 int history_size; /* number of lines in history */
1444 int history_index; /* number of used lines in history */
1445 int edition_mode; /* index to the edition mode flavors */
1446 int input_cp; /* console input codepage */
1447 int output_cp; /* console output codepage */
1448 user_handle_t win; /* console window if backend supports it */
1449 VARARG(title,unicode_str); /* console title */
1450 @END
1453 /* appends a string to console's history */
1454 @REQ(append_console_input_history)
1455 obj_handle_t handle; /* handle to console input, or 0 for process' console */
1456 VARARG(line,unicode_str); /* line to add */
1457 @END
1460 /* appends a string to console's history */
1461 @REQ(get_console_input_history)
1462 obj_handle_t handle; /* handle to console input, or 0 for process' console */
1463 int index; /* index to get line from */
1464 @REPLY
1465 int total; /* total length of line in Unicode chars */
1466 VARARG(line,unicode_str); /* line to add */
1467 @END
1470 /* creates a new screen buffer on process' console */
1471 @REQ(create_console_output)
1472 obj_handle_t handle_in; /* handle to console input, or 0 for process' console */
1473 unsigned int access; /* wanted access rights */
1474 unsigned int attributes; /* object attributes */
1475 unsigned int share; /* sharing credentials */
1476 int fd; /* for bare consoles, fd the screen-buffer is attached to */
1477 @REPLY
1478 obj_handle_t handle_out; /* handle to the screen buffer */
1479 @END
1482 /* Set info about a console (output only) */
1483 @REQ(set_console_output_info)
1484 obj_handle_t handle; /* handle to the console */
1485 int mask; /* setting mask (see below) */
1486 short int cursor_size; /* size of cursor (percentage filled) */
1487 short int cursor_visible;/* cursor visibility flag */
1488 short int cursor_x; /* position of cursor (x, y) */
1489 short int cursor_y;
1490 short int width; /* width of the screen buffer */
1491 short int height; /* height of the screen buffer */
1492 short int attr; /* default attribute */
1493 short int win_left; /* window actually displayed by renderer */
1494 short int win_top; /* the rect area is expressed within the */
1495 short int win_right; /* boundaries of the screen buffer */
1496 short int win_bottom;
1497 short int max_width; /* maximum size (width x height) for the window */
1498 short int max_height;
1499 short int font_width; /* font size (width x height) */
1500 short int font_height;
1501 @END
1502 #define SET_CONSOLE_OUTPUT_INFO_CURSOR_GEOM 0x01
1503 #define SET_CONSOLE_OUTPUT_INFO_CURSOR_POS 0x02
1504 #define SET_CONSOLE_OUTPUT_INFO_SIZE 0x04
1505 #define SET_CONSOLE_OUTPUT_INFO_ATTR 0x08
1506 #define SET_CONSOLE_OUTPUT_INFO_DISPLAY_WINDOW 0x10
1507 #define SET_CONSOLE_OUTPUT_INFO_MAX_SIZE 0x20
1508 #define SET_CONSOLE_OUTPUT_INFO_FONT 0x40
1511 /* Get info about a console (output only) */
1512 @REQ(get_console_output_info)
1513 obj_handle_t handle; /* handle to the console */
1514 @REPLY
1515 short int cursor_size; /* size of cursor (percentage filled) */
1516 short int cursor_visible;/* cursor visibility flag */
1517 short int cursor_x; /* position of cursor (x, y) */
1518 short int cursor_y;
1519 short int width; /* width of the screen buffer */
1520 short int height; /* height of the screen buffer */
1521 short int attr; /* default attribute */
1522 short int win_left; /* window actually displayed by renderer */
1523 short int win_top; /* the rect area is expressed within the */
1524 short int win_right; /* boundaries of the screen buffer */
1525 short int win_bottom;
1526 short int max_width; /* maximum size (width x height) for the window */
1527 short int max_height;
1528 short int font_width; /* font size (width x height) */
1529 short int font_height;
1530 @END
1532 /* Add input records to a console input queue */
1533 @REQ(write_console_input)
1534 obj_handle_t handle; /* handle to the console input */
1535 VARARG(rec,input_records); /* input records */
1536 @REPLY
1537 int written; /* number of records written */
1538 @END
1541 /* Fetch input records from a console input queue */
1542 @REQ(read_console_input)
1543 obj_handle_t handle; /* handle to the console input */
1544 int flush; /* flush the retrieved records from the queue? */
1545 @REPLY
1546 int read; /* number of records read */
1547 VARARG(rec,input_records); /* input records */
1548 @END
1551 /* write data (chars and/or attributes) in a screen buffer */
1552 @REQ(write_console_output)
1553 obj_handle_t handle; /* handle to the console output */
1554 int x; /* position where to start writing */
1555 int y;
1556 int mode; /* char info (see below) */
1557 int wrap; /* wrap around at end of line? */
1558 VARARG(data,bytes); /* info to write */
1559 @REPLY
1560 int written; /* number of char infos actually written */
1561 int width; /* width of screen buffer */
1562 int height; /* height of screen buffer */
1563 @END
1564 enum char_info_mode
1566 CHAR_INFO_MODE_TEXT, /* characters only */
1567 CHAR_INFO_MODE_ATTR, /* attributes only */
1568 CHAR_INFO_MODE_TEXTATTR, /* both characters and attributes */
1569 CHAR_INFO_MODE_TEXTSTDATTR /* characters but use standard attributes */
1573 /* fill a screen buffer with constant data (chars and/or attributes) */
1574 @REQ(fill_console_output)
1575 obj_handle_t handle; /* handle to the console output */
1576 int x; /* position where to start writing */
1577 int y;
1578 int mode; /* char info mode */
1579 int count; /* number to write */
1580 int wrap; /* wrap around at end of line? */
1581 char_info_t data; /* data to write */
1582 @REPLY
1583 int written; /* number of char infos actually written */
1584 @END
1587 /* read data (chars and/or attributes) from a screen buffer */
1588 @REQ(read_console_output)
1589 obj_handle_t handle; /* handle to the console output */
1590 int x; /* position (x,y) where to start reading */
1591 int y;
1592 int mode; /* char info mode */
1593 int wrap; /* wrap around at end of line? */
1594 @REPLY
1595 int width; /* width of screen buffer */
1596 int height; /* height of screen buffer */
1597 VARARG(data,bytes);
1598 @END
1601 /* move a rect (of data) in screen buffer content */
1602 @REQ(move_console_output)
1603 obj_handle_t handle; /* handle to the console output */
1604 short int x_src; /* position (x, y) of rect to start moving from */
1605 short int y_src;
1606 short int x_dst; /* position (x, y) of rect to move to */
1607 short int y_dst;
1608 short int w; /* size of the rect (width, height) to move */
1609 short int h;
1610 @END
1613 /* Sends a signal to a process group */
1614 @REQ(send_console_signal)
1615 int signal; /* the signal to send */
1616 process_id_t group_id; /* the group to send the signal to */
1617 @END
1620 /* enable directory change notifications */
1621 @REQ(read_directory_changes)
1622 unsigned int filter; /* notification filter */
1623 int subtree; /* watch the subtree? */
1624 int want_data; /* flag indicating whether change data should be collected */
1625 async_data_t async; /* async I/O parameters */
1626 @END
1629 @REQ(read_change)
1630 obj_handle_t handle;
1631 @REPLY
1632 VARARG(events,filesystem_event); /* collected filesystem events */
1633 @END
1636 /* Create a file mapping */
1637 @REQ(create_mapping)
1638 unsigned int access; /* wanted access rights */
1639 unsigned int attributes; /* object attributes */
1640 unsigned int protect; /* protection flags (see below) */
1641 mem_size_t size; /* mapping size */
1642 obj_handle_t file_handle; /* file handle */
1643 VARARG(objattr,object_attributes); /* object attributes */
1644 @REPLY
1645 obj_handle_t handle; /* handle to the mapping */
1646 @END
1647 /* per-page protection flags */
1648 #define VPROT_READ 0x01
1649 #define VPROT_WRITE 0x02
1650 #define VPROT_EXEC 0x04
1651 #define VPROT_WRITECOPY 0x08
1652 #define VPROT_GUARD 0x10
1653 #define VPROT_NOCACHE 0x20
1654 #define VPROT_COMMITTED 0x40
1655 #define VPROT_WRITEWATCH 0x80
1656 /* per-mapping protection flags */
1657 #define VPROT_IMAGE 0x0100 /* mapping for an exe image */
1658 #define VPROT_SYSTEM 0x0200 /* system view (underlying mmap not under our control) */
1659 #define VPROT_VALLOC 0x0400 /* allocated by VirtualAlloc */
1660 #define VPROT_NOEXEC 0x0800 /* don't force exec permission */
1663 /* Open a mapping */
1664 @REQ(open_mapping)
1665 unsigned int access; /* wanted access rights */
1666 unsigned int attributes; /* object attributes */
1667 obj_handle_t rootdir; /* root directory */
1668 VARARG(name,unicode_str); /* object name */
1669 @REPLY
1670 obj_handle_t handle; /* handle to the mapping */
1671 @END
1674 /* Get information about a file mapping */
1675 @REQ(get_mapping_info)
1676 obj_handle_t handle; /* handle to the mapping */
1677 unsigned int access; /* wanted access rights */
1678 @REPLY
1679 mem_size_t size; /* mapping size */
1680 int protect; /* protection flags */
1681 int header_size; /* header size (for VPROT_IMAGE mapping) */
1682 client_ptr_t base; /* default base addr (for VPROT_IMAGE mapping) */
1683 obj_handle_t mapping; /* duplicate mapping handle unless removable */
1684 obj_handle_t shared_file; /* shared mapping file handle */
1685 @END
1688 /* Get a range of committed pages in a file mapping */
1689 @REQ(get_mapping_committed_range)
1690 obj_handle_t handle; /* handle to the mapping */
1691 file_pos_t offset; /* starting offset (page-aligned, in bytes) */
1692 @REPLY
1693 mem_size_t size; /* size of range starting at offset (page-aligned, in bytes) */
1694 int committed; /* whether it is a committed range */
1695 @END
1698 /* Add a range to the committed pages in a file mapping */
1699 @REQ(add_mapping_committed_range)
1700 obj_handle_t handle; /* handle to the mapping */
1701 file_pos_t offset; /* starting offset (page-aligned, in bytes) */
1702 mem_size_t size; /* size to set (page-aligned, in bytes) or 0 if only retrieving */
1703 @END
1706 #define SNAP_PROCESS 0x00000001
1707 #define SNAP_THREAD 0x00000002
1708 /* Create a snapshot */
1709 @REQ(create_snapshot)
1710 unsigned int attributes; /* object attributes */
1711 unsigned int flags; /* snapshot flags (SNAP_*) */
1712 @REPLY
1713 obj_handle_t handle; /* handle to the snapshot */
1714 @END
1717 /* Get the next process from a snapshot */
1718 @REQ(next_process)
1719 obj_handle_t handle; /* handle to the snapshot */
1720 int reset; /* reset snapshot position? */
1721 @REPLY
1722 int count; /* process usage count */
1723 process_id_t pid; /* process id */
1724 process_id_t ppid; /* parent process id */
1725 int threads; /* number of threads */
1726 int priority; /* process priority */
1727 int handles; /* number of handles */
1728 int unix_pid; /* Unix pid */
1729 VARARG(filename,unicode_str); /* file name of main exe */
1730 @END
1733 /* Get the next thread from a snapshot */
1734 @REQ(next_thread)
1735 obj_handle_t handle; /* handle to the snapshot */
1736 int reset; /* reset snapshot position? */
1737 @REPLY
1738 int count; /* thread usage count */
1739 process_id_t pid; /* process id */
1740 thread_id_t tid; /* thread id */
1741 int base_pri; /* base priority */
1742 int delta_pri; /* delta priority */
1743 @END
1746 /* Wait for a debug event */
1747 @REQ(wait_debug_event)
1748 int get_handle; /* should we alloc a handle for waiting? */
1749 @REPLY
1750 process_id_t pid; /* process id */
1751 thread_id_t tid; /* thread id */
1752 obj_handle_t wait; /* wait handle if no event ready */
1753 VARARG(event,debug_event); /* debug event data */
1754 @END
1757 /* Queue an exception event */
1758 @REQ(queue_exception_event)
1759 int first; /* first chance exception? */
1760 unsigned int code; /* exception code */
1761 unsigned int flags; /* exception flags */
1762 client_ptr_t record; /* exception record */
1763 client_ptr_t address; /* exception address */
1764 data_size_t len; /* size of parameters */
1765 VARARG(params,uints64,len);/* exception parameters */
1766 VARARG(context,context); /* thread context */
1767 @REPLY
1768 obj_handle_t handle; /* handle to the queued event */
1769 @END
1772 /* Retrieve the status of an exception event */
1773 @REQ(get_exception_status)
1774 obj_handle_t handle; /* handle to the queued event */
1775 @REPLY
1776 VARARG(context,context); /* modified thread context */
1777 @END
1780 /* Continue a debug event */
1781 @REQ(continue_debug_event)
1782 process_id_t pid; /* process id to continue */
1783 thread_id_t tid; /* thread id to continue */
1784 int status; /* continuation status */
1785 @END
1788 /* Start/stop debugging an existing process */
1789 @REQ(debug_process)
1790 process_id_t pid; /* id of the process to debug */
1791 int attach; /* 1=attaching / 0=detaching from the process */
1792 @END
1795 /* Simulate a breakpoint in a process */
1796 @REQ(debug_break)
1797 obj_handle_t handle; /* process handle */
1798 @REPLY
1799 int self; /* was it the caller itself? */
1800 @END
1803 /* Set debugger kill on exit flag */
1804 @REQ(set_debugger_kill_on_exit)
1805 int kill_on_exit; /* 0=detach/1=kill debuggee when debugger dies */
1806 @END
1809 /* Read data from a process address space */
1810 @REQ(read_process_memory)
1811 obj_handle_t handle; /* process handle */
1812 client_ptr_t addr; /* addr to read from */
1813 @REPLY
1814 VARARG(data,bytes); /* result data */
1815 @END
1818 /* Write data to a process address space */
1819 @REQ(write_process_memory)
1820 obj_handle_t handle; /* process handle */
1821 client_ptr_t addr; /* addr to write to */
1822 VARARG(data,bytes); /* data to write */
1823 @END
1826 /* Create a registry key */
1827 @REQ(create_key)
1828 obj_handle_t parent; /* handle to the parent key */
1829 unsigned int access; /* desired access rights */
1830 unsigned int attributes; /* object attributes */
1831 unsigned int options; /* creation options */
1832 data_size_t namelen; /* length of key name in bytes */
1833 VARARG(name,unicode_str,namelen); /* key name */
1834 VARARG(class,unicode_str); /* class name */
1835 @REPLY
1836 obj_handle_t hkey; /* handle to the created key */
1837 int created; /* has it been newly created? */
1838 @END
1840 /* Open a registry key */
1841 @REQ(open_key)
1842 obj_handle_t parent; /* handle to the parent key */
1843 unsigned int access; /* desired access rights */
1844 unsigned int attributes; /* object attributes */
1845 VARARG(name,unicode_str); /* key name */
1846 @REPLY
1847 obj_handle_t hkey; /* handle to the open key */
1848 @END
1851 /* Delete a registry key */
1852 @REQ(delete_key)
1853 obj_handle_t hkey; /* handle to the key */
1854 @END
1857 /* Flush a registry key */
1858 @REQ(flush_key)
1859 obj_handle_t hkey; /* handle to the key */
1860 @END
1863 /* Enumerate registry subkeys */
1864 @REQ(enum_key)
1865 obj_handle_t hkey; /* handle to registry key */
1866 int index; /* index of subkey (or -1 for current key) */
1867 int info_class; /* requested information class */
1868 @REPLY
1869 int subkeys; /* number of subkeys */
1870 int max_subkey; /* longest subkey name */
1871 int max_class; /* longest class name */
1872 int values; /* number of values */
1873 int max_value; /* longest value name */
1874 int max_data; /* longest value data */
1875 timeout_t modif; /* last modification time */
1876 data_size_t total; /* total length needed for full name and class */
1877 data_size_t namelen; /* length of key name in bytes */
1878 VARARG(name,unicode_str,namelen); /* key name */
1879 VARARG(class,unicode_str); /* class name */
1880 @END
1883 /* Set a value of a registry key */
1884 @REQ(set_key_value)
1885 obj_handle_t hkey; /* handle to registry key */
1886 int type; /* value type */
1887 data_size_t namelen; /* length of value name in bytes */
1888 VARARG(name,unicode_str,namelen); /* value name */
1889 VARARG(data,bytes); /* value data */
1890 @END
1893 /* Retrieve the value of a registry key */
1894 @REQ(get_key_value)
1895 obj_handle_t hkey; /* handle to registry key */
1896 VARARG(name,unicode_str); /* value name */
1897 @REPLY
1898 int type; /* value type */
1899 data_size_t total; /* total length needed for data */
1900 VARARG(data,bytes); /* value data */
1901 @END
1904 /* Enumerate a value of a registry key */
1905 @REQ(enum_key_value)
1906 obj_handle_t hkey; /* handle to registry key */
1907 int index; /* value index */
1908 int info_class; /* requested information class */
1909 @REPLY
1910 int type; /* value type */
1911 data_size_t total; /* total length needed for full name and data */
1912 data_size_t namelen; /* length of value name in bytes */
1913 VARARG(name,unicode_str,namelen); /* value name */
1914 VARARG(data,bytes); /* value data */
1915 @END
1918 /* Delete a value of a registry key */
1919 @REQ(delete_key_value)
1920 obj_handle_t hkey; /* handle to registry key */
1921 VARARG(name,unicode_str); /* value name */
1922 @END
1925 /* Load a registry branch from a file */
1926 @REQ(load_registry)
1927 obj_handle_t hkey; /* root key to load to */
1928 obj_handle_t file; /* file to load from */
1929 VARARG(name,unicode_str); /* subkey name */
1930 @END
1933 /* UnLoad a registry branch from a file */
1934 @REQ(unload_registry)
1935 obj_handle_t hkey; /* root key to unload to */
1936 @END
1939 /* Save a registry branch to a file */
1940 @REQ(save_registry)
1941 obj_handle_t hkey; /* key to save */
1942 obj_handle_t file; /* file to save to */
1943 @END
1946 /* Add a registry key change notification */
1947 @REQ(set_registry_notification)
1948 obj_handle_t hkey; /* key to watch for changes */
1949 obj_handle_t event; /* event to set */
1950 int subtree; /* should we watch the whole subtree? */
1951 unsigned int filter; /* things to watch */
1952 @END
1955 /* Create a waitable timer */
1956 @REQ(create_timer)
1957 unsigned int access; /* wanted access rights */
1958 unsigned int attributes; /* object attributes */
1959 obj_handle_t rootdir; /* root directory */
1960 int manual; /* manual reset */
1961 VARARG(name,unicode_str); /* object name */
1962 @REPLY
1963 obj_handle_t handle; /* handle to the timer */
1964 @END
1967 /* Open a waitable timer */
1968 @REQ(open_timer)
1969 unsigned int access; /* wanted access rights */
1970 unsigned int attributes; /* object attributes */
1971 obj_handle_t rootdir; /* root directory */
1972 VARARG(name,unicode_str); /* object name */
1973 @REPLY
1974 obj_handle_t handle; /* handle to the timer */
1975 @END
1977 /* Set a waitable timer */
1978 @REQ(set_timer)
1979 obj_handle_t handle; /* handle to the timer */
1980 timeout_t expire; /* next expiration absolute time */
1981 client_ptr_t callback; /* callback function */
1982 client_ptr_t arg; /* callback argument */
1983 int period; /* timer period in ms */
1984 @REPLY
1985 int signaled; /* was the timer signaled before this call ? */
1986 @END
1988 /* Cancel a waitable timer */
1989 @REQ(cancel_timer)
1990 obj_handle_t handle; /* handle to the timer */
1991 @REPLY
1992 int signaled; /* was the timer signaled before this calltime ? */
1993 @END
1995 /* Get information on a waitable timer */
1996 @REQ(get_timer_info)
1997 obj_handle_t handle; /* handle to the timer */
1998 @REPLY
1999 timeout_t when; /* absolute time when the timer next expires */
2000 int signaled; /* is the timer signaled? */
2001 @END
2004 /* Retrieve the current context of a thread */
2005 @REQ(get_thread_context)
2006 obj_handle_t handle; /* thread handle */
2007 unsigned int flags; /* context flags */
2008 int suspend; /* suspend the thread if needed */
2009 @REPLY
2010 int self; /* was it a handle to the current thread? */
2011 VARARG(context,context); /* thread context */
2012 @END
2015 /* Set the current context of a thread */
2016 @REQ(set_thread_context)
2017 obj_handle_t handle; /* thread handle */
2018 int suspend; /* suspend the thread if needed */
2019 VARARG(context,context); /* thread context */
2020 @REPLY
2021 int self; /* was it a handle to the current thread? */
2022 @END
2025 /* Fetch a selector entry for a thread */
2026 @REQ(get_selector_entry)
2027 obj_handle_t handle; /* thread handle */
2028 int entry; /* LDT entry */
2029 @REPLY
2030 unsigned int base; /* selector base */
2031 unsigned int limit; /* selector limit */
2032 unsigned char flags; /* selector flags */
2033 @END
2036 /* Add an atom */
2037 @REQ(add_atom)
2038 obj_handle_t table; /* which table to add atom to */
2039 VARARG(name,unicode_str); /* atom name */
2040 @REPLY
2041 atom_t atom; /* resulting atom */
2042 @END
2045 /* Delete an atom */
2046 @REQ(delete_atom)
2047 obj_handle_t table; /* which table to delete atom from */
2048 atom_t atom; /* atom handle */
2049 @END
2052 /* Find an atom */
2053 @REQ(find_atom)
2054 obj_handle_t table; /* which table to find atom from */
2055 VARARG(name,unicode_str); /* atom name */
2056 @REPLY
2057 atom_t atom; /* atom handle */
2058 @END
2061 /* Get information about an atom */
2062 @REQ(get_atom_information)
2063 obj_handle_t table; /* which table to find atom from */
2064 atom_t atom; /* atom handle */
2065 @REPLY
2066 int count; /* atom lock count */
2067 int pinned; /* whether the atom has been pinned */
2068 data_size_t total; /* actual length of atom name */
2069 VARARG(name,unicode_str); /* atom name */
2070 @END
2073 /* Set information about an atom */
2074 @REQ(set_atom_information)
2075 obj_handle_t table; /* which table to find atom from */
2076 atom_t atom; /* atom handle */
2077 int pinned; /* whether to bump atom information */
2078 @END
2081 /* Empty an atom table */
2082 @REQ(empty_atom_table)
2083 obj_handle_t table; /* which table to find atom from */
2084 int if_pinned; /* whether to delete pinned atoms */
2085 @END
2088 /* Init an atom table */
2089 @REQ(init_atom_table)
2090 int entries; /* number of entries (only for local) */
2091 @REPLY
2092 obj_handle_t table; /* handle to the atom table */
2093 @END
2096 /* Get the message queue of the current thread */
2097 @REQ(get_msg_queue)
2098 @REPLY
2099 obj_handle_t handle; /* handle to the queue */
2100 @END
2103 /* Set the file descriptor associated to the current thread queue */
2104 @REQ(set_queue_fd)
2105 obj_handle_t handle; /* handle to the file descriptor */
2106 @END
2109 /* Set the current message queue wakeup mask */
2110 @REQ(set_queue_mask)
2111 unsigned int wake_mask; /* wakeup bits mask */
2112 unsigned int changed_mask; /* changed bits mask */
2113 int skip_wait; /* will we skip waiting if signaled? */
2114 @REPLY
2115 unsigned int wake_bits; /* current wake bits */
2116 unsigned int changed_bits; /* current changed bits */
2117 @END
2120 /* Get the current message queue status */
2121 @REQ(get_queue_status)
2122 unsigned int clear_bits; /* should we clear the change bits? */
2123 @REPLY
2124 unsigned int wake_bits; /* wake bits */
2125 unsigned int changed_bits; /* changed bits since last time */
2126 @END
2129 /* Retrieve the process idle event */
2130 @REQ(get_process_idle_event)
2131 obj_handle_t handle; /* process handle */
2132 @REPLY
2133 obj_handle_t event; /* handle to idle event */
2134 @END
2137 /* Send a message to a thread queue */
2138 @REQ(send_message)
2139 thread_id_t id; /* thread id */
2140 int type; /* message type (see below) */
2141 int flags; /* message flags (see below) */
2142 user_handle_t win; /* window handle */
2143 unsigned int msg; /* message code */
2144 lparam_t wparam; /* parameters */
2145 lparam_t lparam; /* parameters */
2146 timeout_t timeout; /* timeout for reply */
2147 VARARG(data,message_data); /* message data for sent messages */
2148 @END
2150 @REQ(post_quit_message)
2151 int exit_code; /* exit code to return */
2152 @END
2154 enum message_type
2156 MSG_ASCII, /* Ascii message (from SendMessageA) */
2157 MSG_UNICODE, /* Unicode message (from SendMessageW) */
2158 MSG_NOTIFY, /* notify message (from SendNotifyMessageW), always Unicode */
2159 MSG_CALLBACK, /* callback message (from SendMessageCallbackW), always Unicode */
2160 MSG_CALLBACK_RESULT,/* result of a callback message */
2161 MSG_OTHER_PROCESS, /* sent from other process, may include vararg data, always Unicode */
2162 MSG_POSTED, /* posted message (from PostMessageW), always Unicode */
2163 MSG_HARDWARE, /* hardware message */
2164 MSG_WINEVENT, /* winevent message */
2165 MSG_HOOK_LL /* low-level hardware hook */
2167 #define SEND_MSG_ABORT_IF_HUNG 0x01
2170 /* Send a hardware message to a thread queue */
2171 @REQ(send_hardware_message)
2172 user_handle_t win; /* window handle */
2173 hw_input_t input; /* input data */
2174 unsigned int flags; /* flags (see below) */
2175 @REPLY
2176 int wait; /* do we need to wait for a reply? */
2177 int prev_x; /* previous cursor position */
2178 int prev_y;
2179 int new_x; /* new cursor position */
2180 int new_y;
2181 VARARG(keystate,bytes); /* global state array for all the keys */
2182 @END
2183 #define SEND_HWMSG_INJECTED 0x01
2186 /* Get a message from the current queue */
2187 @REQ(get_message)
2188 unsigned int flags; /* PM_* flags */
2189 user_handle_t get_win; /* window handle to get */
2190 unsigned int get_first; /* first message code to get */
2191 unsigned int get_last; /* last message code to get */
2192 unsigned int hw_id; /* id of the previous hardware message (or 0) */
2193 unsigned int wake_mask; /* wakeup bits mask */
2194 unsigned int changed_mask; /* changed bits mask */
2195 @REPLY
2196 user_handle_t win; /* window handle */
2197 unsigned int msg; /* message code */
2198 lparam_t wparam; /* parameters */
2199 lparam_t lparam; /* parameters */
2200 int type; /* message type */
2201 int x; /* message x position */
2202 int y; /* message y position */
2203 unsigned int time; /* message time */
2204 unsigned int active_hooks; /* active hooks bitmap */
2205 data_size_t total; /* total size of extra data */
2206 VARARG(data,message_data); /* message data for sent messages */
2207 @END
2210 /* Reply to a sent message */
2211 @REQ(reply_message)
2212 int remove; /* should we remove the message? */
2213 lparam_t result; /* message result */
2214 VARARG(data,bytes); /* message data for sent messages */
2215 @END
2218 /* Accept the current hardware message */
2219 @REQ(accept_hardware_message)
2220 unsigned int hw_id; /* id of the hardware message */
2221 int remove; /* should we remove the message? */
2222 @END
2225 /* Retrieve the reply for the last message sent */
2226 @REQ(get_message_reply)
2227 int cancel; /* cancel message if not ready? */
2228 @REPLY
2229 lparam_t result; /* message result */
2230 VARARG(data,bytes); /* message data for sent messages */
2231 @END
2234 /* Set a window timer */
2235 @REQ(set_win_timer)
2236 user_handle_t win; /* window handle */
2237 unsigned int msg; /* message to post */
2238 unsigned int rate; /* timer rate in ms */
2239 lparam_t id; /* timer id */
2240 lparam_t lparam; /* message lparam (callback proc) */
2241 @REPLY
2242 lparam_t id; /* timer id */
2243 @END
2246 /* Kill a window timer */
2247 @REQ(kill_win_timer)
2248 user_handle_t win; /* window handle */
2249 lparam_t id; /* timer id */
2250 unsigned int msg; /* message to post */
2251 @END
2254 /* check if the thread owning the window is hung */
2255 @REQ(is_window_hung)
2256 user_handle_t win; /* window handle */
2257 @REPLY
2258 int is_hung;
2259 @END
2262 /* Retrieve info about a serial port */
2263 @REQ(get_serial_info)
2264 obj_handle_t handle; /* handle to comm port */
2265 int flags;
2266 @REPLY
2267 unsigned int readinterval;
2268 unsigned int readconst;
2269 unsigned int readmult;
2270 unsigned int writeconst;
2271 unsigned int writemult;
2272 unsigned int eventmask;
2273 unsigned int cookie;
2274 unsigned int pending_write;
2275 @END
2278 /* Set info about a serial port */
2279 @REQ(set_serial_info)
2280 obj_handle_t handle; /* handle to comm port */
2281 int flags; /* bitmask to set values (see below) */
2282 unsigned int readinterval;
2283 unsigned int readconst;
2284 unsigned int readmult;
2285 unsigned int writeconst;
2286 unsigned int writemult;
2287 unsigned int eventmask;
2288 @END
2289 #define SERIALINFO_SET_TIMEOUTS 0x01
2290 #define SERIALINFO_SET_MASK 0x02
2291 #define SERIALINFO_PENDING_WRITE 0x04
2292 #define SERIALINFO_PENDING_WAIT 0x08
2295 /* Create an async I/O */
2296 @REQ(register_async)
2297 int type; /* type of queue to look after */
2298 async_data_t async; /* async I/O parameters */
2299 int count; /* count - usually # of bytes to be read/written */
2300 @END
2301 #define ASYNC_TYPE_READ 0x01
2302 #define ASYNC_TYPE_WRITE 0x02
2303 #define ASYNC_TYPE_WAIT 0x03
2306 /* Cancel all async op on a fd */
2307 @REQ(cancel_async)
2308 obj_handle_t handle; /* handle to comm port, socket or file */
2309 client_ptr_t iosb; /* I/O status block (NULL=all) */
2310 int only_thread; /* cancel matching this thread */
2311 @END
2314 /* Perform a read on a file object */
2315 @REQ(read)
2316 int blocking; /* whether it's a blocking read */
2317 async_data_t async; /* async I/O parameters */
2318 file_pos_t pos; /* read position */
2319 @REPLY
2320 obj_handle_t wait; /* handle to wait on for blocking read */
2321 unsigned int options; /* device open options */
2322 VARARG(data,bytes); /* read data */
2323 @END
2326 /* Perform a write on a file object */
2327 @REQ(write)
2328 int blocking; /* whether it's a blocking write */
2329 async_data_t async; /* async I/O parameters */
2330 file_pos_t pos; /* write position */
2331 VARARG(data,bytes); /* write data */
2332 @REPLY
2333 obj_handle_t wait; /* handle to wait on for blocking write */
2334 unsigned int options; /* device open options */
2335 data_size_t size; /* size written */
2336 @END
2339 /* Perform an ioctl on a file */
2340 @REQ(ioctl)
2341 ioctl_code_t code; /* ioctl code */
2342 async_data_t async; /* async I/O parameters */
2343 int blocking; /* whether it's a blocking ioctl */
2344 VARARG(in_data,bytes); /* ioctl input data */
2345 @REPLY
2346 obj_handle_t wait; /* handle to wait on for blocking ioctl */
2347 unsigned int options; /* device open options */
2348 VARARG(out_data,bytes); /* ioctl output data */
2349 @END
2352 /* Store results of an async irp */
2353 @REQ(set_irp_result)
2354 obj_handle_t handle; /* handle to the irp */
2355 unsigned int status; /* status of the irp */
2356 data_size_t size; /* result size (input or output depending on the operation) */
2357 client_ptr_t file_ptr; /* opaque pointer to the file object */
2358 VARARG(data,bytes); /* output data of the irp */
2359 @END
2362 /* Retrieve results of an async irp */
2363 @REQ(get_irp_result)
2364 obj_handle_t handle; /* handle to the device */
2365 client_ptr_t user_arg; /* user arg used to identify the request */
2366 @REPLY
2367 data_size_t size; /* result size (input or output depending on the operation) */
2368 VARARG(out_data,bytes); /* irp output data */
2369 @END
2372 /* Create a named pipe */
2373 @REQ(create_named_pipe)
2374 unsigned int access;
2375 unsigned int attributes; /* object attributes */
2376 unsigned int options;
2377 unsigned int sharing;
2378 unsigned int maxinstances;
2379 unsigned int outsize;
2380 unsigned int insize;
2381 timeout_t timeout;
2382 unsigned int flags;
2383 VARARG(objattr,object_attributes); /* object attributes */
2384 @REPLY
2385 obj_handle_t handle; /* handle to the pipe */
2386 @END
2388 /* flags in create_named_pipe and get_named_pipe_info */
2389 #define NAMED_PIPE_MESSAGE_STREAM_WRITE 0x0001
2390 #define NAMED_PIPE_MESSAGE_STREAM_READ 0x0002
2391 #define NAMED_PIPE_NONBLOCKING_MODE 0x0004
2392 #define NAMED_PIPE_SERVER_END 0x8000
2394 /* Get named pipe information by handle */
2395 @REQ(get_named_pipe_info)
2396 obj_handle_t handle;
2397 @REPLY
2398 unsigned int flags;
2399 unsigned int sharing;
2400 unsigned int maxinstances;
2401 unsigned int instances;
2402 unsigned int outsize;
2403 unsigned int insize;
2404 @END
2406 /* Set named pipe information by handle */
2407 @REQ(set_named_pipe_info)
2408 obj_handle_t handle;
2409 unsigned int flags;
2410 @END
2412 /* Create a window */
2413 @REQ(create_window)
2414 user_handle_t parent; /* parent window */
2415 user_handle_t owner; /* owner window */
2416 atom_t atom; /* class atom */
2417 mod_handle_t instance; /* module instance */
2418 VARARG(class,unicode_str); /* class name */
2419 @REPLY
2420 user_handle_t handle; /* created window */
2421 user_handle_t parent; /* full handle of parent */
2422 user_handle_t owner; /* full handle of owner */
2423 int extra; /* number of extra bytes */
2424 client_ptr_t class_ptr; /* pointer to class in client address space */
2425 @END
2428 /* Destroy a window */
2429 @REQ(destroy_window)
2430 user_handle_t handle; /* handle to the window */
2431 @END
2434 /* Retrieve the desktop window for the current thread */
2435 @REQ(get_desktop_window)
2436 int force; /* force creation if it doesn't exist */
2437 @REPLY
2438 user_handle_t top_window; /* handle to the desktop window */
2439 user_handle_t msg_window; /* handle to the top-level HWND_MESSAGE parent */
2440 @END
2443 /* Set a window owner */
2444 @REQ(set_window_owner)
2445 user_handle_t handle; /* handle to the window */
2446 user_handle_t owner; /* new owner */
2447 @REPLY
2448 user_handle_t full_owner; /* full handle of new owner */
2449 user_handle_t prev_owner; /* full handle of previous owner */
2450 @END
2453 /* Get information from a window handle */
2454 @REQ(get_window_info)
2455 user_handle_t handle; /* handle to the window */
2456 @REPLY
2457 user_handle_t full_handle; /* full 32-bit handle */
2458 user_handle_t last_active; /* last active popup */
2459 process_id_t pid; /* process owning the window */
2460 thread_id_t tid; /* thread owning the window */
2461 atom_t atom; /* class atom */
2462 int is_unicode; /* ANSI or unicode */
2463 @END
2466 /* Set some information in a window */
2467 @REQ(set_window_info)
2468 unsigned short flags; /* flags for fields to set (see below) */
2469 short int is_unicode; /* ANSI or unicode */
2470 user_handle_t handle; /* handle to the window */
2471 unsigned int style; /* window style */
2472 unsigned int ex_style; /* window extended style */
2473 unsigned int id; /* window id */
2474 mod_handle_t instance; /* creator instance */
2475 lparam_t user_data; /* user-specific data */
2476 int extra_offset; /* offset to set in extra bytes */
2477 data_size_t extra_size; /* size to set in extra bytes */
2478 lparam_t extra_value; /* value to set in extra bytes */
2479 @REPLY
2480 unsigned int old_style; /* old window style */
2481 unsigned int old_ex_style; /* old window extended style */
2482 mod_handle_t old_instance; /* old creator instance */
2483 lparam_t old_user_data; /* old user-specific data */
2484 lparam_t old_extra_value; /* old value in extra bytes */
2485 unsigned int old_id; /* old window id */
2486 @END
2487 #define SET_WIN_STYLE 0x01
2488 #define SET_WIN_EXSTYLE 0x02
2489 #define SET_WIN_ID 0x04
2490 #define SET_WIN_INSTANCE 0x08
2491 #define SET_WIN_USERDATA 0x10
2492 #define SET_WIN_EXTRA 0x20
2493 #define SET_WIN_UNICODE 0x40
2496 /* Set the parent of a window */
2497 @REQ(set_parent)
2498 user_handle_t handle; /* handle to the window */
2499 user_handle_t parent; /* handle to the parent */
2500 @REPLY
2501 user_handle_t old_parent; /* old parent window */
2502 user_handle_t full_parent; /* full handle of new parent */
2503 @END
2506 /* Get a list of the window parents, up to the root of the tree */
2507 @REQ(get_window_parents)
2508 user_handle_t handle; /* handle to the window */
2509 @REPLY
2510 int count; /* total count of parents */
2511 VARARG(parents,user_handles); /* parent handles */
2512 @END
2515 /* Get a list of the window children */
2516 @REQ(get_window_children)
2517 obj_handle_t desktop; /* handle to desktop */
2518 user_handle_t parent; /* parent window */
2519 atom_t atom; /* class atom for the listed children */
2520 thread_id_t tid; /* thread owning the listed children */
2521 VARARG(class,unicode_str); /* class name */
2522 @REPLY
2523 int count; /* total count of children */
2524 VARARG(children,user_handles); /* children handles */
2525 @END
2528 /* Get a list of the window children that contain a given point */
2529 @REQ(get_window_children_from_point)
2530 user_handle_t parent; /* parent window */
2531 int x; /* point in parent coordinates */
2532 int y;
2533 @REPLY
2534 int count; /* total count of children */
2535 VARARG(children,user_handles); /* children handles */
2536 @END
2539 /* Get window tree information from a window handle */
2540 @REQ(get_window_tree)
2541 user_handle_t handle; /* handle to the window */
2542 @REPLY
2543 user_handle_t parent; /* parent window */
2544 user_handle_t owner; /* owner window */
2545 user_handle_t next_sibling; /* next sibling in Z-order */
2546 user_handle_t prev_sibling; /* prev sibling in Z-order */
2547 user_handle_t first_sibling; /* first sibling in Z-order */
2548 user_handle_t last_sibling; /* last sibling in Z-order */
2549 user_handle_t first_child; /* first child */
2550 user_handle_t last_child; /* last child */
2551 @END
2553 /* Set the position and Z order of a window */
2554 @REQ(set_window_pos)
2555 unsigned short swp_flags; /* SWP_* flags */
2556 unsigned short paint_flags; /* paint flags (see below) */
2557 user_handle_t handle; /* handle to the window */
2558 user_handle_t previous; /* previous window in Z order */
2559 rectangle_t window; /* window rectangle (in parent coords) */
2560 rectangle_t client; /* client rectangle (in parent coords) */
2561 VARARG(valid,rectangles); /* valid rectangles from WM_NCCALCSIZE (in parent coords) */
2562 @REPLY
2563 unsigned int new_style; /* new window style */
2564 unsigned int new_ex_style; /* new window extended style */
2565 user_handle_t surface_win; /* window that needs a surface update */
2566 @END
2567 #define SET_WINPOS_PAINT_SURFACE 0x01 /* window has a paintable surface */
2568 #define SET_WINPOS_PIXEL_FORMAT 0x02 /* window has a custom pixel format */
2570 /* Get the window and client rectangles of a window */
2571 @REQ(get_window_rectangles)
2572 user_handle_t handle; /* handle to the window */
2573 int relative; /* coords relative to (see below) */
2574 @REPLY
2575 rectangle_t window; /* window rectangle */
2576 rectangle_t visible; /* visible part of the window rectangle */
2577 rectangle_t client; /* client rectangle */
2578 @END
2579 enum coords_relative
2581 COORDS_CLIENT, /* relative to client area */
2582 COORDS_WINDOW, /* relative to whole window area */
2583 COORDS_PARENT, /* relative to parent's client area */
2584 COORDS_SCREEN /* relative to screen origin */
2588 /* Get the window text */
2589 @REQ(get_window_text)
2590 user_handle_t handle; /* handle to the window */
2591 @REPLY
2592 VARARG(text,unicode_str); /* window text */
2593 @END
2596 /* Set the window text */
2597 @REQ(set_window_text)
2598 user_handle_t handle; /* handle to the window */
2599 VARARG(text,unicode_str); /* window text */
2600 @END
2603 /* Get the coordinates offset between two windows */
2604 @REQ(get_windows_offset)
2605 user_handle_t from; /* handle to the first window */
2606 user_handle_t to; /* handle to the second window */
2607 @REPLY
2608 int x; /* x coordinate offset */
2609 int y; /* y coordinate offset */
2610 int mirror; /* whether to mirror the x coordinate */
2611 @END
2614 /* Get the visible region of a window */
2615 @REQ(get_visible_region)
2616 user_handle_t window; /* handle to the window */
2617 unsigned int flags; /* DCX flags */
2618 @REPLY
2619 user_handle_t top_win; /* top window to clip against */
2620 rectangle_t top_rect; /* top window visible rect with screen coords */
2621 rectangle_t win_rect; /* window rect in screen coords */
2622 unsigned int paint_flags; /* paint flags (from SET_WINPOS_* flags) */
2623 data_size_t total_size; /* total size of the resulting region */
2624 VARARG(region,rectangles); /* list of rectangles for the region (in screen coords) */
2625 @END
2628 /* Get the visible surface region of a window */
2629 @REQ(get_surface_region)
2630 user_handle_t window; /* handle to the window */
2631 @REPLY
2632 rectangle_t visible_rect; /* window visible rect in screen coords */
2633 data_size_t total_size; /* total size of the resulting region */
2634 VARARG(region,rectangles); /* list of rectangles for the region (in screen coords) */
2635 @END
2638 /* Get the window region */
2639 @REQ(get_window_region)
2640 user_handle_t window; /* handle to the window */
2641 @REPLY
2642 data_size_t total_size; /* total size of the resulting region */
2643 VARARG(region,rectangles); /* list of rectangles for the region (in window coords) */
2644 @END
2647 /* Set the window region */
2648 @REQ(set_window_region)
2649 user_handle_t window; /* handle to the window */
2650 int redraw; /* redraw the window? */
2651 VARARG(region,rectangles); /* list of rectangles for the region (in window coords) */
2652 @END
2655 /* Get the window update region */
2656 @REQ(get_update_region)
2657 user_handle_t window; /* handle to the window */
2658 user_handle_t from_child; /* child to start searching from */
2659 unsigned int flags; /* update flags (see below) */
2660 @REPLY
2661 user_handle_t child; /* child to repaint (or window itself) */
2662 unsigned int flags; /* resulting update flags (see below) */
2663 data_size_t total_size; /* total size of the resulting region */
2664 VARARG(region,rectangles); /* list of rectangles for the region (in screen coords) */
2665 @END
2666 #define UPDATE_NONCLIENT 0x01 /* get region for repainting non-client area */
2667 #define UPDATE_ERASE 0x02 /* get region for erasing client area */
2668 #define UPDATE_PAINT 0x04 /* get region for painting client area */
2669 #define UPDATE_INTERNALPAINT 0x08 /* get region if internal paint is pending */
2670 #define UPDATE_ALLCHILDREN 0x10 /* force repaint of all children */
2671 #define UPDATE_NOCHILDREN 0x20 /* don't try to repaint any children */
2672 #define UPDATE_NOREGION 0x40 /* don't return a region, only the flags */
2673 #define UPDATE_DELAYED_ERASE 0x80 /* still needs erase after BeginPaint */
2676 /* Update the z order of a window so that a given rectangle is fully visible */
2677 @REQ(update_window_zorder)
2678 user_handle_t window; /* handle to the window */
2679 rectangle_t rect; /* rectangle that must be visible (in client coords) */
2680 @END
2683 /* Mark parts of a window as needing a redraw */
2684 @REQ(redraw_window)
2685 user_handle_t window; /* handle to the window */
2686 unsigned int flags; /* RDW_* flags */
2687 VARARG(region,rectangles); /* list of rectangles for the region (in window coords) */
2688 @END
2691 /* Set a window property */
2692 @REQ(set_window_property)
2693 user_handle_t window; /* handle to the window */
2694 lparam_t data; /* data to store */
2695 atom_t atom; /* property atom (if no name specified) */
2696 VARARG(name,unicode_str); /* property name */
2697 @END
2700 /* Remove a window property */
2701 @REQ(remove_window_property)
2702 user_handle_t window; /* handle to the window */
2703 atom_t atom; /* property atom (if no name specified) */
2704 VARARG(name,unicode_str); /* property name */
2705 @REPLY
2706 lparam_t data; /* data stored in property */
2707 @END
2710 /* Get a window property */
2711 @REQ(get_window_property)
2712 user_handle_t window; /* handle to the window */
2713 atom_t atom; /* property atom (if no name specified) */
2714 VARARG(name,unicode_str); /* property name */
2715 @REPLY
2716 lparam_t data; /* data stored in property */
2717 @END
2720 /* Get the list of properties of a window */
2721 @REQ(get_window_properties)
2722 user_handle_t window; /* handle to the window */
2723 @REPLY
2724 int total; /* total number of properties */
2725 VARARG(props,properties); /* list of properties */
2726 @END
2729 /* Create a window station */
2730 @REQ(create_winstation)
2731 unsigned int flags; /* window station flags */
2732 unsigned int access; /* wanted access rights */
2733 unsigned int attributes; /* object attributes */
2734 VARARG(name,unicode_str); /* object name */
2735 @REPLY
2736 obj_handle_t handle; /* handle to the window station */
2737 @END
2740 /* Open a handle to a window station */
2741 @REQ(open_winstation)
2742 unsigned int access; /* wanted access rights */
2743 unsigned int attributes; /* object attributes */
2744 VARARG(name,unicode_str); /* object name */
2745 @REPLY
2746 obj_handle_t handle; /* handle to the window station */
2747 @END
2750 /* Close a window station */
2751 @REQ(close_winstation)
2752 obj_handle_t handle; /* handle to the window station */
2753 @END
2756 /* Get the process current window station */
2757 @REQ(get_process_winstation)
2758 @REPLY
2759 obj_handle_t handle; /* handle to the window station */
2760 @END
2763 /* Set the process current window station */
2764 @REQ(set_process_winstation)
2765 obj_handle_t handle; /* handle to the window station */
2766 @END
2769 /* Enumerate window stations */
2770 @REQ(enum_winstation)
2771 unsigned int index; /* current index */
2772 @REPLY
2773 unsigned int next; /* next index */
2774 VARARG(name,unicode_str); /* window station name */
2775 @END
2778 /* Create a desktop */
2779 @REQ(create_desktop)
2780 unsigned int flags; /* desktop flags */
2781 unsigned int access; /* wanted access rights */
2782 unsigned int attributes; /* object attributes */
2783 VARARG(name,unicode_str); /* object name */
2784 @REPLY
2785 obj_handle_t handle; /* handle to the desktop */
2786 @END
2789 /* Open a handle to a desktop */
2790 @REQ(open_desktop)
2791 obj_handle_t winsta; /* window station to open (null allowed) */
2792 unsigned int flags; /* desktop flags */
2793 unsigned int access; /* wanted access rights */
2794 unsigned int attributes; /* object attributes */
2795 VARARG(name,unicode_str); /* object name */
2796 @REPLY
2797 obj_handle_t handle; /* handle to the desktop */
2798 @END
2801 /* Open a handle to current input desktop */
2802 @REQ(open_input_desktop)
2803 unsigned int flags; /* desktop flags */
2804 unsigned int access; /* wanted access rights */
2805 unsigned int attributes; /* object attributes */
2806 @REPLY
2807 obj_handle_t handle; /* handle to the desktop */
2808 @END
2811 /* Close a desktop */
2812 @REQ(close_desktop)
2813 obj_handle_t handle; /* handle to the desktop */
2814 @END
2817 /* Get the thread current desktop */
2818 @REQ(get_thread_desktop)
2819 thread_id_t tid; /* thread id */
2820 @REPLY
2821 obj_handle_t handle; /* handle to the desktop */
2822 @END
2825 /* Set the thread current desktop */
2826 @REQ(set_thread_desktop)
2827 obj_handle_t handle; /* handle to the desktop */
2828 @END
2831 /* Enumerate desktops */
2832 @REQ(enum_desktop)
2833 obj_handle_t winstation; /* handle to the window station */
2834 unsigned int index; /* current index */
2835 @REPLY
2836 unsigned int next; /* next index */
2837 VARARG(name,unicode_str); /* window station name */
2838 @END
2841 /* Get/set information about a user object (window station or desktop) */
2842 @REQ(set_user_object_info)
2843 obj_handle_t handle; /* handle to the object */
2844 unsigned int flags; /* information to set/get */
2845 unsigned int obj_flags; /* new object flags */
2846 @REPLY
2847 int is_desktop; /* is object a desktop? */
2848 unsigned int old_obj_flags; /* old object flags */
2849 VARARG(name,unicode_str); /* object name */
2850 @END
2851 #define SET_USER_OBJECT_SET_FLAGS 1
2852 #define SET_USER_OBJECT_GET_FULL_NAME 2
2855 /* Register a hotkey */
2856 @REQ(register_hotkey)
2857 user_handle_t window; /* handle to the window */
2858 int id; /* hotkey identifier */
2859 unsigned int flags; /* modifier keys */
2860 unsigned int vkey; /* virtual key code */
2861 @REPLY
2862 int replaced; /* did we replace an existing hotkey? */
2863 unsigned int flags; /* flags of replaced hotkey */
2864 unsigned int vkey; /* virtual key code of replaced hotkey */
2865 @END
2868 /* Unregister a hotkey */
2869 @REQ(unregister_hotkey)
2870 user_handle_t window; /* handle to the window */
2871 int id; /* hotkey identifier */
2872 @REPLY
2873 unsigned int flags; /* flags of removed hotkey */
2874 unsigned int vkey; /* virtual key code of removed hotkey */
2875 @END
2878 /* Attach (or detach) thread inputs */
2879 @REQ(attach_thread_input)
2880 thread_id_t tid_from; /* thread to be attached */
2881 thread_id_t tid_to; /* thread to which tid_from should be attached */
2882 int attach; /* is it an attach? */
2883 @END
2886 /* Get input data for a given thread */
2887 @REQ(get_thread_input)
2888 thread_id_t tid; /* id of thread */
2889 @REPLY
2890 user_handle_t focus; /* handle to the focus window */
2891 user_handle_t capture; /* handle to the capture window */
2892 user_handle_t active; /* handle to the active window */
2893 user_handle_t foreground; /* handle to the global foreground window */
2894 user_handle_t menu_owner; /* handle to the menu owner */
2895 user_handle_t move_size; /* handle to the moving/resizing window */
2896 user_handle_t caret; /* handle to the caret window */
2897 user_handle_t cursor; /* handle to the cursor */
2898 int show_count; /* cursor show count */
2899 rectangle_t rect; /* caret rectangle */
2900 @END
2903 /* Get the time of the last input event */
2904 @REQ(get_last_input_time)
2905 @REPLY
2906 unsigned int time;
2907 @END
2910 /* Retrieve queue keyboard state for a given thread */
2911 @REQ(get_key_state)
2912 thread_id_t tid; /* id of thread */
2913 int key; /* optional key code or -1 */
2914 @REPLY
2915 unsigned char state; /* state of specified key */
2916 VARARG(keystate,bytes); /* state array for all the keys */
2917 @END
2919 /* Set queue keyboard state for a given thread */
2920 @REQ(set_key_state)
2921 thread_id_t tid; /* id of thread */
2922 int async; /* whether to change the async state too */
2923 VARARG(keystate,bytes); /* state array for all the keys */
2924 @END
2926 /* Set the system foreground window */
2927 @REQ(set_foreground_window)
2928 user_handle_t handle; /* handle to the foreground window */
2929 @REPLY
2930 user_handle_t previous; /* handle to the previous foreground window */
2931 int send_msg_old; /* whether we have to send a msg to the old window */
2932 int send_msg_new; /* whether we have to send a msg to the new window */
2933 @END
2935 /* Set the current thread focus window */
2936 @REQ(set_focus_window)
2937 user_handle_t handle; /* handle to the focus window */
2938 @REPLY
2939 user_handle_t previous; /* handle to the previous focus window */
2940 @END
2942 /* Set the current thread active window */
2943 @REQ(set_active_window)
2944 user_handle_t handle; /* handle to the active window */
2945 @REPLY
2946 user_handle_t previous; /* handle to the previous active window */
2947 @END
2949 /* Set the current thread capture window */
2950 @REQ(set_capture_window)
2951 user_handle_t handle; /* handle to the capture window */
2952 unsigned int flags; /* capture flags (see below) */
2953 @REPLY
2954 user_handle_t previous; /* handle to the previous capture window */
2955 user_handle_t full_handle; /* full 32-bit handle of new capture window */
2956 @END
2957 #define CAPTURE_MENU 0x01 /* capture is for a menu */
2958 #define CAPTURE_MOVESIZE 0x02 /* capture is for moving/resizing */
2961 /* Set the current thread caret window */
2962 @REQ(set_caret_window)
2963 user_handle_t handle; /* handle to the caret window */
2964 int width; /* caret width */
2965 int height; /* caret height */
2966 @REPLY
2967 user_handle_t previous; /* handle to the previous caret window */
2968 rectangle_t old_rect; /* previous caret rectangle */
2969 int old_hide; /* previous hide count */
2970 int old_state; /* previous caret state (1=on, 0=off) */
2971 @END
2974 /* Set the current thread caret information */
2975 @REQ(set_caret_info)
2976 unsigned int flags; /* caret flags (see below) */
2977 user_handle_t handle; /* handle to the caret window */
2978 int x; /* caret x position */
2979 int y; /* caret y position */
2980 int hide; /* increment for hide count (can be negative to show it) */
2981 int state; /* caret state (1=on, 0=off, -1=toggle current state) */
2982 @REPLY
2983 user_handle_t full_handle; /* handle to the current caret window */
2984 rectangle_t old_rect; /* previous caret rectangle */
2985 int old_hide; /* previous hide count */
2986 int old_state; /* previous caret state (1=on, 0=off) */
2987 @END
2988 #define SET_CARET_POS 0x01 /* set the caret position from x,y */
2989 #define SET_CARET_HIDE 0x02 /* increment the caret hide count */
2990 #define SET_CARET_STATE 0x04 /* set the caret on/off state */
2993 /* Set a window hook */
2994 @REQ(set_hook)
2995 int id; /* id of the hook */
2996 process_id_t pid; /* id of process to set the hook into */
2997 thread_id_t tid; /* id of thread to set the hook into */
2998 int event_min;
2999 int event_max;
3000 client_ptr_t proc; /* hook procedure */
3001 int flags;
3002 int unicode; /* is it a unicode hook? */
3003 VARARG(module,unicode_str); /* module name */
3004 @REPLY
3005 user_handle_t handle; /* handle to the hook */
3006 unsigned int active_hooks; /* active hooks bitmap */
3007 @END
3010 /* Remove a window hook */
3011 @REQ(remove_hook)
3012 user_handle_t handle; /* handle to the hook */
3013 client_ptr_t proc; /* hook procedure if handle is 0 */
3014 int id; /* id of the hook if handle is 0 */
3015 @REPLY
3016 unsigned int active_hooks; /* active hooks bitmap */
3017 @END
3020 /* Start calling a hook chain */
3021 @REQ(start_hook_chain)
3022 int id; /* id of the hook */
3023 int event; /* signalled event */
3024 user_handle_t window; /* handle to the event window */
3025 int object_id; /* object id for out of context winevent */
3026 int child_id; /* child id for out of context winevent */
3027 @REPLY
3028 user_handle_t handle; /* handle to the next hook */
3029 process_id_t pid; /* process id for low-level keyboard/mouse hooks */
3030 thread_id_t tid; /* thread id for low-level keyboard/mouse hooks */
3031 int unicode; /* is it a unicode hook? */
3032 client_ptr_t proc; /* hook procedure */
3033 unsigned int active_hooks; /* active hooks bitmap */
3034 VARARG(module,unicode_str); /* module name */
3035 @END
3038 /* Finished calling a hook chain */
3039 @REQ(finish_hook_chain)
3040 int id; /* id of the hook */
3041 @END
3044 /* Get the hook information */
3045 @REQ(get_hook_info)
3046 user_handle_t handle; /* handle to the current hook */
3047 int get_next; /* do we want info about current or next hook? */
3048 int event; /* signalled event */
3049 user_handle_t window; /* handle to the event window */
3050 int object_id; /* object id for out of context winevent */
3051 int child_id; /* child id for out of context winevent */
3052 @REPLY
3053 user_handle_t handle; /* handle to the hook */
3054 int id; /* id of the hook */
3055 process_id_t pid; /* process id for low-level keyboard/mouse hooks */
3056 thread_id_t tid; /* thread id for low-level keyboard/mouse hooks */
3057 client_ptr_t proc; /* hook procedure */
3058 int unicode; /* is it a unicode hook? */
3059 VARARG(module,unicode_str); /* module name */
3060 @END
3063 /* Create a window class */
3064 @REQ(create_class)
3065 int local; /* is it a local class? */
3066 atom_t atom; /* class atom */
3067 unsigned int style; /* class style */
3068 mod_handle_t instance; /* module instance */
3069 int extra; /* number of extra class bytes */
3070 int win_extra; /* number of window extra bytes */
3071 client_ptr_t client_ptr; /* pointer to class in client address space */
3072 VARARG(name,unicode_str); /* class name */
3073 @REPLY
3074 atom_t atom; /* resulting class atom */
3075 @END
3078 /* Destroy a window class */
3079 @REQ(destroy_class)
3080 atom_t atom; /* class atom */
3081 mod_handle_t instance; /* module instance */
3082 VARARG(name,unicode_str); /* class name */
3083 @REPLY
3084 client_ptr_t client_ptr; /* pointer to class in client address space */
3085 @END
3088 /* Set some information in a class */
3089 @REQ(set_class_info)
3090 user_handle_t window; /* handle to the window */
3091 unsigned int flags; /* flags for info to set (see below) */
3092 atom_t atom; /* class atom */
3093 unsigned int style; /* class style */
3094 int win_extra; /* number of window extra bytes */
3095 mod_handle_t instance; /* module instance */
3096 int extra_offset; /* offset to set in extra bytes */
3097 data_size_t extra_size; /* size to set in extra bytes */
3098 lparam_t extra_value; /* value to set in extra bytes */
3099 @REPLY
3100 atom_t old_atom; /* previous class atom */
3101 unsigned int old_style; /* previous class style */
3102 int old_extra; /* previous number of class extra bytes */
3103 int old_win_extra; /* previous number of window extra bytes */
3104 mod_handle_t old_instance; /* previous module instance */
3105 lparam_t old_extra_value; /* old value in extra bytes */
3106 @END
3107 #define SET_CLASS_ATOM 0x0001
3108 #define SET_CLASS_STYLE 0x0002
3109 #define SET_CLASS_WINEXTRA 0x0004
3110 #define SET_CLASS_INSTANCE 0x0008
3111 #define SET_CLASS_EXTRA 0x0010
3114 /* Set/get clipboard information */
3115 @REQ(set_clipboard_info)
3116 unsigned int flags; /* flags for fields to set (see below) */
3117 user_handle_t clipboard; /* clipboard window */
3118 user_handle_t owner; /* clipboard owner */
3119 user_handle_t viewer; /* first clipboard viewer */
3120 unsigned int seqno; /* change sequence number */
3121 @REPLY
3122 unsigned int flags; /* status flags (see below) */
3123 user_handle_t old_clipboard; /* old clipboard window */
3124 user_handle_t old_owner; /* old clipboard owner */
3125 user_handle_t old_viewer; /* old clipboard viewer */
3126 unsigned int seqno; /* current sequence number */
3127 @END
3129 #define SET_CB_OPEN 0x001
3130 #define SET_CB_VIEWER 0x004
3131 #define SET_CB_SEQNO 0x008
3132 #define SET_CB_RELOWNER 0x010
3133 #define SET_CB_CLOSE 0x020
3134 #define CB_OPEN 0x040
3135 #define CB_OWNER 0x080
3136 #define CB_PROCESS 0x100
3139 /* Empty the clipboard and grab ownership */
3140 @REQ(empty_clipboard)
3141 @END
3144 /* Open a security token */
3145 @REQ(open_token)
3146 obj_handle_t handle; /* handle to the thread or process */
3147 unsigned int access; /* access rights to the new token */
3148 unsigned int attributes;/* object attributes */
3149 unsigned int flags; /* flags (see below) */
3150 @REPLY
3151 obj_handle_t token; /* handle to the token */
3152 @END
3153 #define OPEN_TOKEN_THREAD 1
3154 #define OPEN_TOKEN_AS_SELF 2
3157 /* Set/get the global windows */
3158 @REQ(set_global_windows)
3159 unsigned int flags; /* flags for fields to set (see below) */
3160 user_handle_t shell_window; /* handle to the new shell window */
3161 user_handle_t shell_listview; /* handle to the new shell listview window */
3162 user_handle_t progman_window; /* handle to the new program manager window */
3163 user_handle_t taskman_window; /* handle to the new task manager window */
3164 @REPLY
3165 user_handle_t old_shell_window; /* handle to the shell window */
3166 user_handle_t old_shell_listview; /* handle to the shell listview window */
3167 user_handle_t old_progman_window; /* handle to the new program manager window */
3168 user_handle_t old_taskman_window; /* handle to the new task manager window */
3169 @END
3170 #define SET_GLOBAL_SHELL_WINDOWS 0x01 /* set both main shell and listview windows */
3171 #define SET_GLOBAL_PROGMAN_WINDOW 0x02
3172 #define SET_GLOBAL_TASKMAN_WINDOW 0x04
3174 /* Adjust the privileges held by a token */
3175 @REQ(adjust_token_privileges)
3176 obj_handle_t handle; /* handle to the token */
3177 int disable_all; /* disable all privileges? */
3178 int get_modified_state; /* get modified privileges? */
3179 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges to enable/disable/remove */
3180 @REPLY
3181 unsigned int len; /* total length in bytes required to store token privileges */
3182 VARARG(privileges,LUID_AND_ATTRIBUTES); /* modified privileges */
3183 @END
3185 /* Retrieves the set of privileges held by or available to a token */
3186 @REQ(get_token_privileges)
3187 obj_handle_t handle; /* handle to the token */
3188 @REPLY
3189 unsigned int len; /* total length in bytes required to store token privileges */
3190 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges held by or available to a token */
3191 @END
3193 /* Check the token has the required privileges */
3194 @REQ(check_token_privileges)
3195 obj_handle_t handle; /* handle to the token */
3196 int all_required; /* are all the privileges required for the check to succeed? */
3197 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges to check */
3198 @REPLY
3199 int has_privileges; /* does the token have the required privileges? */
3200 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges held by or available to a token */
3201 @END
3203 @REQ(duplicate_token)
3204 obj_handle_t handle; /* handle to the token to duplicate */
3205 unsigned int access; /* access rights to the new token */
3206 unsigned int attributes; /* object attributes */
3207 int primary; /* is the new token to be a primary one? */
3208 int impersonation_level; /* impersonation level of the new token */
3209 @REPLY
3210 obj_handle_t new_handle; /* duplicated handle */
3211 @END
3213 @REQ(access_check)
3214 obj_handle_t handle; /* handle to the token */
3215 unsigned int desired_access; /* desired access to the object */
3216 unsigned int mapping_read; /* mapping from generic read to specific rights */
3217 unsigned int mapping_write; /* mapping from generic write to specific rights */
3218 unsigned int mapping_execute; /* mapping from generic execute to specific rights */
3219 unsigned int mapping_all; /* mapping from generic all to specific rights */
3220 VARARG(sd,security_descriptor); /* security descriptor to check */
3221 @REPLY
3222 unsigned int access_granted; /* access rights actually granted */
3223 unsigned int access_status; /* was access granted? */
3224 unsigned int privileges_len; /* length needed to store privileges */
3225 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges used during access check */
3226 @END
3228 @REQ(get_token_sid)
3229 obj_handle_t handle; /* handle to the token */
3230 unsigned int which_sid; /* which SID to retrieve from the token */
3231 @REPLY
3232 data_size_t sid_len; /* length needed to store sid */
3233 VARARG(sid,SID); /* the sid specified by which_sid from the token */
3234 @END
3236 @REQ(get_token_groups)
3237 obj_handle_t handle; /* handle to the token */
3238 @REPLY
3239 data_size_t user_len; /* length needed to store user */
3240 VARARG(user,token_groups); /* groups the token's user belongs to */
3241 @END
3243 @REQ(get_token_default_dacl)
3244 obj_handle_t handle; /* handle to the token */
3245 @REPLY
3246 data_size_t acl_len; /* length needed to store access control list */
3247 VARARG(acl,ACL); /* access control list */
3248 @END
3250 @REQ(set_token_default_dacl)
3251 obj_handle_t handle; /* handle to the token */
3252 VARARG(acl,ACL); /* default dacl to set */
3253 @END
3255 @REQ(set_security_object)
3256 obj_handle_t handle; /* handle to the object */
3257 unsigned int security_info; /* which parts of security descriptor to set */
3258 VARARG(sd,security_descriptor); /* security descriptor to set */
3259 @END
3261 @REQ(get_security_object)
3262 obj_handle_t handle; /* handle to the object */
3263 unsigned int security_info; /* which parts of security descriptor to get */
3264 @REPLY
3265 unsigned int sd_len; /* buffer size needed for sd */
3266 VARARG(sd,security_descriptor); /* retrieved security descriptor */
3267 @END
3270 struct handle_info
3272 process_id_t owner;
3273 obj_handle_t handle;
3274 unsigned int access;
3277 /* Return a list of all opened handles */
3278 @REQ(get_system_handles)
3279 @REPLY
3280 unsigned int count; /* number of handles */
3281 VARARG(data,handle_infos); /* array of handle_infos */
3282 @END
3285 /* Create a mailslot */
3286 @REQ(create_mailslot)
3287 unsigned int access; /* wanted access rights */
3288 unsigned int attributes; /* object attributes */
3289 obj_handle_t rootdir; /* root directory */
3290 timeout_t read_timeout;
3291 unsigned int max_msgsize;
3292 VARARG(name,unicode_str); /* mailslot name */
3293 @REPLY
3294 obj_handle_t handle; /* handle to the mailslot */
3295 @END
3298 /* Set mailslot information */
3299 @REQ(set_mailslot_info)
3300 obj_handle_t handle; /* handle to the mailslot */
3301 timeout_t read_timeout;
3302 unsigned int flags;
3303 @REPLY
3304 timeout_t read_timeout;
3305 unsigned int max_msgsize;
3306 @END
3307 #define MAILSLOT_SET_READ_TIMEOUT 1
3310 /* Create a directory object */
3311 @REQ(create_directory)
3312 unsigned int access; /* access flags */
3313 unsigned int attributes; /* object attributes */
3314 obj_handle_t rootdir; /* root directory */
3315 VARARG(directory_name,unicode_str); /* Directory name */
3316 @REPLY
3317 obj_handle_t handle; /* handle to the directory */
3318 @END
3321 /* Open a directory object */
3322 @REQ(open_directory)
3323 unsigned int access; /* access flags */
3324 unsigned int attributes; /* object attributes */
3325 obj_handle_t rootdir; /* root directory */
3326 VARARG(directory_name,unicode_str); /* Directory name */
3327 @REPLY
3328 obj_handle_t handle; /* handle to the directory */
3329 @END
3332 /* Get a directory entry by index */
3333 @REQ(get_directory_entry)
3334 obj_handle_t handle; /* handle to the directory */
3335 unsigned int index; /* entry index */
3336 @REPLY
3337 data_size_t name_len; /* length of the entry name in bytes */
3338 VARARG(name,unicode_str,name_len); /* entry name */
3339 VARARG(type,unicode_str); /* entry type */
3340 @END
3343 /* Create a symbolic link object */
3344 @REQ(create_symlink)
3345 unsigned int access; /* access flags */
3346 unsigned int attributes; /* object attributes */
3347 obj_handle_t rootdir; /* root directory */
3348 data_size_t name_len; /* length of the symlink name in bytes */
3349 VARARG(name,unicode_str,name_len); /* symlink name */
3350 VARARG(target_name,unicode_str); /* target name */
3351 @REPLY
3352 obj_handle_t handle; /* handle to the symlink */
3353 @END
3356 /* Open a symbolic link object */
3357 @REQ(open_symlink)
3358 unsigned int access; /* access flags */
3359 unsigned int attributes; /* object attributes */
3360 obj_handle_t rootdir; /* root directory */
3361 VARARG(name,unicode_str); /* symlink name */
3362 @REPLY
3363 obj_handle_t handle; /* handle to the symlink */
3364 @END
3367 /* Query a symbolic link object */
3368 @REQ(query_symlink)
3369 obj_handle_t handle; /* handle to the symlink */
3370 @REPLY
3371 data_size_t total; /* total needed size for name */
3372 VARARG(target_name,unicode_str); /* target name */
3373 @END
3376 /* Query basic object information */
3377 @REQ(get_object_info)
3378 obj_handle_t handle; /* handle to the object */
3379 @REPLY
3380 unsigned int access; /* granted access mask */
3381 unsigned int ref_count; /* object ref count */
3382 unsigned int handle_count; /* object handle count */
3383 data_size_t total; /* total needed size for name */
3384 VARARG(name,unicode_str); /* object name */
3385 @END
3388 /* Query object type name information */
3389 @REQ(get_object_type)
3390 obj_handle_t handle; /* handle to the object */
3391 @REPLY
3392 data_size_t total; /* needed size for type name */
3393 VARARG(type,unicode_str); /* type name */
3394 @END
3397 /* Unlink a named object */
3398 @REQ(unlink_object)
3399 obj_handle_t handle; /* handle to the object */
3400 @END
3403 /* Query the impersonation level of an impersonation token */
3404 @REQ(get_token_impersonation_level)
3405 obj_handle_t handle; /* handle to the object */
3406 @REPLY
3407 int impersonation_level; /* impersonation level of the impersonation token */
3408 @END
3410 /* Allocate a locally-unique identifier */
3411 @REQ(allocate_locally_unique_id)
3412 @REPLY
3413 luid_t luid;
3414 @END
3417 /* Create a device manager */
3418 @REQ(create_device_manager)
3419 unsigned int access; /* wanted access rights */
3420 unsigned int attributes; /* object attributes */
3421 @REPLY
3422 obj_handle_t handle; /* handle to the device */
3423 @END
3426 /* Create a device */
3427 @REQ(create_device)
3428 unsigned int access; /* wanted access rights */
3429 unsigned int attributes; /* object attributes */
3430 obj_handle_t rootdir; /* root directory */
3431 client_ptr_t user_ptr; /* opaque ptr for use by client */
3432 obj_handle_t manager; /* device manager */
3433 VARARG(name,unicode_str); /* object name */
3434 @REPLY
3435 obj_handle_t handle; /* handle to the device */
3436 @END
3439 /* Delete a device */
3440 @REQ(delete_device)
3441 obj_handle_t handle; /* handle to the device */
3442 @END
3445 /* Retrieve the next pending device irp request */
3446 @REQ(get_next_device_request)
3447 obj_handle_t manager; /* handle to the device manager */
3448 obj_handle_t prev; /* handle to the previous irp */
3449 unsigned int status; /* status of the previous irp */
3450 @REPLY
3451 irp_params_t params; /* irp parameters */
3452 obj_handle_t next; /* handle to the next irp */
3453 process_id_t client_pid; /* pid of process calling irp */
3454 thread_id_t client_tid; /* tid of thread calling irp */
3455 data_size_t in_size; /* total needed input size */
3456 data_size_t out_size; /* needed output size */
3457 VARARG(next_data,bytes); /* input data of the next irp */
3458 @END
3461 /* Make the current process a system process */
3462 @REQ(make_process_system)
3463 @REPLY
3464 obj_handle_t event; /* event signaled when all user processes have exited */
3465 @END
3468 /* Get detailed fixed-size information about a token */
3469 @REQ(get_token_statistics)
3470 obj_handle_t handle; /* handle to the object */
3471 @REPLY
3472 luid_t token_id; /* locally-unique identifier of the token */
3473 luid_t modified_id; /* locally-unique identifier of the modified version of the token */
3474 int primary; /* is the token primary or impersonation? */
3475 int impersonation_level; /* level of impersonation */
3476 int group_count; /* the number of groups the token is a member of */
3477 int privilege_count; /* the number of privileges the token has */
3478 @END
3481 /* Create I/O completion port */
3482 @REQ(create_completion)
3483 unsigned int access; /* desired access to a port */
3484 unsigned int attributes; /* object attributes */
3485 unsigned int concurrent; /* max number of concurrent active threads */
3486 obj_handle_t rootdir; /* root directory */
3487 VARARG(filename,unicode_str); /* port name */
3488 @REPLY
3489 obj_handle_t handle; /* port handle */
3490 @END
3493 /* Open I/O completion port */
3494 @REQ(open_completion)
3495 unsigned int access; /* desired access to a port */
3496 unsigned int attributes; /* object attributes */
3497 obj_handle_t rootdir; /* root directory */
3498 VARARG(filename,unicode_str); /* port name */
3499 @REPLY
3500 obj_handle_t handle; /* port handle */
3501 @END
3504 /* add completion to completion port */
3505 @REQ(add_completion)
3506 obj_handle_t handle; /* port handle */
3507 apc_param_t ckey; /* completion key */
3508 apc_param_t cvalue; /* completion value */
3509 apc_param_t information; /* IO_STATUS_BLOCK Information */
3510 unsigned int status; /* completion result */
3511 @END
3514 /* get completion from completion port queue */
3515 @REQ(remove_completion)
3516 obj_handle_t handle; /* port handle */
3517 @REPLY
3518 apc_param_t ckey; /* completion key */
3519 apc_param_t cvalue; /* completion value */
3520 apc_param_t information; /* IO_STATUS_BLOCK Information */
3521 unsigned int status; /* completion result */
3522 @END
3525 /* get completion queue depth */
3526 @REQ(query_completion)
3527 obj_handle_t handle; /* port handle */
3528 @REPLY
3529 unsigned int depth; /* completion queue depth */
3530 @END
3533 /* associate object with completion port */
3534 @REQ(set_completion_info)
3535 obj_handle_t handle; /* object handle */
3536 apc_param_t ckey; /* completion key */
3537 obj_handle_t chandle; /* port handle */
3538 @END
3541 /* check for associated completion and push msg */
3542 @REQ(add_fd_completion)
3543 obj_handle_t handle; /* async' object */
3544 apc_param_t cvalue; /* completion value */
3545 apc_param_t information; /* IO_STATUS_BLOCK Information */
3546 unsigned int status; /* completion status */
3547 @END
3550 /* set fd disposition information */
3551 @REQ(set_fd_disp_info)
3552 obj_handle_t handle; /* handle to a file or directory */
3553 int unlink; /* whether to unlink file on close */
3554 @END
3557 /* set fd name information */
3558 @REQ(set_fd_name_info)
3559 obj_handle_t handle; /* handle to a file or directory */
3560 obj_handle_t rootdir; /* root directory */
3561 int link; /* link instead of renaming */
3562 VARARG(filename,string); /* new file name */
3563 @END
3566 /* Retrieve layered info for a window */
3567 @REQ(get_window_layered_info)
3568 user_handle_t handle; /* handle to the window */
3569 @REPLY
3570 unsigned int color_key; /* color key */
3571 unsigned int alpha; /* alpha (0..255) */
3572 unsigned int flags; /* LWA_* flags */
3573 @END
3576 /* Set layered info for a window */
3577 @REQ(set_window_layered_info)
3578 user_handle_t handle; /* handle to the window */
3579 unsigned int color_key; /* color key */
3580 unsigned int alpha; /* alpha (0..255) */
3581 unsigned int flags; /* LWA_* flags */
3582 @END
3585 /* Allocate an arbitrary user handle */
3586 @REQ(alloc_user_handle)
3587 @REPLY
3588 user_handle_t handle; /* allocated handle */
3589 @END
3592 /* Free an arbitrary user handle */
3593 @REQ(free_user_handle)
3594 user_handle_t handle; /* handle to free*/
3595 @END
3598 /* Set/get the current cursor */
3599 @REQ(set_cursor)
3600 unsigned int flags; /* flags for fields to set (see below) */
3601 user_handle_t handle; /* handle to the cursor */
3602 int show_count; /* show count increment/decrement */
3603 int x; /* cursor position */
3604 int y;
3605 rectangle_t clip; /* cursor clip rectangle */
3606 unsigned int clip_msg; /* message to post on cursor clip changes */
3607 @REPLY
3608 user_handle_t prev_handle; /* previous handle */
3609 int prev_count; /* previous show count */
3610 int prev_x; /* previous position */
3611 int prev_y;
3612 int new_x; /* new position */
3613 int new_y;
3614 rectangle_t new_clip; /* new clip rectangle */
3615 unsigned int last_change; /* time of last position change */
3616 @END
3617 #define SET_CURSOR_HANDLE 0x01
3618 #define SET_CURSOR_COUNT 0x02
3619 #define SET_CURSOR_POS 0x04
3620 #define SET_CURSOR_CLIP 0x08
3621 #define SET_CURSOR_NOCLIP 0x10
3624 /* Modify the list of registered rawinput devices */
3625 @REQ(update_rawinput_devices)
3626 VARARG(devices,rawinput_devices);
3627 @END
3630 /* Retrieve the suspended context of a thread */
3631 @REQ(get_suspend_context)
3632 @REPLY
3633 VARARG(context,context); /* thread context */
3634 @END
3637 /* Store the suspend context of a thread */
3638 @REQ(set_suspend_context)
3639 VARARG(context,context); /* thread context */
3640 @END
3643 /* Create a new job object */
3644 @REQ(create_job)
3645 unsigned int access; /* wanted access rights */
3646 unsigned int attributes; /* object attributes */
3647 VARARG(objattr,object_attributes); /* object attributes */
3648 @REPLY
3649 obj_handle_t handle; /* handle to the job */
3650 @END
3653 /* Assign a job object to a process */
3654 @REQ(assign_job)
3655 obj_handle_t job; /* handle to the job */
3656 obj_handle_t process; /* handle to the process */
3657 @END
3660 /* Check if a process is associated with a job */
3661 @REQ(process_in_job)
3662 obj_handle_t job; /* handle to the job */
3663 obj_handle_t process; /* handle to the process */
3664 @END
3667 /* Set limit flags on a job */
3668 @REQ(set_job_limits)
3669 obj_handle_t handle; /* handle to the job */
3670 unsigned int limit_flags; /* new limit flags */
3671 @END
3674 /* Set new completion port for a job */
3675 @REQ(set_job_completion_port)
3676 obj_handle_t job; /* handle to the job */
3677 obj_handle_t port; /* handle to the completion port */
3678 client_ptr_t key; /* key to send with completion messages */
3679 @END
3682 /* Terminate all processes associated with the job */
3683 @REQ(terminate_job)
3684 obj_handle_t handle; /* handle to the job */
3685 int status; /* process exit code */
3686 @END