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