dpnet/tests: Add a trailing '\n' to some ok() calls.
[wine.git] / server / protocol.def
blobc9270ea098e9117db499c0d109b20783c1862e10
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 int x; /* x position */
283 int y; /* y position */
284 unsigned int hw_id; /* unique id */
285 unsigned int flags; /* hook flags */
286 union
288 int type;
289 struct
291 int type; /* RIM_TYPEKEYBOARD */
292 unsigned int message; /* message generated by this rawinput event */
293 unsigned short vkey; /* virtual key code */
294 unsigned short scan; /* scan code */
295 } kbd;
296 struct
298 int type; /* RIM_TYPEMOUSE */
299 int x; /* x coordinate */
300 int y; /* y coordinate */
301 unsigned int data; /* mouse data */
302 } mouse;
303 } rawinput;
306 struct callback_msg_data
308 client_ptr_t callback; /* callback function */
309 lparam_t data; /* user data for callback */
310 lparam_t result; /* message result */
313 struct winevent_msg_data
315 user_handle_t hook; /* hook handle */
316 thread_id_t tid; /* thread id */
317 client_ptr_t hook_proc; /* hook proc address */
318 /* followed by module name if any */
321 typedef union
323 int type;
324 struct
326 int type; /* INPUT_KEYBOARD */
327 unsigned short vkey; /* virtual key code */
328 unsigned short scan; /* scan code */
329 unsigned int flags; /* event flags */
330 unsigned int time; /* event time */
331 lparam_t info; /* extra info */
332 } kbd;
333 struct
335 int type; /* INPUT_MOUSE */
336 int x; /* coordinates */
337 int y;
338 unsigned int data; /* mouse data */
339 unsigned int flags; /* event flags */
340 unsigned int time; /* event time */
341 lparam_t info; /* extra info */
342 } mouse;
343 struct
345 int type; /* INPUT_HARDWARE */
346 unsigned int msg; /* message code */
347 lparam_t lparam; /* message param */
348 } hw;
349 } hw_input_t;
351 typedef union
353 unsigned char bytes[1]; /* raw data for sent messages */
354 struct hardware_msg_data hardware;
355 struct callback_msg_data callback;
356 struct winevent_msg_data winevent;
357 } message_data_t;
359 /* structure for console char/attribute info */
360 typedef struct
362 WCHAR ch;
363 unsigned short attr;
364 } char_info_t;
366 /* structure returned in filesystem events */
367 struct filesystem_event
369 int action;
370 data_size_t len;
371 char name[1];
374 typedef struct
376 unsigned int low_part;
377 int high_part;
378 } luid_t;
380 #define MAX_ACL_LEN 65535
382 struct security_descriptor
384 unsigned int control; /* SE_ flags */
385 data_size_t owner_len;
386 data_size_t group_len;
387 data_size_t sacl_len;
388 data_size_t dacl_len;
389 /* VARARG(owner,SID); */
390 /* VARARG(group,SID); */
391 /* VARARG(sacl,ACL); */
392 /* VARARG(dacl,ACL); */
395 struct object_attributes
397 obj_handle_t rootdir; /* root directory */
398 data_size_t sd_len; /* length of security_descriptor data. may be 0 */
399 data_size_t name_len; /* length of the name string. may be 0 */
400 /* VARARG(sd,security_descriptor); */
401 /* VARARG(name,unicode_str); */
404 struct token_groups
406 unsigned int count;
407 /* unsigned int attributes[count]; */
408 /* VARARG(sids,SID); */
411 enum select_op
413 SELECT_NONE,
414 SELECT_WAIT,
415 SELECT_WAIT_ALL,
416 SELECT_SIGNAL_AND_WAIT,
417 SELECT_KEYED_EVENT_WAIT,
418 SELECT_KEYED_EVENT_RELEASE
421 typedef union
423 enum select_op op;
424 struct
426 enum select_op op; /* SELECT_WAIT or SELECT_WAIT_ALL */
427 obj_handle_t handles[MAXIMUM_WAIT_OBJECTS];
428 } wait;
429 struct
431 enum select_op op; /* SELECT_SIGNAL_AND_WAIT */
432 obj_handle_t wait;
433 obj_handle_t signal; /* must be last in the structure so we can remove it on retries */
434 } signal_and_wait;
435 struct
437 enum select_op op; /* SELECT_KEYED_EVENT_WAIT or SELECT_KEYED_EVENT_RELEASE */
438 obj_handle_t handle;
439 client_ptr_t key;
440 } keyed_event;
441 } select_op_t;
443 enum apc_type
445 APC_NONE,
446 APC_USER,
447 APC_TIMER,
448 APC_ASYNC_IO,
449 APC_VIRTUAL_ALLOC,
450 APC_VIRTUAL_FREE,
451 APC_VIRTUAL_QUERY,
452 APC_VIRTUAL_PROTECT,
453 APC_VIRTUAL_FLUSH,
454 APC_VIRTUAL_LOCK,
455 APC_VIRTUAL_UNLOCK,
456 APC_MAP_VIEW,
457 APC_UNMAP_VIEW,
458 APC_CREATE_THREAD
461 typedef union
463 enum apc_type type;
464 struct
466 enum apc_type type; /* APC_USER */
467 int __pad;
468 client_ptr_t func; /* void (__stdcall *func)(ULONG_PTR,ULONG_PTR,ULONG_PTR); */
469 apc_param_t args[3]; /* arguments for user function */
470 } user;
471 struct
473 enum apc_type type; /* APC_TIMER */
474 int __pad;
475 client_ptr_t func; /* void (__stdcall *func)(void*, unsigned int, unsigned int); */
476 timeout_t time; /* absolute time of expiration */
477 client_ptr_t arg; /* user argument */
478 } timer;
479 struct
481 enum apc_type type; /* APC_ASYNC_IO */
482 unsigned int status; /* I/O status */
483 client_ptr_t func; /* unsigned int (*func)(void*, void*, unsigned int, void **); */
484 client_ptr_t user; /* user pointer */
485 client_ptr_t sb; /* status block */
486 } async_io;
487 struct
489 enum apc_type type; /* APC_VIRTUAL_ALLOC */
490 unsigned int op_type; /* type of operation */
491 client_ptr_t addr; /* requested address */
492 mem_size_t size; /* allocation size */
493 unsigned int zero_bits; /* allocation alignment */
494 unsigned int prot; /* memory protection flags */
495 } virtual_alloc;
496 struct
498 enum apc_type type; /* APC_VIRTUAL_FREE */
499 unsigned int op_type; /* type of operation */
500 client_ptr_t addr; /* requested address */
501 mem_size_t size; /* allocation size */
502 } virtual_free;
503 struct
505 enum apc_type type; /* APC_VIRTUAL_QUERY */
506 int __pad;
507 client_ptr_t addr; /* requested address */
508 } virtual_query;
509 struct
511 enum apc_type type; /* APC_VIRTUAL_PROTECT */
512 unsigned int prot; /* new protection flags */
513 client_ptr_t addr; /* requested address */
514 mem_size_t size; /* requested size */
515 } virtual_protect;
516 struct
518 enum apc_type type; /* APC_VIRTUAL_FLUSH */
519 int __pad;
520 client_ptr_t addr; /* requested address */
521 mem_size_t size; /* requested size */
522 } virtual_flush;
523 struct
525 enum apc_type type; /* APC_VIRTUAL_LOCK */
526 int __pad;
527 client_ptr_t addr; /* requested address */
528 mem_size_t size; /* requested size */
529 } virtual_lock;
530 struct
532 enum apc_type type; /* APC_VIRTUAL_UNLOCK */
533 int __pad;
534 client_ptr_t addr; /* requested address */
535 mem_size_t size; /* requested size */
536 } virtual_unlock;
537 struct
539 enum apc_type type; /* APC_MAP_VIEW */
540 obj_handle_t handle; /* mapping handle */
541 client_ptr_t addr; /* requested address */
542 mem_size_t size; /* allocation size */
543 file_pos_t offset; /* file offset */
544 unsigned int alloc_type;/* allocation type */
545 unsigned short zero_bits; /* allocation alignment */
546 unsigned short prot; /* memory protection flags */
547 } map_view;
548 struct
550 enum apc_type type; /* APC_UNMAP_VIEW */
551 int __pad;
552 client_ptr_t addr; /* view address */
553 } unmap_view;
554 struct
556 enum apc_type type; /* APC_CREATE_THREAD */
557 int suspend; /* suspended thread? */
558 client_ptr_t func; /* void (__stdcall *func)(void*); start function */
559 client_ptr_t arg; /* argument for start function */
560 mem_size_t reserve; /* reserve size for thread stack */
561 mem_size_t commit; /* commit size for thread stack */
562 } create_thread;
563 } apc_call_t;
565 typedef union
567 enum apc_type type;
568 struct
570 enum apc_type type; /* APC_ASYNC_IO */
571 unsigned int status; /* new status of async operation */
572 client_ptr_t apc; /* user APC to call */
573 unsigned int total; /* bytes transferred */
574 } async_io;
575 struct
577 enum apc_type type; /* APC_VIRTUAL_ALLOC */
578 unsigned int status; /* status returned by call */
579 client_ptr_t addr; /* resulting address */
580 mem_size_t size; /* resulting size */
581 } virtual_alloc;
582 struct
584 enum apc_type type; /* APC_VIRTUAL_FREE */
585 unsigned int status; /* status returned by call */
586 client_ptr_t addr; /* resulting address */
587 mem_size_t size; /* resulting size */
588 } virtual_free;
589 struct
591 enum apc_type type; /* APC_VIRTUAL_QUERY */
592 unsigned int status; /* status returned by call */
593 client_ptr_t base; /* resulting base address */
594 client_ptr_t alloc_base;/* resulting allocation base */
595 mem_size_t size; /* resulting region size */
596 unsigned short state; /* resulting region state */
597 unsigned short prot; /* resulting region protection */
598 unsigned short alloc_prot;/* resulting allocation protection */
599 unsigned short alloc_type;/* resulting region allocation type */
600 } virtual_query;
601 struct
603 enum apc_type type; /* APC_VIRTUAL_PROTECT */
604 unsigned int status; /* status returned by call */
605 client_ptr_t addr; /* resulting address */
606 mem_size_t size; /* resulting size */
607 unsigned int prot; /* old protection flags */
608 } virtual_protect;
609 struct
611 enum apc_type type; /* APC_VIRTUAL_FLUSH */
612 unsigned int status; /* status returned by call */
613 client_ptr_t addr; /* resulting address */
614 mem_size_t size; /* resulting size */
615 } virtual_flush;
616 struct
618 enum apc_type type; /* APC_VIRTUAL_LOCK */
619 unsigned int status; /* status returned by call */
620 client_ptr_t addr; /* resulting address */
621 mem_size_t size; /* resulting size */
622 } virtual_lock;
623 struct
625 enum apc_type type; /* APC_VIRTUAL_UNLOCK */
626 unsigned int status; /* status returned by call */
627 client_ptr_t addr; /* resulting address */
628 mem_size_t size; /* resulting size */
629 } virtual_unlock;
630 struct
632 enum apc_type type; /* APC_MAP_VIEW */
633 unsigned int status; /* status returned by call */
634 client_ptr_t addr; /* resulting address */
635 mem_size_t size; /* resulting size */
636 } map_view;
637 struct
639 enum apc_type type; /* APC_MAP_VIEW */
640 unsigned int status; /* status returned by call */
641 } unmap_view;
642 struct
644 enum apc_type type; /* APC_CREATE_THREAD */
645 unsigned int status; /* status returned by call */
646 thread_id_t tid; /* thread id */
647 obj_handle_t handle; /* handle to new thread */
648 } create_thread;
649 } apc_result_t;
651 struct rawinput_device
653 unsigned short usage_page;
654 unsigned short usage;
655 unsigned int flags;
656 user_handle_t target;
659 /****************************************************************/
660 /* Request declarations */
662 /* Create a new process from the context of the parent */
663 @REQ(new_process)
664 int inherit_all; /* inherit all handles from parent */
665 unsigned int create_flags; /* creation flags */
666 int socket_fd; /* file descriptor for process socket */
667 obj_handle_t exe_file; /* file handle for main exe */
668 unsigned int process_access; /* access rights for process object */
669 unsigned int process_attr; /* attributes for process object */
670 unsigned int thread_access; /* access rights for thread object */
671 unsigned int thread_attr; /* attributes for thread object */
672 cpu_type_t cpu; /* CPU that the new process will use */
673 data_size_t info_size; /* size of startup info */
674 VARARG(info,startup_info,info_size); /* startup information */
675 VARARG(env,unicode_str); /* environment for new process */
676 @REPLY
677 obj_handle_t info; /* new process info handle */
678 process_id_t pid; /* process id */
679 obj_handle_t phandle; /* process handle (in the current process) */
680 thread_id_t tid; /* thread id */
681 obj_handle_t thandle; /* thread handle (in the current process) */
682 @END
685 /* Retrieve information about a newly started process */
686 @REQ(get_new_process_info)
687 obj_handle_t info; /* info handle returned from new_process_request */
688 @REPLY
689 int success; /* did the process start successfully? */
690 int exit_code; /* process exit code if failed */
691 @END
694 /* Create a new thread from the context of the parent */
695 @REQ(new_thread)
696 unsigned int access; /* wanted access rights */
697 unsigned int attributes; /* object attributes */
698 int suspend; /* new thread should be suspended on creation */
699 int request_fd; /* fd for request pipe */
700 @REPLY
701 thread_id_t tid; /* thread id */
702 obj_handle_t handle; /* thread handle (in the current process) */
703 @END
706 /* Retrieve the new process startup info */
707 @REQ(get_startup_info)
708 @REPLY
709 obj_handle_t exe_file; /* file handle for main exe */
710 data_size_t info_size; /* size of startup info */
711 VARARG(info,startup_info,info_size); /* startup information */
712 VARARG(env,unicode_str); /* environment */
713 @END
716 /* Signal the end of the process initialization */
717 @REQ(init_process_done)
718 int gui; /* is it a GUI process? */
719 mod_handle_t module; /* main module base address */
720 client_ptr_t ldt_copy; /* address of LDT copy (in thread address space) */
721 client_ptr_t entry; /* process entry point */
722 @END
725 /* Initialize a thread; called from the child after fork()/clone() */
726 @REQ(init_thread)
727 int unix_pid; /* Unix pid of new thread */
728 int unix_tid; /* Unix tid of new thread */
729 int debug_level; /* new debug level */
730 client_ptr_t teb; /* TEB of new thread (in thread address space) */
731 client_ptr_t entry; /* entry point or PEB if initial thread (in thread address space) */
732 int reply_fd; /* fd for reply pipe */
733 int wait_fd; /* fd for blocking calls pipe */
734 cpu_type_t cpu; /* CPU that this thread is running on */
735 @REPLY
736 process_id_t pid; /* process id of the new thread's process */
737 thread_id_t tid; /* thread id of the new thread */
738 timeout_t server_start; /* server start time */
739 data_size_t info_size; /* total size of startup info */
740 int version; /* protocol version */
741 unsigned int all_cpus; /* bitset of supported CPUs */
742 @END
745 /* Terminate a process */
746 @REQ(terminate_process)
747 obj_handle_t handle; /* process handle to terminate */
748 int exit_code; /* process exit code */
749 @REPLY
750 int self; /* suicide? */
751 @END
754 /* Terminate a thread */
755 @REQ(terminate_thread)
756 obj_handle_t handle; /* thread handle to terminate */
757 int exit_code; /* thread exit code */
758 @REPLY
759 int self; /* suicide? */
760 int last; /* last thread in this process? */
761 @END
764 /* Retrieve information about a process */
765 @REQ(get_process_info)
766 obj_handle_t handle; /* process handle */
767 @REPLY
768 process_id_t pid; /* server process id */
769 process_id_t ppid; /* server process id of parent */
770 affinity_t affinity; /* process affinity mask */
771 client_ptr_t peb; /* PEB address in process address space */
772 timeout_t start_time; /* process start time */
773 timeout_t end_time; /* process end time */
774 int exit_code; /* process exit code */
775 int priority; /* priority class */
776 cpu_type_t cpu; /* CPU that this process is running on */
777 int debugger_present; /* process is being debugged */
778 @END
781 /* Set a process information */
782 @REQ(set_process_info)
783 obj_handle_t handle; /* process handle */
784 int mask; /* setting mask (see below) */
785 int priority; /* priority class */
786 affinity_t affinity; /* affinity mask */
787 @END
788 #define SET_PROCESS_INFO_PRIORITY 0x01
789 #define SET_PROCESS_INFO_AFFINITY 0x02
792 /* Retrieve information about a thread */
793 @REQ(get_thread_info)
794 obj_handle_t handle; /* thread handle */
795 thread_id_t tid_in; /* thread id (optional) */
796 @REPLY
797 process_id_t pid; /* server process id */
798 thread_id_t tid; /* server thread id */
799 client_ptr_t teb; /* thread teb pointer */
800 affinity_t affinity; /* thread affinity mask */
801 timeout_t creation_time; /* thread creation time */
802 timeout_t exit_time; /* thread exit time */
803 int exit_code; /* thread exit code */
804 int priority; /* thread priority level */
805 int last; /* last thread in process */
806 @END
809 /* Set a thread information */
810 @REQ(set_thread_info)
811 obj_handle_t handle; /* thread handle */
812 int mask; /* setting mask (see below) */
813 int priority; /* priority class */
814 affinity_t affinity; /* affinity mask */
815 obj_handle_t token; /* impersonation token */
816 @END
817 #define SET_THREAD_INFO_PRIORITY 0x01
818 #define SET_THREAD_INFO_AFFINITY 0x02
819 #define SET_THREAD_INFO_TOKEN 0x04
822 /* Retrieve information about a module */
823 @REQ(get_dll_info)
824 obj_handle_t handle; /* process handle */
825 mod_handle_t base_address; /* base address of module */
826 @REPLY
827 client_ptr_t entry_point;
828 data_size_t size; /* module size */
829 data_size_t filename_len; /* buffer len in bytes required to store filename */
830 VARARG(filename,unicode_str); /* file name of module */
831 @END
834 /* Suspend a thread */
835 @REQ(suspend_thread)
836 obj_handle_t handle; /* thread handle */
837 @REPLY
838 int count; /* new suspend count */
839 @END
842 /* Resume a thread */
843 @REQ(resume_thread)
844 obj_handle_t handle; /* thread handle */
845 @REPLY
846 int count; /* new suspend count */
847 @END
850 /* Notify the server that a dll has been loaded */
851 @REQ(load_dll)
852 obj_handle_t mapping; /* file mapping handle */
853 mod_handle_t base; /* base address */
854 client_ptr_t name; /* ptr to ptr to name (in process addr space) */
855 data_size_t size; /* dll size */
856 int dbg_offset; /* debug info offset */
857 int dbg_size; /* debug info size */
858 VARARG(filename,unicode_str); /* file name of dll */
859 @END
862 /* Notify the server that a dll is being unloaded */
863 @REQ(unload_dll)
864 mod_handle_t base; /* base address */
865 @END
868 /* Queue an APC for a thread or process */
869 @REQ(queue_apc)
870 obj_handle_t handle; /* thread or process handle */
871 apc_call_t call; /* call arguments */
872 @REPLY
873 obj_handle_t handle; /* APC handle */
874 int self; /* run APC in caller itself? */
875 @END
878 /* Get the result of an APC call */
879 @REQ(get_apc_result)
880 obj_handle_t handle; /* handle to the APC */
881 @REPLY
882 apc_result_t result; /* result of the APC */
883 @END
886 /* Close a handle for the current process */
887 @REQ(close_handle)
888 obj_handle_t handle; /* handle to close */
889 @END
892 /* Set a handle information */
893 @REQ(set_handle_info)
894 obj_handle_t handle; /* handle we are interested in */
895 int flags; /* new handle flags */
896 int mask; /* mask for flags to set */
897 @REPLY
898 int old_flags; /* old flag value */
899 @END
902 /* Duplicate a handle */
903 @REQ(dup_handle)
904 obj_handle_t src_process; /* src process handle */
905 obj_handle_t src_handle; /* src handle to duplicate */
906 obj_handle_t dst_process; /* dst process handle */
907 unsigned int access; /* wanted access rights */
908 unsigned int attributes; /* object attributes */
909 unsigned int options; /* duplicate options (see below) */
910 @REPLY
911 obj_handle_t handle; /* duplicated handle in dst process */
912 int self; /* is the source the current process? */
913 int closed; /* whether the source handle has been closed */
914 @END
915 #define DUP_HANDLE_CLOSE_SOURCE DUPLICATE_CLOSE_SOURCE
916 #define DUP_HANDLE_SAME_ACCESS DUPLICATE_SAME_ACCESS
917 #define DUP_HANDLE_MAKE_GLOBAL 0x80000000 /* Not a Windows flag */
920 /* Open a handle to a process */
921 @REQ(open_process)
922 process_id_t pid; /* process id to open */
923 unsigned int access; /* wanted access rights */
924 unsigned int attributes; /* object attributes */
925 @REPLY
926 obj_handle_t handle; /* handle to the process */
927 @END
930 /* Open a handle to a thread */
931 @REQ(open_thread)
932 thread_id_t tid; /* thread id to open */
933 unsigned int access; /* wanted access rights */
934 unsigned int attributes; /* object attributes */
935 @REPLY
936 obj_handle_t handle; /* handle to the thread */
937 @END
940 /* Wait for handles */
941 @REQ(select)
942 int flags; /* wait flags (see below) */
943 client_ptr_t cookie; /* magic cookie to return to client */
944 timeout_t timeout; /* timeout */
945 obj_handle_t prev_apc; /* handle to previous APC */
946 VARARG(result,apc_result); /* result of previous APC */
947 VARARG(data,select_op); /* operation-specific data */
948 @REPLY
949 timeout_t timeout; /* timeout converted to absolute */
950 apc_call_t call; /* APC call arguments */
951 obj_handle_t apc_handle; /* handle to next APC */
952 @END
953 #define SELECT_ALERTABLE 1
954 #define SELECT_INTERRUPTIBLE 2
957 /* Create an event */
958 @REQ(create_event)
959 unsigned int access; /* wanted access rights */
960 unsigned int attributes; /* object attributes */
961 int manual_reset; /* manual reset event */
962 int initial_state; /* initial state of the event */
963 VARARG(objattr,object_attributes); /* object attributes */
964 @REPLY
965 obj_handle_t handle; /* handle to the event */
966 @END
968 /* Event operation */
969 @REQ(event_op)
970 obj_handle_t handle; /* handle to event */
971 int op; /* event operation (see below) */
972 @END
973 enum event_op { PULSE_EVENT, SET_EVENT, RESET_EVENT };
975 @REQ(query_event)
976 obj_handle_t handle; /* handle to event */
977 @REPLY
978 int manual_reset; /* manual reset event */
979 int state; /* current state of the event */
980 @END
982 /* Open an event */
983 @REQ(open_event)
984 unsigned int access; /* wanted access rights */
985 unsigned int attributes; /* object attributes */
986 obj_handle_t rootdir; /* root directory */
987 VARARG(name,unicode_str); /* object name */
988 @REPLY
989 obj_handle_t handle; /* handle to the event */
990 @END
993 /* Create a keyed event */
994 @REQ(create_keyed_event)
995 unsigned int access; /* wanted access rights */
996 unsigned int attributes; /* object attributes */
997 VARARG(objattr,object_attributes); /* object attributes */
998 @REPLY
999 obj_handle_t handle; /* handle to the event */
1000 @END
1002 /* Open a keyed event */
1003 @REQ(open_keyed_event)
1004 unsigned int access; /* wanted access rights */
1005 unsigned int attributes; /* object attributes */
1006 obj_handle_t rootdir; /* root directory */
1007 VARARG(name,unicode_str); /* object name */
1008 @REPLY
1009 obj_handle_t handle; /* handle to the event */
1010 @END
1013 /* Create a mutex */
1014 @REQ(create_mutex)
1015 unsigned int access; /* wanted access rights */
1016 unsigned int attributes; /* object attributes */
1017 int owned; /* initially owned? */
1018 VARARG(objattr,object_attributes); /* object attributes */
1019 @REPLY
1020 obj_handle_t handle; /* handle to the mutex */
1021 @END
1024 /* Release a mutex */
1025 @REQ(release_mutex)
1026 obj_handle_t handle; /* handle to the mutex */
1027 @REPLY
1028 unsigned int prev_count; /* value of internal counter, before release */
1029 @END
1032 /* Open a mutex */
1033 @REQ(open_mutex)
1034 unsigned int access; /* wanted access rights */
1035 unsigned int attributes; /* object attributes */
1036 obj_handle_t rootdir; /* root directory */
1037 VARARG(name,unicode_str); /* object name */
1038 @REPLY
1039 obj_handle_t handle; /* handle to the mutex */
1040 @END
1043 /* Create a semaphore */
1044 @REQ(create_semaphore)
1045 unsigned int access; /* wanted access rights */
1046 unsigned int attributes; /* object attributes */
1047 unsigned int initial; /* initial count */
1048 unsigned int max; /* maximum count */
1049 VARARG(objattr,object_attributes); /* object attributes */
1050 @REPLY
1051 obj_handle_t handle; /* handle to the semaphore */
1052 @END
1055 /* Release a semaphore */
1056 @REQ(release_semaphore)
1057 obj_handle_t handle; /* handle to the semaphore */
1058 unsigned int count; /* count to add to semaphore */
1059 @REPLY
1060 unsigned int prev_count; /* previous semaphore count */
1061 @END
1063 @REQ(query_semaphore)
1064 obj_handle_t handle; /* handle to the semaphore */
1065 @REPLY
1066 unsigned int current; /* current count */
1067 unsigned int max; /* maximum count */
1068 @END
1070 /* Open a semaphore */
1071 @REQ(open_semaphore)
1072 unsigned int access; /* wanted access rights */
1073 unsigned int attributes; /* object attributes */
1074 obj_handle_t rootdir; /* root directory */
1075 VARARG(name,unicode_str); /* object name */
1076 @REPLY
1077 obj_handle_t handle; /* handle to the semaphore */
1078 @END
1081 /* Create a file */
1082 @REQ(create_file)
1083 unsigned int access; /* wanted access rights */
1084 unsigned int attributes; /* object attributes */
1085 unsigned int sharing; /* sharing flags */
1086 int create; /* file create action */
1087 unsigned int options; /* file options */
1088 unsigned int attrs; /* file attributes for creation */
1089 VARARG(objattr,object_attributes); /* object attributes */
1090 VARARG(filename,string); /* file name */
1091 @REPLY
1092 obj_handle_t handle; /* handle to the file */
1093 @END
1096 /* Open a file object */
1097 @REQ(open_file_object)
1098 unsigned int access; /* wanted access rights */
1099 unsigned int attributes; /* open attributes */
1100 obj_handle_t rootdir; /* root directory */
1101 unsigned int sharing; /* sharing flags */
1102 unsigned int options; /* file options */
1103 VARARG(filename,unicode_str); /* file name */
1104 @REPLY
1105 obj_handle_t handle; /* handle to the file */
1106 @END
1109 /* Allocate a file handle for a Unix fd */
1110 @REQ(alloc_file_handle)
1111 unsigned int access; /* wanted access rights */
1112 unsigned int attributes; /* object attributes */
1113 int fd; /* file descriptor on the client side */
1114 @REPLY
1115 obj_handle_t handle; /* handle to the file */
1116 @END
1119 /* Get the Unix name from a file handle */
1120 @REQ(get_handle_unix_name)
1121 obj_handle_t handle; /* file handle */
1122 @REPLY
1123 data_size_t name_len; /* unix name length */
1124 VARARG(name,string); /* unix name */
1125 @END
1128 /* Get a Unix fd to access a file */
1129 @REQ(get_handle_fd)
1130 obj_handle_t handle; /* handle to the file */
1131 @REPLY
1132 int type; /* file type (see below) */
1133 int cacheable; /* can fd be cached in the client? */
1134 unsigned int access; /* file access rights */
1135 unsigned int options; /* file open options */
1136 @END
1137 enum server_fd_type
1139 FD_TYPE_INVALID, /* invalid file (no associated fd) */
1140 FD_TYPE_FILE, /* regular file */
1141 FD_TYPE_DIR, /* directory */
1142 FD_TYPE_SOCKET, /* socket */
1143 FD_TYPE_SERIAL, /* serial port */
1144 FD_TYPE_PIPE, /* named pipe */
1145 FD_TYPE_MAILSLOT, /* mailslot */
1146 FD_TYPE_CHAR, /* unspecified char device */
1147 FD_TYPE_DEVICE, /* Windows device file */
1148 FD_TYPE_NB_TYPES
1152 /* Flush a file buffers */
1153 @REQ(flush_file)
1154 obj_handle_t handle; /* handle to the file */
1155 @REPLY
1156 obj_handle_t event; /* event set when finished */
1157 @END
1160 /* Lock a region of a file */
1161 @REQ(lock_file)
1162 obj_handle_t handle; /* handle to the file */
1163 file_pos_t offset; /* offset of start of lock */
1164 file_pos_t count; /* count of bytes to lock */
1165 int shared; /* shared or exclusive lock? */
1166 int wait; /* do we want to wait? */
1167 @REPLY
1168 obj_handle_t handle; /* handle to wait on */
1169 int overlapped; /* is it an overlapped I/O handle? */
1170 @END
1173 /* Unlock a region of a file */
1174 @REQ(unlock_file)
1175 obj_handle_t handle; /* handle to the file */
1176 file_pos_t offset; /* offset of start of unlock */
1177 file_pos_t count; /* count of bytes to unlock */
1178 @END
1181 /* Create a socket */
1182 @REQ(create_socket)
1183 unsigned int access; /* wanted access rights */
1184 unsigned int attributes; /* object attributes */
1185 int family; /* family, see socket manpage */
1186 int type; /* type, see socket manpage */
1187 int protocol; /* protocol, see socket manpage */
1188 unsigned int flags; /* socket flags */
1189 @REPLY
1190 obj_handle_t handle; /* handle to the new socket */
1191 @END
1194 /* Accept a socket */
1195 @REQ(accept_socket)
1196 obj_handle_t lhandle; /* handle to the listening socket */
1197 unsigned int access; /* wanted access rights */
1198 unsigned int attributes; /* object attributes */
1199 @REPLY
1200 obj_handle_t handle; /* handle to the new socket */
1201 @END
1204 /* Accept into an initialized socket */
1205 @REQ(accept_into_socket)
1206 obj_handle_t lhandle; /* handle to the listening socket */
1207 obj_handle_t ahandle; /* handle to the accepting socket */
1208 @END
1211 /* Set socket event parameters */
1212 @REQ(set_socket_event)
1213 obj_handle_t handle; /* handle to the socket */
1214 unsigned int mask; /* event mask */
1215 obj_handle_t event; /* event object */
1216 user_handle_t window; /* window to send the message to */
1217 unsigned int msg; /* message to send */
1218 @END
1221 /* Get socket event parameters */
1222 @REQ(get_socket_event)
1223 obj_handle_t handle; /* handle to the socket */
1224 int service; /* clear pending? */
1225 obj_handle_t c_event; /* event to clear */
1226 @REPLY
1227 unsigned int mask; /* event mask */
1228 unsigned int pmask; /* pending events */
1229 unsigned int state; /* status bits */
1230 VARARG(errors,ints); /* event errors */
1231 @END
1234 /* Get socket info */
1235 @REQ(get_socket_info)
1236 obj_handle_t handle; /* handle to the socket */
1237 @REPLY
1238 int family; /* family, see socket manpage */
1239 int type; /* type, see socket manpage */
1240 int protocol; /* protocol, see socket manpage */
1241 @END
1244 /* Re-enable pending socket events */
1245 @REQ(enable_socket_event)
1246 obj_handle_t handle; /* handle to the socket */
1247 unsigned int mask; /* events to re-enable */
1248 unsigned int sstate; /* status bits to set */
1249 unsigned int cstate; /* status bits to clear */
1250 @END
1252 @REQ(set_socket_deferred)
1253 obj_handle_t handle; /* handle to the socket */
1254 obj_handle_t deferred; /* handle to the socket for which accept() is deferred */
1255 @END
1257 /* Allocate a console (only used by a console renderer) */
1258 @REQ(alloc_console)
1259 unsigned int access; /* wanted access rights */
1260 unsigned int attributes; /* object attributes */
1261 process_id_t pid; /* pid of process which shall be attached to the console */
1262 int input_fd; /* if pid=-1 (bare console to current process), fd for input */
1263 @REPLY
1264 obj_handle_t handle_in; /* handle to console input */
1265 obj_handle_t event; /* handle to renderer events change notification */
1266 @END
1269 /* Free the console of the current process */
1270 @REQ(free_console)
1271 @END
1274 #define CONSOLE_RENDERER_NONE_EVENT 0x00
1275 #define CONSOLE_RENDERER_TITLE_EVENT 0x01
1276 #define CONSOLE_RENDERER_ACTIVE_SB_EVENT 0x02
1277 #define CONSOLE_RENDERER_SB_RESIZE_EVENT 0x03
1278 #define CONSOLE_RENDERER_UPDATE_EVENT 0x04
1279 #define CONSOLE_RENDERER_CURSOR_POS_EVENT 0x05
1280 #define CONSOLE_RENDERER_CURSOR_GEOM_EVENT 0x06
1281 #define CONSOLE_RENDERER_DISPLAY_EVENT 0x07
1282 #define CONSOLE_RENDERER_EXIT_EVENT 0x08
1283 struct console_renderer_event
1285 short event;
1286 union
1288 struct update
1290 short top;
1291 short bottom;
1292 } update;
1293 struct resize
1295 short width;
1296 short height;
1297 } resize;
1298 struct cursor_pos
1300 short x;
1301 short y;
1302 } cursor_pos;
1303 struct cursor_geom
1305 short visible;
1306 short size;
1307 } cursor_geom;
1308 struct display
1310 short left;
1311 short top;
1312 short width;
1313 short height;
1314 } display;
1315 } u;
1318 /* retrieve console events for the renderer */
1319 @REQ(get_console_renderer_events)
1320 obj_handle_t handle; /* handle to console input events */
1321 @REPLY
1322 VARARG(data,bytes); /* the various console_renderer_events */
1323 @END
1326 /* Open a handle to the process console */
1327 @REQ(open_console)
1328 obj_handle_t from; /* 0 (resp 1) input (resp output) of current process console */
1329 /* otherwise console_in handle to get active screen buffer? */
1330 unsigned int access; /* wanted access rights */
1331 unsigned int attributes; /* object attributes */
1332 int share; /* share mask (only for output handles) */
1333 @REPLY
1334 obj_handle_t handle; /* handle to the console */
1335 @END
1338 /* Get the input queue wait event */
1339 @REQ(get_console_wait_event)
1340 @REPLY
1341 obj_handle_t handle;
1342 @END
1344 /* Get a console mode (input or output) */
1345 @REQ(get_console_mode)
1346 obj_handle_t handle; /* handle to the console */
1347 @REPLY
1348 int mode; /* console mode */
1349 @END
1352 /* Set a console mode (input or output) */
1353 @REQ(set_console_mode)
1354 obj_handle_t handle; /* handle to the console */
1355 int mode; /* console mode */
1356 @END
1359 /* Set info about a console (input only) */
1360 @REQ(set_console_input_info)
1361 obj_handle_t handle; /* handle to console input, or 0 for process' console */
1362 int mask; /* setting mask (see below) */
1363 obj_handle_t active_sb; /* active screen buffer */
1364 int history_mode; /* whether we duplicate lines in history */
1365 int history_size; /* number of lines in history */
1366 int edition_mode; /* index to the edition mode flavors */
1367 int input_cp; /* console input codepage */
1368 int output_cp; /* console output codepage */
1369 user_handle_t win; /* console window if backend supports it */
1370 VARARG(title,unicode_str); /* console title */
1371 @END
1372 #define SET_CONSOLE_INPUT_INFO_ACTIVE_SB 0x01
1373 #define SET_CONSOLE_INPUT_INFO_TITLE 0x02
1374 #define SET_CONSOLE_INPUT_INFO_HISTORY_MODE 0x04
1375 #define SET_CONSOLE_INPUT_INFO_HISTORY_SIZE 0x08
1376 #define SET_CONSOLE_INPUT_INFO_EDITION_MODE 0x10
1377 #define SET_CONSOLE_INPUT_INFO_INPUT_CODEPAGE 0x20
1378 #define SET_CONSOLE_INPUT_INFO_OUTPUT_CODEPAGE 0x40
1379 #define SET_CONSOLE_INPUT_INFO_WIN 0x80
1382 /* Get info about a console (input only) */
1383 @REQ(get_console_input_info)
1384 obj_handle_t handle; /* handle to console input, or 0 for process' console */
1385 @REPLY
1386 int history_mode; /* whether we duplicate lines in history */
1387 int history_size; /* number of lines in history */
1388 int history_index; /* number of used lines in history */
1389 int edition_mode; /* index to the edition mode flavors */
1390 int input_cp; /* console input codepage */
1391 int output_cp; /* console output codepage */
1392 user_handle_t win; /* console window if backend supports it */
1393 VARARG(title,unicode_str); /* console title */
1394 @END
1397 /* appends a string to console's history */
1398 @REQ(append_console_input_history)
1399 obj_handle_t handle; /* handle to console input, or 0 for process' console */
1400 VARARG(line,unicode_str); /* line to add */
1401 @END
1404 /* appends a string to console's history */
1405 @REQ(get_console_input_history)
1406 obj_handle_t handle; /* handle to console input, or 0 for process' console */
1407 int index; /* index to get line from */
1408 @REPLY
1409 int total; /* total length of line in Unicode chars */
1410 VARARG(line,unicode_str); /* line to add */
1411 @END
1414 /* creates a new screen buffer on process' console */
1415 @REQ(create_console_output)
1416 obj_handle_t handle_in; /* handle to console input, or 0 for process' console */
1417 unsigned int access; /* wanted access rights */
1418 unsigned int attributes; /* object attributes */
1419 unsigned int share; /* sharing credentials */
1420 int fd; /* for bare consoles, fd the screen-buffer is attached to */
1421 @REPLY
1422 obj_handle_t handle_out; /* handle to the screen buffer */
1423 @END
1426 /* Set info about a console (output only) */
1427 @REQ(set_console_output_info)
1428 obj_handle_t handle; /* handle to the console */
1429 int mask; /* setting mask (see below) */
1430 short int cursor_size; /* size of cursor (percentage filled) */
1431 short int cursor_visible;/* cursor visibility flag */
1432 short int cursor_x; /* position of cursor (x, y) */
1433 short int cursor_y;
1434 short int width; /* width of the screen buffer */
1435 short int height; /* height of the screen buffer */
1436 short int attr; /* default attribute */
1437 short int win_left; /* window actually displayed by renderer */
1438 short int win_top; /* the rect area is expressed within the */
1439 short int win_right; /* boundaries of the screen buffer */
1440 short int win_bottom;
1441 short int max_width; /* maximum size (width x height) for the window */
1442 short int max_height;
1443 @END
1444 #define SET_CONSOLE_OUTPUT_INFO_CURSOR_GEOM 0x01
1445 #define SET_CONSOLE_OUTPUT_INFO_CURSOR_POS 0x02
1446 #define SET_CONSOLE_OUTPUT_INFO_SIZE 0x04
1447 #define SET_CONSOLE_OUTPUT_INFO_ATTR 0x08
1448 #define SET_CONSOLE_OUTPUT_INFO_DISPLAY_WINDOW 0x10
1449 #define SET_CONSOLE_OUTPUT_INFO_MAX_SIZE 0x20
1452 /* Get info about a console (output only) */
1453 @REQ(get_console_output_info)
1454 obj_handle_t handle; /* handle to the console */
1455 @REPLY
1456 short int cursor_size; /* size of cursor (percentage filled) */
1457 short int cursor_visible;/* cursor visibility flag */
1458 short int cursor_x; /* position of cursor (x, y) */
1459 short int cursor_y;
1460 short int width; /* width of the screen buffer */
1461 short int height; /* height of the screen buffer */
1462 short int attr; /* default attribute */
1463 short int win_left; /* window actually displayed by renderer */
1464 short int win_top; /* the rect area is expressed within the */
1465 short int win_right; /* boundaries of the screen buffer */
1466 short int win_bottom;
1467 short int max_width; /* maximum size (width x height) for the window */
1468 short int max_height;
1469 @END
1471 /* Add input records to a console input queue */
1472 @REQ(write_console_input)
1473 obj_handle_t handle; /* handle to the console input */
1474 VARARG(rec,input_records); /* input records */
1475 @REPLY
1476 int written; /* number of records written */
1477 @END
1480 /* Fetch input records from a console input queue */
1481 @REQ(read_console_input)
1482 obj_handle_t handle; /* handle to the console input */
1483 int flush; /* flush the retrieved records from the queue? */
1484 @REPLY
1485 int read; /* number of records read */
1486 VARARG(rec,input_records); /* input records */
1487 @END
1490 /* write data (chars and/or attributes) in a screen buffer */
1491 @REQ(write_console_output)
1492 obj_handle_t handle; /* handle to the console output */
1493 int x; /* position where to start writing */
1494 int y;
1495 int mode; /* char info (see below) */
1496 int wrap; /* wrap around at end of line? */
1497 VARARG(data,bytes); /* info to write */
1498 @REPLY
1499 int written; /* number of char infos actually written */
1500 int width; /* width of screen buffer */
1501 int height; /* height of screen buffer */
1502 @END
1503 enum char_info_mode
1505 CHAR_INFO_MODE_TEXT, /* characters only */
1506 CHAR_INFO_MODE_ATTR, /* attributes only */
1507 CHAR_INFO_MODE_TEXTATTR, /* both characters and attributes */
1508 CHAR_INFO_MODE_TEXTSTDATTR /* characters but use standard attributes */
1512 /* fill a screen buffer with constant data (chars and/or attributes) */
1513 @REQ(fill_console_output)
1514 obj_handle_t handle; /* handle to the console output */
1515 int x; /* position where to start writing */
1516 int y;
1517 int mode; /* char info mode */
1518 int count; /* number to write */
1519 int wrap; /* wrap around at end of line? */
1520 char_info_t data; /* data to write */
1521 @REPLY
1522 int written; /* number of char infos actually written */
1523 @END
1526 /* read data (chars and/or attributes) from a screen buffer */
1527 @REQ(read_console_output)
1528 obj_handle_t handle; /* handle to the console output */
1529 int x; /* position (x,y) where to start reading */
1530 int y;
1531 int mode; /* char info mode */
1532 int wrap; /* wrap around at end of line? */
1533 @REPLY
1534 int width; /* width of screen buffer */
1535 int height; /* height of screen buffer */
1536 VARARG(data,bytes);
1537 @END
1540 /* move a rect (of data) in screen buffer content */
1541 @REQ(move_console_output)
1542 obj_handle_t handle; /* handle to the console output */
1543 short int x_src; /* position (x, y) of rect to start moving from */
1544 short int y_src;
1545 short int x_dst; /* position (x, y) of rect to move to */
1546 short int y_dst;
1547 short int w; /* size of the rect (width, height) to move */
1548 short int h;
1549 @END
1552 /* Sends a signal to a process group */
1553 @REQ(send_console_signal)
1554 int signal; /* the signal to send */
1555 process_id_t group_id; /* the group to send the signal to */
1556 @END
1559 /* enable directory change notifications */
1560 @REQ(read_directory_changes)
1561 unsigned int filter; /* notification filter */
1562 int subtree; /* watch the subtree? */
1563 int want_data; /* flag indicating whether change data should be collected */
1564 async_data_t async; /* async I/O parameters */
1565 @END
1568 @REQ(read_change)
1569 obj_handle_t handle;
1570 @REPLY
1571 VARARG(events,filesystem_event); /* collected filesystem events */
1572 @END
1575 /* Create a file mapping */
1576 @REQ(create_mapping)
1577 unsigned int access; /* wanted access rights */
1578 unsigned int attributes; /* object attributes */
1579 unsigned int protect; /* protection flags (see below) */
1580 mem_size_t size; /* mapping size */
1581 obj_handle_t file_handle; /* file handle */
1582 VARARG(objattr,object_attributes); /* object attributes */
1583 @REPLY
1584 obj_handle_t handle; /* handle to the mapping */
1585 @END
1586 /* per-page protection flags */
1587 #define VPROT_READ 0x01
1588 #define VPROT_WRITE 0x02
1589 #define VPROT_EXEC 0x04
1590 #define VPROT_WRITECOPY 0x08
1591 #define VPROT_GUARD 0x10
1592 #define VPROT_NOCACHE 0x20
1593 #define VPROT_COMMITTED 0x40
1594 #define VPROT_WRITEWATCH 0x80
1595 /* per-mapping protection flags */
1596 #define VPROT_IMAGE 0x0100 /* mapping for an exe image */
1597 #define VPROT_SYSTEM 0x0200 /* system view (underlying mmap not under our control) */
1598 #define VPROT_VALLOC 0x0400 /* allocated by VirtualAlloc */
1599 #define VPROT_NOEXEC 0x0800 /* don't force exec permission */
1602 /* Open a mapping */
1603 @REQ(open_mapping)
1604 unsigned int access; /* wanted access rights */
1605 unsigned int attributes; /* object attributes */
1606 obj_handle_t rootdir; /* root directory */
1607 VARARG(name,unicode_str); /* object name */
1608 @REPLY
1609 obj_handle_t handle; /* handle to the mapping */
1610 @END
1613 /* Get information about a file mapping */
1614 @REQ(get_mapping_info)
1615 obj_handle_t handle; /* handle to the mapping */
1616 unsigned int access; /* wanted access rights */
1617 @REPLY
1618 mem_size_t size; /* mapping size */
1619 int protect; /* protection flags */
1620 int header_size; /* header size (for VPROT_IMAGE mapping) */
1621 client_ptr_t base; /* default base addr (for VPROT_IMAGE mapping) */
1622 obj_handle_t mapping; /* duplicate mapping handle unless removable */
1623 obj_handle_t shared_file; /* shared mapping file handle */
1624 @END
1627 /* Get a range of committed pages in a file mapping */
1628 @REQ(get_mapping_committed_range)
1629 obj_handle_t handle; /* handle to the mapping */
1630 file_pos_t offset; /* starting offset (page-aligned, in bytes) */
1631 @REPLY
1632 mem_size_t size; /* size of range starting at offset (page-aligned, in bytes) */
1633 int committed; /* whether it is a committed range */
1634 @END
1637 /* Add a range to the committed pages in a file mapping */
1638 @REQ(add_mapping_committed_range)
1639 obj_handle_t handle; /* handle to the mapping */
1640 file_pos_t offset; /* starting offset (page-aligned, in bytes) */
1641 mem_size_t size; /* size to set (page-aligned, in bytes) or 0 if only retrieving */
1642 @END
1645 #define SNAP_PROCESS 0x00000001
1646 #define SNAP_THREAD 0x00000002
1647 /* Create a snapshot */
1648 @REQ(create_snapshot)
1649 unsigned int attributes; /* object attributes */
1650 unsigned int flags; /* snapshot flags (SNAP_*) */
1651 @REPLY
1652 obj_handle_t handle; /* handle to the snapshot */
1653 @END
1656 /* Get the next process from a snapshot */
1657 @REQ(next_process)
1658 obj_handle_t handle; /* handle to the snapshot */
1659 int reset; /* reset snapshot position? */
1660 @REPLY
1661 int count; /* process usage count */
1662 process_id_t pid; /* process id */
1663 process_id_t ppid; /* parent process id */
1664 int threads; /* number of threads */
1665 int priority; /* process priority */
1666 int handles; /* number of handles */
1667 int unix_pid; /* Unix pid */
1668 VARARG(filename,unicode_str); /* file name of main exe */
1669 @END
1672 /* Get the next thread from a snapshot */
1673 @REQ(next_thread)
1674 obj_handle_t handle; /* handle to the snapshot */
1675 int reset; /* reset snapshot position? */
1676 @REPLY
1677 int count; /* thread usage count */
1678 process_id_t pid; /* process id */
1679 thread_id_t tid; /* thread id */
1680 int base_pri; /* base priority */
1681 int delta_pri; /* delta priority */
1682 @END
1685 /* Wait for a debug event */
1686 @REQ(wait_debug_event)
1687 int get_handle; /* should we alloc a handle for waiting? */
1688 @REPLY
1689 process_id_t pid; /* process id */
1690 thread_id_t tid; /* thread id */
1691 obj_handle_t wait; /* wait handle if no event ready */
1692 VARARG(event,debug_event); /* debug event data */
1693 @END
1696 /* Queue an exception event */
1697 @REQ(queue_exception_event)
1698 int first; /* first chance exception? */
1699 unsigned int code; /* exception code */
1700 unsigned int flags; /* exception flags */
1701 client_ptr_t record; /* exception record */
1702 client_ptr_t address; /* exception address */
1703 data_size_t len; /* size of parameters */
1704 VARARG(params,uints64,len);/* exception parameters */
1705 VARARG(context,context); /* thread context */
1706 @REPLY
1707 obj_handle_t handle; /* handle to the queued event */
1708 @END
1711 /* Retrieve the status of an exception event */
1712 @REQ(get_exception_status)
1713 obj_handle_t handle; /* handle to the queued event */
1714 @REPLY
1715 VARARG(context,context); /* modified thread context */
1716 @END
1719 /* Continue a debug event */
1720 @REQ(continue_debug_event)
1721 process_id_t pid; /* process id to continue */
1722 thread_id_t tid; /* thread id to continue */
1723 int status; /* continuation status */
1724 @END
1727 /* Start/stop debugging an existing process */
1728 @REQ(debug_process)
1729 process_id_t pid; /* id of the process to debug */
1730 int attach; /* 1=attaching / 0=detaching from the process */
1731 @END
1734 /* Simulate a breakpoint in a process */
1735 @REQ(debug_break)
1736 obj_handle_t handle; /* process handle */
1737 @REPLY
1738 int self; /* was it the caller itself? */
1739 @END
1742 /* Set debugger kill on exit flag */
1743 @REQ(set_debugger_kill_on_exit)
1744 int kill_on_exit; /* 0=detach/1=kill debuggee when debugger dies */
1745 @END
1748 /* Read data from a process address space */
1749 @REQ(read_process_memory)
1750 obj_handle_t handle; /* process handle */
1751 client_ptr_t addr; /* addr to read from */
1752 @REPLY
1753 VARARG(data,bytes); /* result data */
1754 @END
1757 /* Write data to a process address space */
1758 @REQ(write_process_memory)
1759 obj_handle_t handle; /* process handle */
1760 client_ptr_t addr; /* addr to write to */
1761 VARARG(data,bytes); /* data to write */
1762 @END
1765 /* Create a registry key */
1766 @REQ(create_key)
1767 obj_handle_t parent; /* handle to the parent key */
1768 unsigned int access; /* desired access rights */
1769 unsigned int attributes; /* object attributes */
1770 unsigned int options; /* creation options */
1771 data_size_t namelen; /* length of key name in bytes */
1772 VARARG(name,unicode_str,namelen); /* key name */
1773 VARARG(class,unicode_str); /* class name */
1774 @REPLY
1775 obj_handle_t hkey; /* handle to the created key */
1776 int created; /* has it been newly created? */
1777 @END
1779 /* Open a registry key */
1780 @REQ(open_key)
1781 obj_handle_t parent; /* handle to the parent key */
1782 unsigned int access; /* desired access rights */
1783 unsigned int attributes; /* object attributes */
1784 VARARG(name,unicode_str); /* key name */
1785 @REPLY
1786 obj_handle_t hkey; /* handle to the open key */
1787 @END
1790 /* Delete a registry key */
1791 @REQ(delete_key)
1792 obj_handle_t hkey; /* handle to the key */
1793 @END
1796 /* Flush a registry key */
1797 @REQ(flush_key)
1798 obj_handle_t hkey; /* handle to the key */
1799 @END
1802 /* Enumerate registry subkeys */
1803 @REQ(enum_key)
1804 obj_handle_t hkey; /* handle to registry key */
1805 int index; /* index of subkey (or -1 for current key) */
1806 int info_class; /* requested information class */
1807 @REPLY
1808 int subkeys; /* number of subkeys */
1809 int max_subkey; /* longest subkey name */
1810 int max_class; /* longest class name */
1811 int values; /* number of values */
1812 int max_value; /* longest value name */
1813 int max_data; /* longest value data */
1814 timeout_t modif; /* last modification time */
1815 data_size_t total; /* total length needed for full name and class */
1816 data_size_t namelen; /* length of key name in bytes */
1817 VARARG(name,unicode_str,namelen); /* key name */
1818 VARARG(class,unicode_str); /* class name */
1819 @END
1822 /* Set a value of a registry key */
1823 @REQ(set_key_value)
1824 obj_handle_t hkey; /* handle to registry key */
1825 int type; /* value type */
1826 data_size_t namelen; /* length of value name in bytes */
1827 VARARG(name,unicode_str,namelen); /* value name */
1828 VARARG(data,bytes); /* value data */
1829 @END
1832 /* Retrieve the value of a registry key */
1833 @REQ(get_key_value)
1834 obj_handle_t hkey; /* handle to registry key */
1835 VARARG(name,unicode_str); /* value name */
1836 @REPLY
1837 int type; /* value type */
1838 data_size_t total; /* total length needed for data */
1839 VARARG(data,bytes); /* value data */
1840 @END
1843 /* Enumerate a value of a registry key */
1844 @REQ(enum_key_value)
1845 obj_handle_t hkey; /* handle to registry key */
1846 int index; /* value index */
1847 int info_class; /* requested information class */
1848 @REPLY
1849 int type; /* value type */
1850 data_size_t total; /* total length needed for full name and data */
1851 data_size_t namelen; /* length of value name in bytes */
1852 VARARG(name,unicode_str,namelen); /* value name */
1853 VARARG(data,bytes); /* value data */
1854 @END
1857 /* Delete a value of a registry key */
1858 @REQ(delete_key_value)
1859 obj_handle_t hkey; /* handle to registry key */
1860 VARARG(name,unicode_str); /* value name */
1861 @END
1864 /* Load a registry branch from a file */
1865 @REQ(load_registry)
1866 obj_handle_t hkey; /* root key to load to */
1867 obj_handle_t file; /* file to load from */
1868 VARARG(name,unicode_str); /* subkey name */
1869 @END
1872 /* UnLoad a registry branch from a file */
1873 @REQ(unload_registry)
1874 obj_handle_t hkey; /* root key to unload to */
1875 @END
1878 /* Save a registry branch to a file */
1879 @REQ(save_registry)
1880 obj_handle_t hkey; /* key to save */
1881 obj_handle_t file; /* file to save to */
1882 @END
1885 /* Add a registry key change notification */
1886 @REQ(set_registry_notification)
1887 obj_handle_t hkey; /* key to watch for changes */
1888 obj_handle_t event; /* event to set */
1889 int subtree; /* should we watch the whole subtree? */
1890 unsigned int filter; /* things to watch */
1891 @END
1894 /* Create a waitable timer */
1895 @REQ(create_timer)
1896 unsigned int access; /* wanted access rights */
1897 unsigned int attributes; /* object attributes */
1898 obj_handle_t rootdir; /* root directory */
1899 int manual; /* manual reset */
1900 VARARG(name,unicode_str); /* object name */
1901 @REPLY
1902 obj_handle_t handle; /* handle to the timer */
1903 @END
1906 /* Open a waitable timer */
1907 @REQ(open_timer)
1908 unsigned int access; /* wanted access rights */
1909 unsigned int attributes; /* object attributes */
1910 obj_handle_t rootdir; /* root directory */
1911 VARARG(name,unicode_str); /* object name */
1912 @REPLY
1913 obj_handle_t handle; /* handle to the timer */
1914 @END
1916 /* Set a waitable timer */
1917 @REQ(set_timer)
1918 obj_handle_t handle; /* handle to the timer */
1919 timeout_t expire; /* next expiration absolute time */
1920 client_ptr_t callback; /* callback function */
1921 client_ptr_t arg; /* callback argument */
1922 int period; /* timer period in ms */
1923 @REPLY
1924 int signaled; /* was the timer signaled before this call ? */
1925 @END
1927 /* Cancel a waitable timer */
1928 @REQ(cancel_timer)
1929 obj_handle_t handle; /* handle to the timer */
1930 @REPLY
1931 int signaled; /* was the timer signaled before this calltime ? */
1932 @END
1934 /* Get information on a waitable timer */
1935 @REQ(get_timer_info)
1936 obj_handle_t handle; /* handle to the timer */
1937 @REPLY
1938 timeout_t when; /* absolute time when the timer next expires */
1939 int signaled; /* is the timer signaled? */
1940 @END
1943 /* Retrieve the current context of a thread */
1944 @REQ(get_thread_context)
1945 obj_handle_t handle; /* thread handle */
1946 unsigned int flags; /* context flags */
1947 int suspend; /* suspend the thread if needed */
1948 @REPLY
1949 int self; /* was it a handle to the current thread? */
1950 VARARG(context,context); /* thread context */
1951 @END
1954 /* Set the current context of a thread */
1955 @REQ(set_thread_context)
1956 obj_handle_t handle; /* thread handle */
1957 int suspend; /* suspend the thread if needed */
1958 VARARG(context,context); /* thread context */
1959 @REPLY
1960 int self; /* was it a handle to the current thread? */
1961 @END
1964 /* Fetch a selector entry for a thread */
1965 @REQ(get_selector_entry)
1966 obj_handle_t handle; /* thread handle */
1967 int entry; /* LDT entry */
1968 @REPLY
1969 unsigned int base; /* selector base */
1970 unsigned int limit; /* selector limit */
1971 unsigned char flags; /* selector flags */
1972 @END
1975 /* Add an atom */
1976 @REQ(add_atom)
1977 obj_handle_t table; /* which table to add atom to */
1978 VARARG(name,unicode_str); /* atom name */
1979 @REPLY
1980 atom_t atom; /* resulting atom */
1981 @END
1984 /* Delete an atom */
1985 @REQ(delete_atom)
1986 obj_handle_t table; /* which table to delete atom from */
1987 atom_t atom; /* atom handle */
1988 @END
1991 /* Find an atom */
1992 @REQ(find_atom)
1993 obj_handle_t table; /* which table to find atom from */
1994 VARARG(name,unicode_str); /* atom name */
1995 @REPLY
1996 atom_t atom; /* atom handle */
1997 @END
2000 /* Get information about an atom */
2001 @REQ(get_atom_information)
2002 obj_handle_t table; /* which table to find atom from */
2003 atom_t atom; /* atom handle */
2004 @REPLY
2005 int count; /* atom lock count */
2006 int pinned; /* whether the atom has been pinned */
2007 data_size_t total; /* actual length of atom name */
2008 VARARG(name,unicode_str); /* atom name */
2009 @END
2012 /* Set information about an atom */
2013 @REQ(set_atom_information)
2014 obj_handle_t table; /* which table to find atom from */
2015 atom_t atom; /* atom handle */
2016 int pinned; /* whether to bump atom information */
2017 @END
2020 /* Empty an atom table */
2021 @REQ(empty_atom_table)
2022 obj_handle_t table; /* which table to find atom from */
2023 int if_pinned; /* whether to delete pinned atoms */
2024 @END
2027 /* Init an atom table */
2028 @REQ(init_atom_table)
2029 int entries; /* number of entries (only for local) */
2030 @REPLY
2031 obj_handle_t table; /* handle to the atom table */
2032 @END
2035 /* Get the message queue of the current thread */
2036 @REQ(get_msg_queue)
2037 @REPLY
2038 obj_handle_t handle; /* handle to the queue */
2039 @END
2042 /* Set the file descriptor associated to the current thread queue */
2043 @REQ(set_queue_fd)
2044 obj_handle_t handle; /* handle to the file descriptor */
2045 @END
2048 /* Set the current message queue wakeup mask */
2049 @REQ(set_queue_mask)
2050 unsigned int wake_mask; /* wakeup bits mask */
2051 unsigned int changed_mask; /* changed bits mask */
2052 int skip_wait; /* will we skip waiting if signaled? */
2053 @REPLY
2054 unsigned int wake_bits; /* current wake bits */
2055 unsigned int changed_bits; /* current changed bits */
2056 @END
2059 /* Get the current message queue status */
2060 @REQ(get_queue_status)
2061 int clear; /* should we clear the change bits? */
2062 @REPLY
2063 unsigned int wake_bits; /* wake bits */
2064 unsigned int changed_bits; /* changed bits since last time */
2065 @END
2068 /* Retrieve the process idle event */
2069 @REQ(get_process_idle_event)
2070 obj_handle_t handle; /* process handle */
2071 @REPLY
2072 obj_handle_t event; /* handle to idle event */
2073 @END
2076 /* Send a message to a thread queue */
2077 @REQ(send_message)
2078 thread_id_t id; /* thread id */
2079 int type; /* message type (see below) */
2080 int flags; /* message flags (see below) */
2081 user_handle_t win; /* window handle */
2082 unsigned int msg; /* message code */
2083 lparam_t wparam; /* parameters */
2084 lparam_t lparam; /* parameters */
2085 timeout_t timeout; /* timeout for reply */
2086 VARARG(data,message_data); /* message data for sent messages */
2087 @END
2089 @REQ(post_quit_message)
2090 int exit_code; /* exit code to return */
2091 @END
2093 enum message_type
2095 MSG_ASCII, /* Ascii message (from SendMessageA) */
2096 MSG_UNICODE, /* Unicode message (from SendMessageW) */
2097 MSG_NOTIFY, /* notify message (from SendNotifyMessageW), always Unicode */
2098 MSG_CALLBACK, /* callback message (from SendMessageCallbackW), always Unicode */
2099 MSG_CALLBACK_RESULT,/* result of a callback message */
2100 MSG_OTHER_PROCESS, /* sent from other process, may include vararg data, always Unicode */
2101 MSG_POSTED, /* posted message (from PostMessageW), always Unicode */
2102 MSG_HARDWARE, /* hardware message */
2103 MSG_WINEVENT, /* winevent message */
2104 MSG_HOOK_LL /* low-level hardware hook */
2106 #define SEND_MSG_ABORT_IF_HUNG 0x01
2109 /* Send a hardware message to a thread queue */
2110 @REQ(send_hardware_message)
2111 user_handle_t win; /* window handle */
2112 hw_input_t input; /* input data */
2113 unsigned int flags; /* flags (see below) */
2114 @REPLY
2115 int wait; /* do we need to wait for a reply? */
2116 int prev_x; /* previous cursor position */
2117 int prev_y;
2118 int new_x; /* new cursor position */
2119 int new_y;
2120 VARARG(keystate,bytes); /* global state array for all the keys */
2121 @END
2122 #define SEND_HWMSG_INJECTED 0x01
2125 /* Get a message from the current queue */
2126 @REQ(get_message)
2127 unsigned int flags; /* PM_* flags */
2128 user_handle_t get_win; /* window handle to get */
2129 unsigned int get_first; /* first message code to get */
2130 unsigned int get_last; /* last message code to get */
2131 unsigned int hw_id; /* id of the previous hardware message (or 0) */
2132 unsigned int wake_mask; /* wakeup bits mask */
2133 unsigned int changed_mask; /* changed bits mask */
2134 @REPLY
2135 user_handle_t win; /* window handle */
2136 unsigned int msg; /* message code */
2137 lparam_t wparam; /* parameters */
2138 lparam_t lparam; /* parameters */
2139 int type; /* message type */
2140 unsigned int time; /* message time */
2141 unsigned int active_hooks; /* active hooks bitmap */
2142 data_size_t total; /* total size of extra data */
2143 VARARG(data,message_data); /* message data for sent messages */
2144 @END
2147 /* Reply to a sent message */
2148 @REQ(reply_message)
2149 int remove; /* should we remove the message? */
2150 lparam_t result; /* message result */
2151 VARARG(data,bytes); /* message data for sent messages */
2152 @END
2155 /* Accept the current hardware message */
2156 @REQ(accept_hardware_message)
2157 unsigned int hw_id; /* id of the hardware message */
2158 int remove; /* should we remove the message? */
2159 user_handle_t new_win; /* new destination window for current message */
2160 @END
2163 /* Retrieve the reply for the last message sent */
2164 @REQ(get_message_reply)
2165 int cancel; /* cancel message if not ready? */
2166 @REPLY
2167 lparam_t result; /* message result */
2168 VARARG(data,bytes); /* message data for sent messages */
2169 @END
2172 /* Set a window timer */
2173 @REQ(set_win_timer)
2174 user_handle_t win; /* window handle */
2175 unsigned int msg; /* message to post */
2176 unsigned int rate; /* timer rate in ms */
2177 lparam_t id; /* timer id */
2178 lparam_t lparam; /* message lparam (callback proc) */
2179 @REPLY
2180 lparam_t id; /* timer id */
2181 @END
2184 /* Kill a window timer */
2185 @REQ(kill_win_timer)
2186 user_handle_t win; /* window handle */
2187 lparam_t id; /* timer id */
2188 unsigned int msg; /* message to post */
2189 @END
2192 /* check if the thread owning the window is hung */
2193 @REQ(is_window_hung)
2194 user_handle_t win; /* window handle */
2195 @REPLY
2196 int is_hung;
2197 @END
2200 /* Retrieve info about a serial port */
2201 @REQ(get_serial_info)
2202 obj_handle_t handle; /* handle to comm port */
2203 int flags;
2204 @REPLY
2205 unsigned int readinterval;
2206 unsigned int readconst;
2207 unsigned int readmult;
2208 unsigned int writeconst;
2209 unsigned int writemult;
2210 unsigned int eventmask;
2211 unsigned int cookie;
2212 unsigned int pending_write;
2213 @END
2216 /* Set info about a serial port */
2217 @REQ(set_serial_info)
2218 obj_handle_t handle; /* handle to comm port */
2219 int flags; /* bitmask to set values (see below) */
2220 unsigned int readinterval;
2221 unsigned int readconst;
2222 unsigned int readmult;
2223 unsigned int writeconst;
2224 unsigned int writemult;
2225 unsigned int eventmask;
2226 @END
2227 #define SERIALINFO_SET_TIMEOUTS 0x01
2228 #define SERIALINFO_SET_MASK 0x02
2229 #define SERIALINFO_PENDING_WRITE 0x04
2230 #define SERIALINFO_PENDING_WAIT 0x08
2233 /* Create an async I/O */
2234 @REQ(register_async)
2235 int type; /* type of queue to look after */
2236 async_data_t async; /* async I/O parameters */
2237 int count; /* count - usually # of bytes to be read/written */
2238 @END
2239 #define ASYNC_TYPE_READ 0x01
2240 #define ASYNC_TYPE_WRITE 0x02
2241 #define ASYNC_TYPE_WAIT 0x03
2244 /* Cancel all async op on a fd */
2245 @REQ(cancel_async)
2246 obj_handle_t handle; /* handle to comm port, socket or file */
2247 client_ptr_t iosb; /* I/O status block (NULL=all) */
2248 int only_thread; /* cancel matching this thread */
2249 @END
2252 /* Perform an ioctl on a file */
2253 @REQ(ioctl)
2254 ioctl_code_t code; /* ioctl code */
2255 async_data_t async; /* async I/O parameters */
2256 int blocking; /* whether it's a blocking ioctl */
2257 VARARG(in_data,bytes); /* ioctl input data */
2258 @REPLY
2259 obj_handle_t wait; /* handle to wait on for blocking ioctl */
2260 unsigned int options; /* device open options */
2261 VARARG(out_data,bytes); /* ioctl output data */
2262 @END
2265 /* Retrieve results of an async ioctl */
2266 @REQ(get_ioctl_result)
2267 obj_handle_t handle; /* handle to the device */
2268 client_ptr_t user_arg; /* user arg used to identify the request */
2269 @REPLY
2270 VARARG(out_data,bytes); /* ioctl output data */
2271 @END
2274 /* Create a named pipe */
2275 @REQ(create_named_pipe)
2276 unsigned int access;
2277 unsigned int attributes; /* object attributes */
2278 obj_handle_t rootdir; /* root directory */
2279 unsigned int options;
2280 unsigned int sharing;
2281 unsigned int maxinstances;
2282 unsigned int outsize;
2283 unsigned int insize;
2284 timeout_t timeout;
2285 unsigned int flags;
2286 VARARG(name,unicode_str); /* pipe name */
2287 @REPLY
2288 obj_handle_t handle; /* handle to the pipe */
2289 @END
2291 /* flags in create_named_pipe and get_named_pipe_info */
2292 #define NAMED_PIPE_MESSAGE_STREAM_WRITE 0x0001
2293 #define NAMED_PIPE_MESSAGE_STREAM_READ 0x0002
2294 #define NAMED_PIPE_NONBLOCKING_MODE 0x0004
2295 #define NAMED_PIPE_SERVER_END 0x8000
2297 /* Get named pipe information by handle */
2298 @REQ(get_named_pipe_info)
2299 obj_handle_t handle;
2300 @REPLY
2301 unsigned int flags;
2302 unsigned int sharing;
2303 unsigned int maxinstances;
2304 unsigned int instances;
2305 unsigned int outsize;
2306 unsigned int insize;
2307 @END
2309 /* Set named pipe information by handle */
2310 @REQ(set_named_pipe_info)
2311 obj_handle_t handle;
2312 unsigned int flags;
2313 @END
2315 /* Create a window */
2316 @REQ(create_window)
2317 user_handle_t parent; /* parent window */
2318 user_handle_t owner; /* owner window */
2319 atom_t atom; /* class atom */
2320 mod_handle_t instance; /* module instance */
2321 VARARG(class,unicode_str); /* class name */
2322 @REPLY
2323 user_handle_t handle; /* created window */
2324 user_handle_t parent; /* full handle of parent */
2325 user_handle_t owner; /* full handle of owner */
2326 int extra; /* number of extra bytes */
2327 client_ptr_t class_ptr; /* pointer to class in client address space */
2328 @END
2331 /* Destroy a window */
2332 @REQ(destroy_window)
2333 user_handle_t handle; /* handle to the window */
2334 @END
2337 /* Retrieve the desktop window for the current thread */
2338 @REQ(get_desktop_window)
2339 int force; /* force creation if it doesn't exist */
2340 @REPLY
2341 user_handle_t top_window; /* handle to the desktop window */
2342 user_handle_t msg_window; /* handle to the top-level HWND_MESSAGE parent */
2343 @END
2346 /* Set a window owner */
2347 @REQ(set_window_owner)
2348 user_handle_t handle; /* handle to the window */
2349 user_handle_t owner; /* new owner */
2350 @REPLY
2351 user_handle_t full_owner; /* full handle of new owner */
2352 user_handle_t prev_owner; /* full handle of previous owner */
2353 @END
2356 /* Get information from a window handle */
2357 @REQ(get_window_info)
2358 user_handle_t handle; /* handle to the window */
2359 @REPLY
2360 user_handle_t full_handle; /* full 32-bit handle */
2361 user_handle_t last_active; /* last active popup */
2362 process_id_t pid; /* process owning the window */
2363 thread_id_t tid; /* thread owning the window */
2364 atom_t atom; /* class atom */
2365 int is_unicode; /* ANSI or unicode */
2366 @END
2369 /* Set some information in a window */
2370 @REQ(set_window_info)
2371 unsigned short flags; /* flags for fields to set (see below) */
2372 short int is_unicode; /* ANSI or unicode */
2373 user_handle_t handle; /* handle to the window */
2374 unsigned int style; /* window style */
2375 unsigned int ex_style; /* window extended style */
2376 unsigned int id; /* window id */
2377 mod_handle_t instance; /* creator instance */
2378 lparam_t user_data; /* user-specific data */
2379 int extra_offset; /* offset to set in extra bytes */
2380 data_size_t extra_size; /* size to set in extra bytes */
2381 lparam_t extra_value; /* value to set in extra bytes */
2382 @REPLY
2383 unsigned int old_style; /* old window style */
2384 unsigned int old_ex_style; /* old window extended style */
2385 mod_handle_t old_instance; /* old creator instance */
2386 lparam_t old_user_data; /* old user-specific data */
2387 lparam_t old_extra_value; /* old value in extra bytes */
2388 unsigned int old_id; /* old window id */
2389 @END
2390 #define SET_WIN_STYLE 0x01
2391 #define SET_WIN_EXSTYLE 0x02
2392 #define SET_WIN_ID 0x04
2393 #define SET_WIN_INSTANCE 0x08
2394 #define SET_WIN_USERDATA 0x10
2395 #define SET_WIN_EXTRA 0x20
2396 #define SET_WIN_UNICODE 0x40
2399 /* Set the parent of a window */
2400 @REQ(set_parent)
2401 user_handle_t handle; /* handle to the window */
2402 user_handle_t parent; /* handle to the parent */
2403 @REPLY
2404 user_handle_t old_parent; /* old parent window */
2405 user_handle_t full_parent; /* full handle of new parent */
2406 @END
2409 /* Get a list of the window parents, up to the root of the tree */
2410 @REQ(get_window_parents)
2411 user_handle_t handle; /* handle to the window */
2412 @REPLY
2413 int count; /* total count of parents */
2414 VARARG(parents,user_handles); /* parent handles */
2415 @END
2418 /* Get a list of the window children */
2419 @REQ(get_window_children)
2420 obj_handle_t desktop; /* handle to desktop */
2421 user_handle_t parent; /* parent window */
2422 atom_t atom; /* class atom for the listed children */
2423 thread_id_t tid; /* thread owning the listed children */
2424 VARARG(class,unicode_str); /* class name */
2425 @REPLY
2426 int count; /* total count of children */
2427 VARARG(children,user_handles); /* children handles */
2428 @END
2431 /* Get a list of the window children that contain a given point */
2432 @REQ(get_window_children_from_point)
2433 user_handle_t parent; /* parent window */
2434 int x; /* point in parent coordinates */
2435 int y;
2436 @REPLY
2437 int count; /* total count of children */
2438 VARARG(children,user_handles); /* children handles */
2439 @END
2442 /* Get window tree information from a window handle */
2443 @REQ(get_window_tree)
2444 user_handle_t handle; /* handle to the window */
2445 @REPLY
2446 user_handle_t parent; /* parent window */
2447 user_handle_t owner; /* owner window */
2448 user_handle_t next_sibling; /* next sibling in Z-order */
2449 user_handle_t prev_sibling; /* prev sibling in Z-order */
2450 user_handle_t first_sibling; /* first sibling in Z-order */
2451 user_handle_t last_sibling; /* last sibling in Z-order */
2452 user_handle_t first_child; /* first child */
2453 user_handle_t last_child; /* last child */
2454 @END
2456 /* Set the position and Z order of a window */
2457 @REQ(set_window_pos)
2458 unsigned short swp_flags; /* SWP_* flags */
2459 unsigned short paint_flags; /* paint flags (see below) */
2460 user_handle_t handle; /* handle to the window */
2461 user_handle_t previous; /* previous window in Z order */
2462 rectangle_t window; /* window rectangle (in parent coords) */
2463 rectangle_t client; /* client rectangle (in parent coords) */
2464 VARARG(valid,rectangles); /* valid rectangles from WM_NCCALCSIZE (in parent coords) */
2465 @REPLY
2466 unsigned int new_style; /* new window style */
2467 unsigned int new_ex_style; /* new window extended style */
2468 user_handle_t surface_win; /* window that needs a surface update */
2469 @END
2470 #define SET_WINPOS_PAINT_SURFACE 0x01 /* window has a paintable surface */
2471 #define SET_WINPOS_PIXEL_FORMAT 0x02 /* window has a custom pixel format */
2473 /* Get the window and client rectangles of a window */
2474 @REQ(get_window_rectangles)
2475 user_handle_t handle; /* handle to the window */
2476 int relative; /* coords relative to (see below) */
2477 @REPLY
2478 rectangle_t window; /* window rectangle */
2479 rectangle_t visible; /* visible part of the window rectangle */
2480 rectangle_t client; /* client rectangle */
2481 @END
2482 enum coords_relative
2484 COORDS_CLIENT, /* relative to client area */
2485 COORDS_WINDOW, /* relative to whole window area */
2486 COORDS_PARENT, /* relative to parent's client area */
2487 COORDS_SCREEN /* relative to screen origin */
2491 /* Get the window text */
2492 @REQ(get_window_text)
2493 user_handle_t handle; /* handle to the window */
2494 @REPLY
2495 VARARG(text,unicode_str); /* window text */
2496 @END
2499 /* Set the window text */
2500 @REQ(set_window_text)
2501 user_handle_t handle; /* handle to the window */
2502 VARARG(text,unicode_str); /* window text */
2503 @END
2506 /* Get the coordinates offset between two windows */
2507 @REQ(get_windows_offset)
2508 user_handle_t from; /* handle to the first window */
2509 user_handle_t to; /* handle to the second window */
2510 @REPLY
2511 int x; /* x coordinate offset */
2512 int y; /* y coordinate offset */
2513 int mirror; /* whether to mirror the x coordinate */
2514 @END
2517 /* Get the visible region of a window */
2518 @REQ(get_visible_region)
2519 user_handle_t window; /* handle to the window */
2520 unsigned int flags; /* DCX flags */
2521 @REPLY
2522 user_handle_t top_win; /* top window to clip against */
2523 rectangle_t top_rect; /* top window visible rect with screen coords */
2524 rectangle_t win_rect; /* window rect in screen coords */
2525 unsigned int paint_flags; /* paint flags (from SET_WINPOS_* flags) */
2526 data_size_t total_size; /* total size of the resulting region */
2527 VARARG(region,rectangles); /* list of rectangles for the region (in screen coords) */
2528 @END
2531 /* Get the visible surface region of a window */
2532 @REQ(get_surface_region)
2533 user_handle_t window; /* handle to the window */
2534 @REPLY
2535 rectangle_t visible_rect; /* window visible rect in screen coords */
2536 data_size_t total_size; /* total size of the resulting region */
2537 VARARG(region,rectangles); /* list of rectangles for the region (in screen coords) */
2538 @END
2541 /* Get the window region */
2542 @REQ(get_window_region)
2543 user_handle_t window; /* handle to the window */
2544 @REPLY
2545 data_size_t total_size; /* total size of the resulting region */
2546 VARARG(region,rectangles); /* list of rectangles for the region (in window coords) */
2547 @END
2550 /* Set the window region */
2551 @REQ(set_window_region)
2552 user_handle_t window; /* handle to the window */
2553 int redraw; /* redraw the window? */
2554 VARARG(region,rectangles); /* list of rectangles for the region (in window coords) */
2555 @END
2558 /* Get the window update region */
2559 @REQ(get_update_region)
2560 user_handle_t window; /* handle to the window */
2561 user_handle_t from_child; /* child to start searching from */
2562 unsigned int flags; /* update flags (see below) */
2563 @REPLY
2564 user_handle_t child; /* child to repaint (or window itself) */
2565 unsigned int flags; /* resulting update flags (see below) */
2566 data_size_t total_size; /* total size of the resulting region */
2567 VARARG(region,rectangles); /* list of rectangles for the region (in screen coords) */
2568 @END
2569 #define UPDATE_NONCLIENT 0x01 /* get region for repainting non-client area */
2570 #define UPDATE_ERASE 0x02 /* get region for erasing client area */
2571 #define UPDATE_PAINT 0x04 /* get region for painting client area */
2572 #define UPDATE_INTERNALPAINT 0x08 /* get region if internal paint is pending */
2573 #define UPDATE_ALLCHILDREN 0x10 /* force repaint of all children */
2574 #define UPDATE_NOCHILDREN 0x20 /* don't try to repaint any children */
2575 #define UPDATE_NOREGION 0x40 /* don't return a region, only the flags */
2576 #define UPDATE_DELAYED_ERASE 0x80 /* still needs erase after BeginPaint */
2579 /* Update the z order of a window so that a given rectangle is fully visible */
2580 @REQ(update_window_zorder)
2581 user_handle_t window; /* handle to the window */
2582 rectangle_t rect; /* rectangle that must be visible (in client coords) */
2583 @END
2586 /* Mark parts of a window as needing a redraw */
2587 @REQ(redraw_window)
2588 user_handle_t window; /* handle to the window */
2589 unsigned int flags; /* RDW_* flags */
2590 VARARG(region,rectangles); /* list of rectangles for the region (in window coords) */
2591 @END
2594 /* Set a window property */
2595 @REQ(set_window_property)
2596 user_handle_t window; /* handle to the window */
2597 lparam_t data; /* data to store */
2598 atom_t atom; /* property atom (if no name specified) */
2599 VARARG(name,unicode_str); /* property name */
2600 @END
2603 /* Remove a window property */
2604 @REQ(remove_window_property)
2605 user_handle_t window; /* handle to the window */
2606 atom_t atom; /* property atom (if no name specified) */
2607 VARARG(name,unicode_str); /* property name */
2608 @REPLY
2609 lparam_t data; /* data stored in property */
2610 @END
2613 /* Get a window property */
2614 @REQ(get_window_property)
2615 user_handle_t window; /* handle to the window */
2616 atom_t atom; /* property atom (if no name specified) */
2617 VARARG(name,unicode_str); /* property name */
2618 @REPLY
2619 lparam_t data; /* data stored in property */
2620 @END
2623 /* Get the list of properties of a window */
2624 @REQ(get_window_properties)
2625 user_handle_t window; /* handle to the window */
2626 @REPLY
2627 int total; /* total number of properties */
2628 VARARG(props,properties); /* list of properties */
2629 @END
2632 /* Create a window station */
2633 @REQ(create_winstation)
2634 unsigned int flags; /* window station flags */
2635 unsigned int access; /* wanted access rights */
2636 unsigned int attributes; /* object attributes */
2637 VARARG(name,unicode_str); /* object name */
2638 @REPLY
2639 obj_handle_t handle; /* handle to the window station */
2640 @END
2643 /* Open a handle to a window station */
2644 @REQ(open_winstation)
2645 unsigned int access; /* wanted access rights */
2646 unsigned int attributes; /* object attributes */
2647 VARARG(name,unicode_str); /* object name */
2648 @REPLY
2649 obj_handle_t handle; /* handle to the window station */
2650 @END
2653 /* Close a window station */
2654 @REQ(close_winstation)
2655 obj_handle_t handle; /* handle to the window station */
2656 @END
2659 /* Get the process current window station */
2660 @REQ(get_process_winstation)
2661 @REPLY
2662 obj_handle_t handle; /* handle to the window station */
2663 @END
2666 /* Set the process current window station */
2667 @REQ(set_process_winstation)
2668 obj_handle_t handle; /* handle to the window station */
2669 @END
2672 /* Enumerate window stations */
2673 @REQ(enum_winstation)
2674 unsigned int index; /* current index */
2675 @REPLY
2676 unsigned int next; /* next index */
2677 VARARG(name,unicode_str); /* window station name */
2678 @END
2681 /* Create a desktop */
2682 @REQ(create_desktop)
2683 unsigned int flags; /* desktop flags */
2684 unsigned int access; /* wanted access rights */
2685 unsigned int attributes; /* object attributes */
2686 VARARG(name,unicode_str); /* object name */
2687 @REPLY
2688 obj_handle_t handle; /* handle to the desktop */
2689 @END
2692 /* Open a handle to a desktop */
2693 @REQ(open_desktop)
2694 obj_handle_t winsta; /* window station to open (null allowed) */
2695 unsigned int flags; /* desktop flags */
2696 unsigned int access; /* wanted access rights */
2697 unsigned int attributes; /* object attributes */
2698 VARARG(name,unicode_str); /* object name */
2699 @REPLY
2700 obj_handle_t handle; /* handle to the desktop */
2701 @END
2704 /* Open a handle to current input desktop */
2705 @REQ(open_input_desktop)
2706 unsigned int flags; /* desktop flags */
2707 unsigned int access; /* wanted access rights */
2708 unsigned int attributes; /* object attributes */
2709 @REPLY
2710 obj_handle_t handle; /* handle to the desktop */
2711 @END
2714 /* Close a desktop */
2715 @REQ(close_desktop)
2716 obj_handle_t handle; /* handle to the desktop */
2717 @END
2720 /* Get the thread current desktop */
2721 @REQ(get_thread_desktop)
2722 thread_id_t tid; /* thread id */
2723 @REPLY
2724 obj_handle_t handle; /* handle to the desktop */
2725 @END
2728 /* Set the thread current desktop */
2729 @REQ(set_thread_desktop)
2730 obj_handle_t handle; /* handle to the desktop */
2731 @END
2734 /* Enumerate desktops */
2735 @REQ(enum_desktop)
2736 obj_handle_t winstation; /* handle to the window station */
2737 unsigned int index; /* current index */
2738 @REPLY
2739 unsigned int next; /* next index */
2740 VARARG(name,unicode_str); /* window station name */
2741 @END
2744 /* Get/set information about a user object (window station or desktop) */
2745 @REQ(set_user_object_info)
2746 obj_handle_t handle; /* handle to the object */
2747 unsigned int flags; /* information to set */
2748 unsigned int obj_flags; /* new object flags */
2749 @REPLY
2750 int is_desktop; /* is object a desktop? */
2751 unsigned int old_obj_flags; /* old object flags */
2752 VARARG(name,unicode_str); /* object name */
2753 @END
2754 #define SET_USER_OBJECT_FLAGS 1
2757 /* Register a hotkey */
2758 @REQ(register_hotkey)
2759 user_handle_t window; /* handle to the window */
2760 int id; /* hotkey identifier */
2761 unsigned int flags; /* modifier keys */
2762 unsigned int vkey; /* virtual key code */
2763 @REPLY
2764 int replaced; /* did we replace an existing hotkey? */
2765 unsigned int flags; /* flags of replaced hotkey */
2766 unsigned int vkey; /* virtual key code of replaced hotkey */
2767 @END
2770 /* Unregister a hotkey */
2771 @REQ(unregister_hotkey)
2772 user_handle_t window; /* handle to the window */
2773 int id; /* hotkey identifier */
2774 @REPLY
2775 unsigned int flags; /* flags of removed hotkey */
2776 unsigned int vkey; /* virtual key code of removed hotkey */
2777 @END
2780 /* Attach (or detach) thread inputs */
2781 @REQ(attach_thread_input)
2782 thread_id_t tid_from; /* thread to be attached */
2783 thread_id_t tid_to; /* thread to which tid_from should be attached */
2784 int attach; /* is it an attach? */
2785 @END
2788 /* Get input data for a given thread */
2789 @REQ(get_thread_input)
2790 thread_id_t tid; /* id of thread */
2791 @REPLY
2792 user_handle_t focus; /* handle to the focus window */
2793 user_handle_t capture; /* handle to the capture window */
2794 user_handle_t active; /* handle to the active window */
2795 user_handle_t foreground; /* handle to the global foreground window */
2796 user_handle_t menu_owner; /* handle to the menu owner */
2797 user_handle_t move_size; /* handle to the moving/resizing window */
2798 user_handle_t caret; /* handle to the caret window */
2799 user_handle_t cursor; /* handle to the cursor */
2800 int show_count; /* cursor show count */
2801 rectangle_t rect; /* caret rectangle */
2802 @END
2805 /* Get the time of the last input event */
2806 @REQ(get_last_input_time)
2807 @REPLY
2808 unsigned int time;
2809 @END
2812 /* Retrieve queue keyboard state for a given thread */
2813 @REQ(get_key_state)
2814 thread_id_t tid; /* id of thread */
2815 int key; /* optional key code or -1 */
2816 @REPLY
2817 unsigned char state; /* state of specified key */
2818 VARARG(keystate,bytes); /* state array for all the keys */
2819 @END
2821 /* Set queue keyboard state for a given thread */
2822 @REQ(set_key_state)
2823 thread_id_t tid; /* id of thread */
2824 int async; /* whether to change the async state too */
2825 VARARG(keystate,bytes); /* state array for all the keys */
2826 @END
2828 /* Set the system foreground window */
2829 @REQ(set_foreground_window)
2830 user_handle_t handle; /* handle to the foreground window */
2831 @REPLY
2832 user_handle_t previous; /* handle to the previous foreground window */
2833 int send_msg_old; /* whether we have to send a msg to the old window */
2834 int send_msg_new; /* whether we have to send a msg to the new window */
2835 @END
2837 /* Set the current thread focus window */
2838 @REQ(set_focus_window)
2839 user_handle_t handle; /* handle to the focus window */
2840 @REPLY
2841 user_handle_t previous; /* handle to the previous focus window */
2842 @END
2844 /* Set the current thread active window */
2845 @REQ(set_active_window)
2846 user_handle_t handle; /* handle to the active window */
2847 @REPLY
2848 user_handle_t previous; /* handle to the previous active window */
2849 @END
2851 /* Set the current thread capture window */
2852 @REQ(set_capture_window)
2853 user_handle_t handle; /* handle to the capture window */
2854 unsigned int flags; /* capture flags (see below) */
2855 @REPLY
2856 user_handle_t previous; /* handle to the previous capture window */
2857 user_handle_t full_handle; /* full 32-bit handle of new capture window */
2858 @END
2859 #define CAPTURE_MENU 0x01 /* capture is for a menu */
2860 #define CAPTURE_MOVESIZE 0x02 /* capture is for moving/resizing */
2863 /* Set the current thread caret window */
2864 @REQ(set_caret_window)
2865 user_handle_t handle; /* handle to the caret window */
2866 int width; /* caret width */
2867 int height; /* caret height */
2868 @REPLY
2869 user_handle_t previous; /* handle to the previous caret window */
2870 rectangle_t old_rect; /* previous caret rectangle */
2871 int old_hide; /* previous hide count */
2872 int old_state; /* previous caret state (1=on, 0=off) */
2873 @END
2876 /* Set the current thread caret information */
2877 @REQ(set_caret_info)
2878 unsigned int flags; /* caret flags (see below) */
2879 user_handle_t handle; /* handle to the caret window */
2880 int x; /* caret x position */
2881 int y; /* caret y position */
2882 int hide; /* increment for hide count (can be negative to show it) */
2883 int state; /* caret state (1=on, 0=off, -1=toggle current state) */
2884 @REPLY
2885 user_handle_t full_handle; /* handle to the current caret window */
2886 rectangle_t old_rect; /* previous caret rectangle */
2887 int old_hide; /* previous hide count */
2888 int old_state; /* previous caret state (1=on, 0=off) */
2889 @END
2890 #define SET_CARET_POS 0x01 /* set the caret position from x,y */
2891 #define SET_CARET_HIDE 0x02 /* increment the caret hide count */
2892 #define SET_CARET_STATE 0x04 /* set the caret on/off state */
2895 /* Set a window hook */
2896 @REQ(set_hook)
2897 int id; /* id of the hook */
2898 process_id_t pid; /* id of process to set the hook into */
2899 thread_id_t tid; /* id of thread to set the hook into */
2900 int event_min;
2901 int event_max;
2902 client_ptr_t proc; /* hook procedure */
2903 int flags;
2904 int unicode; /* is it a unicode hook? */
2905 VARARG(module,unicode_str); /* module name */
2906 @REPLY
2907 user_handle_t handle; /* handle to the hook */
2908 unsigned int active_hooks; /* active hooks bitmap */
2909 @END
2912 /* Remove a window hook */
2913 @REQ(remove_hook)
2914 user_handle_t handle; /* handle to the hook */
2915 client_ptr_t proc; /* hook procedure if handle is 0 */
2916 int id; /* id of the hook if handle is 0 */
2917 @REPLY
2918 unsigned int active_hooks; /* active hooks bitmap */
2919 @END
2922 /* Start calling a hook chain */
2923 @REQ(start_hook_chain)
2924 int id; /* id of the hook */
2925 int event; /* signalled event */
2926 user_handle_t window; /* handle to the event window */
2927 int object_id; /* object id for out of context winevent */
2928 int child_id; /* child id for out of context winevent */
2929 @REPLY
2930 user_handle_t handle; /* handle to the next hook */
2931 process_id_t pid; /* process id for low-level keyboard/mouse hooks */
2932 thread_id_t tid; /* thread id for low-level keyboard/mouse hooks */
2933 int unicode; /* is it a unicode hook? */
2934 client_ptr_t proc; /* hook procedure */
2935 unsigned int active_hooks; /* active hooks bitmap */
2936 VARARG(module,unicode_str); /* module name */
2937 @END
2940 /* Finished calling a hook chain */
2941 @REQ(finish_hook_chain)
2942 int id; /* id of the hook */
2943 @END
2946 /* Get the hook information */
2947 @REQ(get_hook_info)
2948 user_handle_t handle; /* handle to the current hook */
2949 int get_next; /* do we want info about current or next hook? */
2950 int event; /* signalled event */
2951 user_handle_t window; /* handle to the event window */
2952 int object_id; /* object id for out of context winevent */
2953 int child_id; /* child id for out of context winevent */
2954 @REPLY
2955 user_handle_t handle; /* handle to the hook */
2956 int id; /* id of the hook */
2957 process_id_t pid; /* process id for low-level keyboard/mouse hooks */
2958 thread_id_t tid; /* thread id for low-level keyboard/mouse hooks */
2959 client_ptr_t proc; /* hook procedure */
2960 int unicode; /* is it a unicode hook? */
2961 VARARG(module,unicode_str); /* module name */
2962 @END
2965 /* Create a window class */
2966 @REQ(create_class)
2967 int local; /* is it a local class? */
2968 atom_t atom; /* class atom */
2969 unsigned int style; /* class style */
2970 mod_handle_t instance; /* module instance */
2971 int extra; /* number of extra class bytes */
2972 int win_extra; /* number of window extra bytes */
2973 client_ptr_t client_ptr; /* pointer to class in client address space */
2974 VARARG(name,unicode_str); /* class name */
2975 @REPLY
2976 atom_t atom; /* resulting class atom */
2977 @END
2980 /* Destroy a window class */
2981 @REQ(destroy_class)
2982 atom_t atom; /* class atom */
2983 mod_handle_t instance; /* module instance */
2984 VARARG(name,unicode_str); /* class name */
2985 @REPLY
2986 client_ptr_t client_ptr; /* pointer to class in client address space */
2987 @END
2990 /* Set some information in a class */
2991 @REQ(set_class_info)
2992 user_handle_t window; /* handle to the window */
2993 unsigned int flags; /* flags for info to set (see below) */
2994 atom_t atom; /* class atom */
2995 unsigned int style; /* class style */
2996 int win_extra; /* number of window extra bytes */
2997 mod_handle_t instance; /* module instance */
2998 int extra_offset; /* offset to set in extra bytes */
2999 data_size_t extra_size; /* size to set in extra bytes */
3000 lparam_t extra_value; /* value to set in extra bytes */
3001 @REPLY
3002 atom_t old_atom; /* previous class atom */
3003 unsigned int old_style; /* previous class style */
3004 int old_extra; /* previous number of class extra bytes */
3005 int old_win_extra; /* previous number of window extra bytes */
3006 mod_handle_t old_instance; /* previous module instance */
3007 lparam_t old_extra_value; /* old value in extra bytes */
3008 @END
3009 #define SET_CLASS_ATOM 0x0001
3010 #define SET_CLASS_STYLE 0x0002
3011 #define SET_CLASS_WINEXTRA 0x0004
3012 #define SET_CLASS_INSTANCE 0x0008
3013 #define SET_CLASS_EXTRA 0x0010
3016 /* Set/get clipboard information */
3017 @REQ(set_clipboard_info)
3018 unsigned int flags; /* flags for fields to set (see below) */
3019 user_handle_t clipboard; /* clipboard window */
3020 user_handle_t owner; /* clipboard owner */
3021 user_handle_t viewer; /* first clipboard viewer */
3022 unsigned int seqno; /* change sequence number */
3023 @REPLY
3024 unsigned int flags; /* status flags (see below) */
3025 user_handle_t old_clipboard; /* old clipboard window */
3026 user_handle_t old_owner; /* old clipboard owner */
3027 user_handle_t old_viewer; /* old clipboard viewer */
3028 unsigned int seqno; /* current sequence number */
3029 @END
3031 #define SET_CB_OPEN 0x001
3032 #define SET_CB_OWNER 0x002
3033 #define SET_CB_VIEWER 0x004
3034 #define SET_CB_SEQNO 0x008
3035 #define SET_CB_RELOWNER 0x010
3036 #define SET_CB_CLOSE 0x020
3037 #define CB_OPEN 0x040
3038 #define CB_OWNER 0x080
3039 #define CB_PROCESS 0x100
3042 /* Open a security token */
3043 @REQ(open_token)
3044 obj_handle_t handle; /* handle to the thread or process */
3045 unsigned int access; /* access rights to the new token */
3046 unsigned int attributes;/* object attributes */
3047 unsigned int flags; /* flags (see below) */
3048 @REPLY
3049 obj_handle_t token; /* handle to the token */
3050 @END
3051 #define OPEN_TOKEN_THREAD 1
3052 #define OPEN_TOKEN_AS_SELF 2
3055 /* Set/get the global windows */
3056 @REQ(set_global_windows)
3057 unsigned int flags; /* flags for fields to set (see below) */
3058 user_handle_t shell_window; /* handle to the new shell window */
3059 user_handle_t shell_listview; /* handle to the new shell listview window */
3060 user_handle_t progman_window; /* handle to the new program manager window */
3061 user_handle_t taskman_window; /* handle to the new task manager window */
3062 @REPLY
3063 user_handle_t old_shell_window; /* handle to the shell window */
3064 user_handle_t old_shell_listview; /* handle to the shell listview window */
3065 user_handle_t old_progman_window; /* handle to the new program manager window */
3066 user_handle_t old_taskman_window; /* handle to the new task manager window */
3067 @END
3068 #define SET_GLOBAL_SHELL_WINDOWS 0x01 /* set both main shell and listview windows */
3069 #define SET_GLOBAL_PROGMAN_WINDOW 0x02
3070 #define SET_GLOBAL_TASKMAN_WINDOW 0x04
3072 /* Adjust the privileges held by a token */
3073 @REQ(adjust_token_privileges)
3074 obj_handle_t handle; /* handle to the token */
3075 int disable_all; /* disable all privileges? */
3076 int get_modified_state; /* get modified privileges? */
3077 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges to enable/disable/remove */
3078 @REPLY
3079 unsigned int len; /* total length in bytes required to store token privileges */
3080 VARARG(privileges,LUID_AND_ATTRIBUTES); /* modified privileges */
3081 @END
3083 /* Retrieves the set of privileges held by or available to a token */
3084 @REQ(get_token_privileges)
3085 obj_handle_t handle; /* handle to the token */
3086 @REPLY
3087 unsigned int len; /* total length in bytes required to store token privileges */
3088 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges held by or available to a token */
3089 @END
3091 /* Check the token has the required privileges */
3092 @REQ(check_token_privileges)
3093 obj_handle_t handle; /* handle to the token */
3094 int all_required; /* are all the privileges required for the check to succeed? */
3095 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges to check */
3096 @REPLY
3097 int has_privileges; /* does the token have the required privileges? */
3098 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges held by or available to a token */
3099 @END
3101 @REQ(duplicate_token)
3102 obj_handle_t handle; /* handle to the token to duplicate */
3103 unsigned int access; /* access rights to the new token */
3104 unsigned int attributes; /* object attributes */
3105 int primary; /* is the new token to be a primary one? */
3106 int impersonation_level; /* impersonation level of the new token */
3107 @REPLY
3108 obj_handle_t new_handle; /* duplicated handle */
3109 @END
3111 @REQ(access_check)
3112 obj_handle_t handle; /* handle to the token */
3113 unsigned int desired_access; /* desired access to the object */
3114 unsigned int mapping_read; /* mapping from generic read to specific rights */
3115 unsigned int mapping_write; /* mapping from generic write to specific rights */
3116 unsigned int mapping_execute; /* mapping from generic execute to specific rights */
3117 unsigned int mapping_all; /* mapping from generic all to specific rights */
3118 VARARG(sd,security_descriptor); /* security descriptor to check */
3119 @REPLY
3120 unsigned int access_granted; /* access rights actually granted */
3121 unsigned int access_status; /* was access granted? */
3122 unsigned int privileges_len; /* length needed to store privileges */
3123 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges used during access check */
3124 @END
3126 @REQ(get_token_sid)
3127 obj_handle_t handle; /* handle to the token */
3128 unsigned int which_sid; /* which SID to retrieve from the token */
3129 @REPLY
3130 data_size_t sid_len; /* length needed to store sid */
3131 VARARG(sid,SID); /* the sid specified by which_sid from the token */
3132 @END
3134 @REQ(get_token_groups)
3135 obj_handle_t handle; /* handle to the token */
3136 @REPLY
3137 data_size_t user_len; /* length needed to store user */
3138 VARARG(user,token_groups); /* groups the token's user belongs to */
3139 @END
3141 @REQ(get_token_default_dacl)
3142 obj_handle_t handle; /* handle to the token */
3143 @REPLY
3144 data_size_t acl_len; /* length needed to store access control list */
3145 VARARG(acl,ACL); /* access control list */
3146 @END
3148 @REQ(set_token_default_dacl)
3149 obj_handle_t handle; /* handle to the token */
3150 VARARG(acl,ACL); /* default dacl to set */
3151 @END
3153 @REQ(set_security_object)
3154 obj_handle_t handle; /* handle to the object */
3155 unsigned int security_info; /* which parts of security descriptor to set */
3156 VARARG(sd,security_descriptor); /* security descriptor to set */
3157 @END
3159 @REQ(get_security_object)
3160 obj_handle_t handle; /* handle to the object */
3161 unsigned int security_info; /* which parts of security descriptor to get */
3162 @REPLY
3163 unsigned int sd_len; /* buffer size needed for sd */
3164 VARARG(sd,security_descriptor); /* retrieved security descriptor */
3165 @END
3167 /* Create a mailslot */
3168 @REQ(create_mailslot)
3169 unsigned int access; /* wanted access rights */
3170 unsigned int attributes; /* object attributes */
3171 obj_handle_t rootdir; /* root directory */
3172 timeout_t read_timeout;
3173 unsigned int max_msgsize;
3174 VARARG(name,unicode_str); /* mailslot name */
3175 @REPLY
3176 obj_handle_t handle; /* handle to the mailslot */
3177 @END
3180 /* Set mailslot information */
3181 @REQ(set_mailslot_info)
3182 obj_handle_t handle; /* handle to the mailslot */
3183 timeout_t read_timeout;
3184 unsigned int flags;
3185 @REPLY
3186 timeout_t read_timeout;
3187 unsigned int max_msgsize;
3188 @END
3189 #define MAILSLOT_SET_READ_TIMEOUT 1
3192 /* Create a directory object */
3193 @REQ(create_directory)
3194 unsigned int access; /* access flags */
3195 unsigned int attributes; /* object attributes */
3196 obj_handle_t rootdir; /* root directory */
3197 VARARG(directory_name,unicode_str); /* Directory name */
3198 @REPLY
3199 obj_handle_t handle; /* handle to the directory */
3200 @END
3203 /* Open a directory object */
3204 @REQ(open_directory)
3205 unsigned int access; /* access flags */
3206 unsigned int attributes; /* object attributes */
3207 obj_handle_t rootdir; /* root directory */
3208 VARARG(directory_name,unicode_str); /* Directory name */
3209 @REPLY
3210 obj_handle_t handle; /* handle to the directory */
3211 @END
3214 /* Get a directory entry by index */
3215 @REQ(get_directory_entry)
3216 obj_handle_t handle; /* handle to the directory */
3217 unsigned int index; /* entry index */
3218 @REPLY
3219 data_size_t name_len; /* length of the entry name in bytes */
3220 VARARG(name,unicode_str,name_len); /* entry name */
3221 VARARG(type,unicode_str); /* entry type */
3222 @END
3225 /* Create a symbolic link object */
3226 @REQ(create_symlink)
3227 unsigned int access; /* access flags */
3228 unsigned int attributes; /* object attributes */
3229 obj_handle_t rootdir; /* root directory */
3230 data_size_t name_len; /* length of the symlink name in bytes */
3231 VARARG(name,unicode_str,name_len); /* symlink name */
3232 VARARG(target_name,unicode_str); /* target name */
3233 @REPLY
3234 obj_handle_t handle; /* handle to the symlink */
3235 @END
3238 /* Open a symbolic link object */
3239 @REQ(open_symlink)
3240 unsigned int access; /* access flags */
3241 unsigned int attributes; /* object attributes */
3242 obj_handle_t rootdir; /* root directory */
3243 VARARG(name,unicode_str); /* symlink name */
3244 @REPLY
3245 obj_handle_t handle; /* handle to the symlink */
3246 @END
3249 /* Query a symbolic link object */
3250 @REQ(query_symlink)
3251 obj_handle_t handle; /* handle to the symlink */
3252 @REPLY
3253 data_size_t total; /* total needed size for name */
3254 VARARG(target_name,unicode_str); /* target name */
3255 @END
3258 /* Query basic object information */
3259 @REQ(get_object_info)
3260 obj_handle_t handle; /* handle to the object */
3261 @REPLY
3262 unsigned int access; /* granted access mask */
3263 unsigned int ref_count; /* object ref count */
3264 data_size_t total; /* total needed size for name */
3265 VARARG(name,unicode_str); /* object name */
3266 @END
3269 /* Unlink a named object */
3270 @REQ(unlink_object)
3271 obj_handle_t handle; /* handle to the object */
3272 @END
3275 /* Query the impersonation level of an impersonation token */
3276 @REQ(get_token_impersonation_level)
3277 obj_handle_t handle; /* handle to the object */
3278 @REPLY
3279 int impersonation_level; /* impersonation level of the impersonation token */
3280 @END
3282 /* Allocate a locally-unique identifier */
3283 @REQ(allocate_locally_unique_id)
3284 @REPLY
3285 luid_t luid;
3286 @END
3289 /* Create a device manager */
3290 @REQ(create_device_manager)
3291 unsigned int access; /* wanted access rights */
3292 unsigned int attributes; /* object attributes */
3293 @REPLY
3294 obj_handle_t handle; /* handle to the device */
3295 @END
3298 /* Create a device */
3299 @REQ(create_device)
3300 unsigned int access; /* wanted access rights */
3301 unsigned int attributes; /* object attributes */
3302 obj_handle_t rootdir; /* root directory */
3303 client_ptr_t user_ptr; /* opaque ptr for use by client */
3304 obj_handle_t manager; /* device manager */
3305 VARARG(name,unicode_str); /* object name */
3306 @REPLY
3307 obj_handle_t handle; /* handle to the device */
3308 @END
3311 /* Delete a device */
3312 @REQ(delete_device)
3313 obj_handle_t handle; /* handle to the device */
3314 @END
3317 /* Retrieve the next pending device ioctl request */
3318 @REQ(get_next_device_request)
3319 obj_handle_t manager; /* handle to the device manager */
3320 obj_handle_t prev; /* handle to the previous ioctl */
3321 unsigned int status; /* status of the previous ioctl */
3322 VARARG(prev_data,bytes); /* output data of the previous ioctl */
3323 @REPLY
3324 obj_handle_t next; /* handle to the next ioctl */
3325 ioctl_code_t code; /* ioctl code */
3326 client_ptr_t user_ptr; /* opaque ptr for the device */
3327 process_id_t client_pid; /* pid of process calling ioctl */
3328 thread_id_t client_tid; /* tid of thread calling ioctl */
3329 data_size_t in_size; /* total needed input size */
3330 data_size_t out_size; /* needed output size */
3331 VARARG(next_data,bytes); /* input data of the next ioctl */
3332 @END
3335 /* Make the current process a system process */
3336 @REQ(make_process_system)
3337 @REPLY
3338 obj_handle_t event; /* event signaled when all user processes have exited */
3339 @END
3342 /* Get detailed fixed-size information about a token */
3343 @REQ(get_token_statistics)
3344 obj_handle_t handle; /* handle to the object */
3345 @REPLY
3346 luid_t token_id; /* locally-unique identifier of the token */
3347 luid_t modified_id; /* locally-unique identifier of the modified version of the token */
3348 int primary; /* is the token primary or impersonation? */
3349 int impersonation_level; /* level of impersonation */
3350 int group_count; /* the number of groups the token is a member of */
3351 int privilege_count; /* the number of privileges the token has */
3352 @END
3355 /* Create I/O completion port */
3356 @REQ(create_completion)
3357 unsigned int access; /* desired access to a port */
3358 unsigned int attributes; /* object attributes */
3359 unsigned int concurrent; /* max number of concurrent active threads */
3360 obj_handle_t rootdir; /* root directory */
3361 VARARG(filename,string); /* port name */
3362 @REPLY
3363 obj_handle_t handle; /* port handle */
3364 @END
3367 /* Open I/O completion port */
3368 @REQ(open_completion)
3369 unsigned int access; /* desired access to a port */
3370 unsigned int attributes; /* object attributes */
3371 obj_handle_t rootdir; /* root directory */
3372 VARARG(filename,string); /* port name */
3373 @REPLY
3374 obj_handle_t handle; /* port handle */
3375 @END
3378 /* add completion to completion port */
3379 @REQ(add_completion)
3380 obj_handle_t handle; /* port handle */
3381 apc_param_t ckey; /* completion key */
3382 apc_param_t cvalue; /* completion value */
3383 apc_param_t information; /* IO_STATUS_BLOCK Information */
3384 unsigned int status; /* completion result */
3385 @END
3388 /* get completion from completion port queue */
3389 @REQ(remove_completion)
3390 obj_handle_t handle; /* port handle */
3391 @REPLY
3392 apc_param_t ckey; /* completion key */
3393 apc_param_t cvalue; /* completion value */
3394 apc_param_t information; /* IO_STATUS_BLOCK Information */
3395 unsigned int status; /* completion result */
3396 @END
3399 /* get completion queue depth */
3400 @REQ(query_completion)
3401 obj_handle_t handle; /* port handle */
3402 @REPLY
3403 unsigned int depth; /* completion queue depth */
3404 @END
3407 /* associate object with completion port */
3408 @REQ(set_completion_info)
3409 obj_handle_t handle; /* object handle */
3410 apc_param_t ckey; /* completion key */
3411 obj_handle_t chandle; /* port handle */
3412 @END
3415 /* check for associated completion and push msg */
3416 @REQ(add_fd_completion)
3417 obj_handle_t handle; /* async' object */
3418 apc_param_t cvalue; /* completion value */
3419 apc_param_t information; /* IO_STATUS_BLOCK Information */
3420 unsigned int status; /* completion status */
3421 @END
3424 /* Retrieve layered info for a window */
3425 @REQ(get_window_layered_info)
3426 user_handle_t handle; /* handle to the window */
3427 @REPLY
3428 unsigned int color_key; /* color key */
3429 unsigned int alpha; /* alpha (0..255) */
3430 unsigned int flags; /* LWA_* flags */
3431 @END
3434 /* Set layered info for a window */
3435 @REQ(set_window_layered_info)
3436 user_handle_t handle; /* handle to the window */
3437 unsigned int color_key; /* color key */
3438 unsigned int alpha; /* alpha (0..255) */
3439 unsigned int flags; /* LWA_* flags */
3440 @END
3443 /* Allocate an arbitrary user handle */
3444 @REQ(alloc_user_handle)
3445 @REPLY
3446 user_handle_t handle; /* allocated handle */
3447 @END
3450 /* Free an arbitrary user handle */
3451 @REQ(free_user_handle)
3452 user_handle_t handle; /* handle to free*/
3453 @END
3456 /* Set/get the current cursor */
3457 @REQ(set_cursor)
3458 unsigned int flags; /* flags for fields to set (see below) */
3459 user_handle_t handle; /* handle to the cursor */
3460 int show_count; /* show count increment/decrement */
3461 int x; /* cursor position */
3462 int y;
3463 rectangle_t clip; /* cursor clip rectangle */
3464 unsigned int clip_msg; /* message to post on cursor clip changes */
3465 @REPLY
3466 user_handle_t prev_handle; /* previous handle */
3467 int prev_count; /* previous show count */
3468 int prev_x; /* previous position */
3469 int prev_y;
3470 int new_x; /* new position */
3471 int new_y;
3472 rectangle_t new_clip; /* new clip rectangle */
3473 unsigned int last_change; /* time of last position change */
3474 @END
3475 #define SET_CURSOR_HANDLE 0x01
3476 #define SET_CURSOR_COUNT 0x02
3477 #define SET_CURSOR_POS 0x04
3478 #define SET_CURSOR_CLIP 0x08
3479 #define SET_CURSOR_NOCLIP 0x10
3482 /* Modify the list of registered rawinput devices */
3483 @REQ(update_rawinput_devices)
3484 VARARG(devices,rawinput_devices);
3485 @END
3488 /* Retrieve the suspended context of a thread */
3489 @REQ(get_suspend_context)
3490 @REPLY
3491 VARARG(context,context); /* thread context */
3492 @END
3495 /* Store the suspend context of a thread */
3496 @REQ(set_suspend_context)
3497 VARARG(context,context); /* thread context */
3498 @END