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