server: Don't report completion at all in the MORE_PROCESSING_REQUIRED case.
[wine.git] / server / protocol.def
blob7ec380b56658f63b12785ac651e331219dbf660f
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**, 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 client_ptr_t arg; /* user APC argument */
574 unsigned int total; /* bytes transferred */
575 } async_io;
576 struct
578 enum apc_type type; /* APC_VIRTUAL_ALLOC */
579 unsigned int status; /* status returned by call */
580 client_ptr_t addr; /* resulting address */
581 mem_size_t size; /* resulting size */
582 } virtual_alloc;
583 struct
585 enum apc_type type; /* APC_VIRTUAL_FREE */
586 unsigned int status; /* status returned by call */
587 client_ptr_t addr; /* resulting address */
588 mem_size_t size; /* resulting size */
589 } virtual_free;
590 struct
592 enum apc_type type; /* APC_VIRTUAL_QUERY */
593 unsigned int status; /* status returned by call */
594 client_ptr_t base; /* resulting base address */
595 client_ptr_t alloc_base;/* resulting allocation base */
596 mem_size_t size; /* resulting region size */
597 unsigned short state; /* resulting region state */
598 unsigned short prot; /* resulting region protection */
599 unsigned short alloc_prot;/* resulting allocation protection */
600 unsigned short alloc_type;/* resulting region allocation type */
601 } virtual_query;
602 struct
604 enum apc_type type; /* APC_VIRTUAL_PROTECT */
605 unsigned int status; /* status returned by call */
606 client_ptr_t addr; /* resulting address */
607 mem_size_t size; /* resulting size */
608 unsigned int prot; /* old protection flags */
609 } virtual_protect;
610 struct
612 enum apc_type type; /* APC_VIRTUAL_FLUSH */
613 unsigned int status; /* status returned by call */
614 client_ptr_t addr; /* resulting address */
615 mem_size_t size; /* resulting size */
616 } virtual_flush;
617 struct
619 enum apc_type type; /* APC_VIRTUAL_LOCK */
620 unsigned int status; /* status returned by call */
621 client_ptr_t addr; /* resulting address */
622 mem_size_t size; /* resulting size */
623 } virtual_lock;
624 struct
626 enum apc_type type; /* APC_VIRTUAL_UNLOCK */
627 unsigned int status; /* status returned by call */
628 client_ptr_t addr; /* resulting address */
629 mem_size_t size; /* resulting size */
630 } virtual_unlock;
631 struct
633 enum apc_type type; /* APC_MAP_VIEW */
634 unsigned int status; /* status returned by call */
635 client_ptr_t addr; /* resulting address */
636 mem_size_t size; /* resulting size */
637 } map_view;
638 struct
640 enum apc_type type; /* APC_MAP_VIEW */
641 unsigned int status; /* status returned by call */
642 } unmap_view;
643 struct
645 enum apc_type type; /* APC_CREATE_THREAD */
646 unsigned int status; /* status returned by call */
647 thread_id_t tid; /* thread id */
648 obj_handle_t handle; /* handle to new thread */
649 } create_thread;
650 } apc_result_t;
652 struct rawinput_device
654 unsigned short usage_page;
655 unsigned short usage;
656 unsigned int flags;
657 user_handle_t target;
660 /****************************************************************/
661 /* Request declarations */
663 /* Create a new process from the context of the parent */
664 @REQ(new_process)
665 int inherit_all; /* inherit all handles from parent */
666 unsigned int create_flags; /* creation flags */
667 int socket_fd; /* file descriptor for process socket */
668 obj_handle_t exe_file; /* file handle for main exe */
669 unsigned int process_access; /* access rights for process object */
670 unsigned int process_attr; /* attributes for process object */
671 unsigned int thread_access; /* access rights for thread object */
672 unsigned int thread_attr; /* attributes for thread object */
673 cpu_type_t cpu; /* CPU that the new process will use */
674 data_size_t info_size; /* size of startup info */
675 VARARG(info,startup_info,info_size); /* startup information */
676 VARARG(env,unicode_str); /* environment for new process */
677 @REPLY
678 obj_handle_t info; /* new process info handle */
679 process_id_t pid; /* process id */
680 obj_handle_t phandle; /* process handle (in the current process) */
681 thread_id_t tid; /* thread id */
682 obj_handle_t thandle; /* thread handle (in the current process) */
683 @END
686 /* Retrieve information about a newly started process */
687 @REQ(get_new_process_info)
688 obj_handle_t info; /* info handle returned from new_process_request */
689 @REPLY
690 int success; /* did the process start successfully? */
691 int exit_code; /* process exit code if failed */
692 @END
695 /* Create a new thread from the context of the parent */
696 @REQ(new_thread)
697 unsigned int access; /* wanted access rights */
698 unsigned int attributes; /* object attributes */
699 int suspend; /* new thread should be suspended on creation */
700 int request_fd; /* fd for request pipe */
701 @REPLY
702 thread_id_t tid; /* thread id */
703 obj_handle_t handle; /* thread handle (in the current process) */
704 @END
707 /* Retrieve the new process startup info */
708 @REQ(get_startup_info)
709 @REPLY
710 obj_handle_t exe_file; /* file handle for main exe */
711 data_size_t info_size; /* size of startup info */
712 VARARG(info,startup_info,info_size); /* startup information */
713 VARARG(env,unicode_str); /* environment */
714 @END
717 /* Signal the end of the process initialization */
718 @REQ(init_process_done)
719 int gui; /* is it a GUI process? */
720 mod_handle_t module; /* main module base address */
721 client_ptr_t ldt_copy; /* address of LDT copy (in thread address space) */
722 client_ptr_t entry; /* process entry point */
723 @END
726 /* Initialize a thread; called from the child after fork()/clone() */
727 @REQ(init_thread)
728 int unix_pid; /* Unix pid of new thread */
729 int unix_tid; /* Unix tid of new thread */
730 int debug_level; /* new debug level */
731 client_ptr_t teb; /* TEB of new thread (in thread address space) */
732 client_ptr_t entry; /* entry point or PEB if initial thread (in thread address space) */
733 int reply_fd; /* fd for reply pipe */
734 int wait_fd; /* fd for blocking calls pipe */
735 cpu_type_t cpu; /* CPU that this thread is running on */
736 @REPLY
737 process_id_t pid; /* process id of the new thread's process */
738 thread_id_t tid; /* thread id of the new thread */
739 timeout_t server_start; /* server start time */
740 data_size_t info_size; /* total size of startup info */
741 int version; /* protocol version */
742 unsigned int all_cpus; /* bitset of supported CPUs */
743 @END
746 /* Terminate a process */
747 @REQ(terminate_process)
748 obj_handle_t handle; /* process handle to terminate */
749 int exit_code; /* process exit code */
750 @REPLY
751 int self; /* suicide? */
752 @END
755 /* Terminate a thread */
756 @REQ(terminate_thread)
757 obj_handle_t handle; /* thread handle to terminate */
758 int exit_code; /* thread exit code */
759 @REPLY
760 int self; /* suicide? */
761 int last; /* last thread in this process? */
762 @END
765 /* Retrieve information about a process */
766 @REQ(get_process_info)
767 obj_handle_t handle; /* process handle */
768 @REPLY
769 process_id_t pid; /* server process id */
770 process_id_t ppid; /* server process id of parent */
771 affinity_t affinity; /* process affinity mask */
772 client_ptr_t peb; /* PEB address in process address space */
773 timeout_t start_time; /* process start time */
774 timeout_t end_time; /* process end time */
775 int exit_code; /* process exit code */
776 int priority; /* priority class */
777 cpu_type_t cpu; /* CPU that this process is running on */
778 int debugger_present; /* process is being debugged */
779 @END
782 /* Set a process information */
783 @REQ(set_process_info)
784 obj_handle_t handle; /* process handle */
785 int mask; /* setting mask (see below) */
786 int priority; /* priority class */
787 affinity_t affinity; /* affinity mask */
788 @END
789 #define SET_PROCESS_INFO_PRIORITY 0x01
790 #define SET_PROCESS_INFO_AFFINITY 0x02
793 /* Retrieve information about a thread */
794 @REQ(get_thread_info)
795 obj_handle_t handle; /* thread handle */
796 thread_id_t tid_in; /* thread id (optional) */
797 @REPLY
798 process_id_t pid; /* server process id */
799 thread_id_t tid; /* server thread id */
800 client_ptr_t teb; /* thread teb pointer */
801 affinity_t affinity; /* thread affinity mask */
802 timeout_t creation_time; /* thread creation time */
803 timeout_t exit_time; /* thread exit time */
804 int exit_code; /* thread exit code */
805 int priority; /* thread priority level */
806 int last; /* last thread in process */
807 @END
810 /* Set a thread information */
811 @REQ(set_thread_info)
812 obj_handle_t handle; /* thread handle */
813 int mask; /* setting mask (see below) */
814 int priority; /* priority class */
815 affinity_t affinity; /* affinity mask */
816 obj_handle_t token; /* impersonation token */
817 @END
818 #define SET_THREAD_INFO_PRIORITY 0x01
819 #define SET_THREAD_INFO_AFFINITY 0x02
820 #define SET_THREAD_INFO_TOKEN 0x04
823 /* Retrieve information about a module */
824 @REQ(get_dll_info)
825 obj_handle_t handle; /* process handle */
826 mod_handle_t base_address; /* base address of module */
827 @REPLY
828 client_ptr_t entry_point;
829 data_size_t size; /* module size */
830 data_size_t filename_len; /* buffer len in bytes required to store filename */
831 VARARG(filename,unicode_str); /* file name of module */
832 @END
835 /* Suspend a thread */
836 @REQ(suspend_thread)
837 obj_handle_t handle; /* thread handle */
838 @REPLY
839 int count; /* new suspend count */
840 @END
843 /* Resume a thread */
844 @REQ(resume_thread)
845 obj_handle_t handle; /* thread handle */
846 @REPLY
847 int count; /* new suspend count */
848 @END
851 /* Notify the server that a dll has been loaded */
852 @REQ(load_dll)
853 obj_handle_t mapping; /* file mapping handle */
854 mod_handle_t base; /* base address */
855 client_ptr_t name; /* ptr to ptr to name (in process addr space) */
856 data_size_t size; /* dll size */
857 int dbg_offset; /* debug info offset */
858 int dbg_size; /* debug info size */
859 VARARG(filename,unicode_str); /* file name of dll */
860 @END
863 /* Notify the server that a dll is being unloaded */
864 @REQ(unload_dll)
865 mod_handle_t base; /* base address */
866 @END
869 /* Queue an APC for a thread or process */
870 @REQ(queue_apc)
871 obj_handle_t handle; /* thread or process handle */
872 apc_call_t call; /* call arguments */
873 @REPLY
874 obj_handle_t handle; /* APC handle */
875 int self; /* run APC in caller itself? */
876 @END
879 /* Get the result of an APC call */
880 @REQ(get_apc_result)
881 obj_handle_t handle; /* handle to the APC */
882 @REPLY
883 apc_result_t result; /* result of the APC */
884 @END
887 /* Close a handle for the current process */
888 @REQ(close_handle)
889 obj_handle_t handle; /* handle to close */
890 @END
893 /* Set a handle information */
894 @REQ(set_handle_info)
895 obj_handle_t handle; /* handle we are interested in */
896 int flags; /* new handle flags */
897 int mask; /* mask for flags to set */
898 @REPLY
899 int old_flags; /* old flag value */
900 @END
903 /* Duplicate a handle */
904 @REQ(dup_handle)
905 obj_handle_t src_process; /* src process handle */
906 obj_handle_t src_handle; /* src handle to duplicate */
907 obj_handle_t dst_process; /* dst process handle */
908 unsigned int access; /* wanted access rights */
909 unsigned int attributes; /* object attributes */
910 unsigned int options; /* duplicate options (see below) */
911 @REPLY
912 obj_handle_t handle; /* duplicated handle in dst process */
913 int self; /* is the source the current process? */
914 int closed; /* whether the source handle has been closed */
915 @END
916 #define DUP_HANDLE_CLOSE_SOURCE DUPLICATE_CLOSE_SOURCE
917 #define DUP_HANDLE_SAME_ACCESS DUPLICATE_SAME_ACCESS
918 #define DUP_HANDLE_MAKE_GLOBAL 0x80000000 /* Not a Windows flag */
921 /* Open a handle to a process */
922 @REQ(open_process)
923 process_id_t pid; /* process id to open */
924 unsigned int access; /* wanted access rights */
925 unsigned int attributes; /* object attributes */
926 @REPLY
927 obj_handle_t handle; /* handle to the process */
928 @END
931 /* Open a handle to a thread */
932 @REQ(open_thread)
933 thread_id_t tid; /* thread id to open */
934 unsigned int access; /* wanted access rights */
935 unsigned int attributes; /* object attributes */
936 @REPLY
937 obj_handle_t handle; /* handle to the thread */
938 @END
941 /* Wait for handles */
942 @REQ(select)
943 int flags; /* wait flags (see below) */
944 client_ptr_t cookie; /* magic cookie to return to client */
945 timeout_t timeout; /* timeout */
946 obj_handle_t prev_apc; /* handle to previous APC */
947 VARARG(result,apc_result); /* result of previous APC */
948 VARARG(data,select_op); /* operation-specific data */
949 @REPLY
950 timeout_t timeout; /* timeout converted to absolute */
951 apc_call_t call; /* APC call arguments */
952 obj_handle_t apc_handle; /* handle to next APC */
953 @END
954 #define SELECT_ALERTABLE 1
955 #define SELECT_INTERRUPTIBLE 2
958 /* Create an event */
959 @REQ(create_event)
960 unsigned int access; /* wanted access rights */
961 unsigned int attributes; /* object attributes */
962 int manual_reset; /* manual reset event */
963 int initial_state; /* initial state of the event */
964 VARARG(objattr,object_attributes); /* object attributes */
965 @REPLY
966 obj_handle_t handle; /* handle to the event */
967 @END
969 /* Event operation */
970 @REQ(event_op)
971 obj_handle_t handle; /* handle to event */
972 int op; /* event operation (see below) */
973 @END
974 enum event_op { PULSE_EVENT, SET_EVENT, RESET_EVENT };
976 @REQ(query_event)
977 obj_handle_t handle; /* handle to event */
978 @REPLY
979 int manual_reset; /* manual reset event */
980 int state; /* current state of the event */
981 @END
983 /* Open an event */
984 @REQ(open_event)
985 unsigned int access; /* wanted access rights */
986 unsigned int attributes; /* object attributes */
987 obj_handle_t rootdir; /* root directory */
988 VARARG(name,unicode_str); /* object name */
989 @REPLY
990 obj_handle_t handle; /* handle to the event */
991 @END
994 /* Create a keyed event */
995 @REQ(create_keyed_event)
996 unsigned int access; /* wanted access rights */
997 unsigned int attributes; /* object attributes */
998 VARARG(objattr,object_attributes); /* object attributes */
999 @REPLY
1000 obj_handle_t handle; /* handle to the event */
1001 @END
1003 /* Open a keyed event */
1004 @REQ(open_keyed_event)
1005 unsigned int access; /* wanted access rights */
1006 unsigned int attributes; /* object attributes */
1007 obj_handle_t rootdir; /* root directory */
1008 VARARG(name,unicode_str); /* object name */
1009 @REPLY
1010 obj_handle_t handle; /* handle to the event */
1011 @END
1014 /* Create a mutex */
1015 @REQ(create_mutex)
1016 unsigned int access; /* wanted access rights */
1017 unsigned int attributes; /* object attributes */
1018 int owned; /* initially owned? */
1019 VARARG(objattr,object_attributes); /* object attributes */
1020 @REPLY
1021 obj_handle_t handle; /* handle to the mutex */
1022 @END
1025 /* Release a mutex */
1026 @REQ(release_mutex)
1027 obj_handle_t handle; /* handle to the mutex */
1028 @REPLY
1029 unsigned int prev_count; /* value of internal counter, before release */
1030 @END
1033 /* Open a mutex */
1034 @REQ(open_mutex)
1035 unsigned int access; /* wanted access rights */
1036 unsigned int attributes; /* object attributes */
1037 obj_handle_t rootdir; /* root directory */
1038 VARARG(name,unicode_str); /* object name */
1039 @REPLY
1040 obj_handle_t handle; /* handle to the mutex */
1041 @END
1044 /* Create a semaphore */
1045 @REQ(create_semaphore)
1046 unsigned int access; /* wanted access rights */
1047 unsigned int attributes; /* object attributes */
1048 unsigned int initial; /* initial count */
1049 unsigned int max; /* maximum count */
1050 VARARG(objattr,object_attributes); /* object attributes */
1051 @REPLY
1052 obj_handle_t handle; /* handle to the semaphore */
1053 @END
1056 /* Release a semaphore */
1057 @REQ(release_semaphore)
1058 obj_handle_t handle; /* handle to the semaphore */
1059 unsigned int count; /* count to add to semaphore */
1060 @REPLY
1061 unsigned int prev_count; /* previous semaphore count */
1062 @END
1064 @REQ(query_semaphore)
1065 obj_handle_t handle; /* handle to the semaphore */
1066 @REPLY
1067 unsigned int current; /* current count */
1068 unsigned int max; /* maximum count */
1069 @END
1071 /* Open a semaphore */
1072 @REQ(open_semaphore)
1073 unsigned int access; /* wanted access rights */
1074 unsigned int attributes; /* object attributes */
1075 obj_handle_t rootdir; /* root directory */
1076 VARARG(name,unicode_str); /* object name */
1077 @REPLY
1078 obj_handle_t handle; /* handle to the semaphore */
1079 @END
1082 /* Create a file */
1083 @REQ(create_file)
1084 unsigned int access; /* wanted access rights */
1085 unsigned int attributes; /* object attributes */
1086 unsigned int sharing; /* sharing flags */
1087 int create; /* file create action */
1088 unsigned int options; /* file options */
1089 unsigned int attrs; /* file attributes for creation */
1090 VARARG(objattr,object_attributes); /* object attributes */
1091 VARARG(filename,string); /* file name */
1092 @REPLY
1093 obj_handle_t handle; /* handle to the file */
1094 @END
1097 /* Open a file object */
1098 @REQ(open_file_object)
1099 unsigned int access; /* wanted access rights */
1100 unsigned int attributes; /* open attributes */
1101 obj_handle_t rootdir; /* root directory */
1102 unsigned int sharing; /* sharing flags */
1103 unsigned int options; /* file options */
1104 VARARG(filename,unicode_str); /* file name */
1105 @REPLY
1106 obj_handle_t handle; /* handle to the file */
1107 @END
1110 /* Allocate a file handle for a Unix fd */
1111 @REQ(alloc_file_handle)
1112 unsigned int access; /* wanted access rights */
1113 unsigned int attributes; /* object attributes */
1114 int fd; /* file descriptor on the client side */
1115 @REPLY
1116 obj_handle_t handle; /* handle to the file */
1117 @END
1120 /* Get the Unix name from a file handle */
1121 @REQ(get_handle_unix_name)
1122 obj_handle_t handle; /* file handle */
1123 @REPLY
1124 data_size_t name_len; /* unix name length */
1125 VARARG(name,string); /* unix name */
1126 @END
1129 /* Get a Unix fd to access a file */
1130 @REQ(get_handle_fd)
1131 obj_handle_t handle; /* handle to the file */
1132 @REPLY
1133 int type; /* file type (see below) */
1134 int cacheable; /* can fd be cached in the client? */
1135 unsigned int access; /* file access rights */
1136 unsigned int options; /* file open options */
1137 @END
1138 enum server_fd_type
1140 FD_TYPE_INVALID, /* invalid file (no associated fd) */
1141 FD_TYPE_FILE, /* regular file */
1142 FD_TYPE_DIR, /* directory */
1143 FD_TYPE_SOCKET, /* socket */
1144 FD_TYPE_SERIAL, /* serial port */
1145 FD_TYPE_PIPE, /* named pipe */
1146 FD_TYPE_MAILSLOT, /* mailslot */
1147 FD_TYPE_CHAR, /* unspecified char device */
1148 FD_TYPE_DEVICE, /* Windows device file */
1149 FD_TYPE_NB_TYPES
1153 /* Flush a file buffers */
1154 @REQ(flush_file)
1155 obj_handle_t handle; /* handle to the file */
1156 @REPLY
1157 obj_handle_t event; /* event set when finished */
1158 @END
1161 /* Lock a region of a file */
1162 @REQ(lock_file)
1163 obj_handle_t handle; /* handle to the file */
1164 file_pos_t offset; /* offset of start of lock */
1165 file_pos_t count; /* count of bytes to lock */
1166 int shared; /* shared or exclusive lock? */
1167 int wait; /* do we want to wait? */
1168 @REPLY
1169 obj_handle_t handle; /* handle to wait on */
1170 int overlapped; /* is it an overlapped I/O handle? */
1171 @END
1174 /* Unlock a region of a file */
1175 @REQ(unlock_file)
1176 obj_handle_t handle; /* handle to the file */
1177 file_pos_t offset; /* offset of start of unlock */
1178 file_pos_t count; /* count of bytes to unlock */
1179 @END
1182 /* Create a socket */
1183 @REQ(create_socket)
1184 unsigned int access; /* wanted access rights */
1185 unsigned int attributes; /* object attributes */
1186 int family; /* family, see socket manpage */
1187 int type; /* type, see socket manpage */
1188 int protocol; /* protocol, see socket manpage */
1189 unsigned int flags; /* socket flags */
1190 @REPLY
1191 obj_handle_t handle; /* handle to the new socket */
1192 @END
1195 /* Accept a socket */
1196 @REQ(accept_socket)
1197 obj_handle_t lhandle; /* handle to the listening socket */
1198 unsigned int access; /* wanted access rights */
1199 unsigned int attributes; /* object attributes */
1200 @REPLY
1201 obj_handle_t handle; /* handle to the new socket */
1202 @END
1205 /* Accept into an initialized socket */
1206 @REQ(accept_into_socket)
1207 obj_handle_t lhandle; /* handle to the listening socket */
1208 obj_handle_t ahandle; /* handle to the accepting socket */
1209 @END
1212 /* Set socket event parameters */
1213 @REQ(set_socket_event)
1214 obj_handle_t handle; /* handle to the socket */
1215 unsigned int mask; /* event mask */
1216 obj_handle_t event; /* event object */
1217 user_handle_t window; /* window to send the message to */
1218 unsigned int msg; /* message to send */
1219 @END
1222 /* Get socket event parameters */
1223 @REQ(get_socket_event)
1224 obj_handle_t handle; /* handle to the socket */
1225 int service; /* clear pending? */
1226 obj_handle_t c_event; /* event to clear */
1227 @REPLY
1228 unsigned int mask; /* event mask */
1229 unsigned int pmask; /* pending events */
1230 unsigned int state; /* status bits */
1231 VARARG(errors,ints); /* event errors */
1232 @END
1235 /* Get socket info */
1236 @REQ(get_socket_info)
1237 obj_handle_t handle; /* handle to the socket */
1238 @REPLY
1239 int family; /* family, see socket manpage */
1240 int type; /* type, see socket manpage */
1241 int protocol; /* protocol, see socket manpage */
1242 @END
1245 /* Re-enable pending socket events */
1246 @REQ(enable_socket_event)
1247 obj_handle_t handle; /* handle to the socket */
1248 unsigned int mask; /* events to re-enable */
1249 unsigned int sstate; /* status bits to set */
1250 unsigned int cstate; /* status bits to clear */
1251 @END
1253 @REQ(set_socket_deferred)
1254 obj_handle_t handle; /* handle to the socket */
1255 obj_handle_t deferred; /* handle to the socket for which accept() is deferred */
1256 @END
1258 /* Allocate a console (only used by a console renderer) */
1259 @REQ(alloc_console)
1260 unsigned int access; /* wanted access rights */
1261 unsigned int attributes; /* object attributes */
1262 process_id_t pid; /* pid of process which shall be attached to the console */
1263 int input_fd; /* if pid=-1 (bare console to current process), fd for input */
1264 @REPLY
1265 obj_handle_t handle_in; /* handle to console input */
1266 obj_handle_t event; /* handle to renderer events change notification */
1267 @END
1270 /* Free the console of the current process */
1271 @REQ(free_console)
1272 @END
1275 #define CONSOLE_RENDERER_NONE_EVENT 0x00
1276 #define CONSOLE_RENDERER_TITLE_EVENT 0x01
1277 #define CONSOLE_RENDERER_ACTIVE_SB_EVENT 0x02
1278 #define CONSOLE_RENDERER_SB_RESIZE_EVENT 0x03
1279 #define CONSOLE_RENDERER_UPDATE_EVENT 0x04
1280 #define CONSOLE_RENDERER_CURSOR_POS_EVENT 0x05
1281 #define CONSOLE_RENDERER_CURSOR_GEOM_EVENT 0x06
1282 #define CONSOLE_RENDERER_DISPLAY_EVENT 0x07
1283 #define CONSOLE_RENDERER_EXIT_EVENT 0x08
1284 struct console_renderer_event
1286 short event;
1287 union
1289 struct update
1291 short top;
1292 short bottom;
1293 } update;
1294 struct resize
1296 short width;
1297 short height;
1298 } resize;
1299 struct cursor_pos
1301 short x;
1302 short y;
1303 } cursor_pos;
1304 struct cursor_geom
1306 short visible;
1307 short size;
1308 } cursor_geom;
1309 struct display
1311 short left;
1312 short top;
1313 short width;
1314 short height;
1315 } display;
1316 } u;
1319 /* retrieve console events for the renderer */
1320 @REQ(get_console_renderer_events)
1321 obj_handle_t handle; /* handle to console input events */
1322 @REPLY
1323 VARARG(data,bytes); /* the various console_renderer_events */
1324 @END
1327 /* Open a handle to the process console */
1328 @REQ(open_console)
1329 obj_handle_t from; /* 0 (resp 1) input (resp output) of current process console */
1330 /* otherwise console_in handle to get active screen buffer? */
1331 unsigned int access; /* wanted access rights */
1332 unsigned int attributes; /* object attributes */
1333 int share; /* share mask (only for output handles) */
1334 @REPLY
1335 obj_handle_t handle; /* handle to the console */
1336 @END
1339 /* Get the input queue wait event */
1340 @REQ(get_console_wait_event)
1341 @REPLY
1342 obj_handle_t handle;
1343 @END
1345 /* Get a console mode (input or output) */
1346 @REQ(get_console_mode)
1347 obj_handle_t handle; /* handle to the console */
1348 @REPLY
1349 int mode; /* console mode */
1350 @END
1353 /* Set a console mode (input or output) */
1354 @REQ(set_console_mode)
1355 obj_handle_t handle; /* handle to the console */
1356 int mode; /* console mode */
1357 @END
1360 /* Set info about a console (input only) */
1361 @REQ(set_console_input_info)
1362 obj_handle_t handle; /* handle to console input, or 0 for process' console */
1363 int mask; /* setting mask (see below) */
1364 obj_handle_t active_sb; /* active screen buffer */
1365 int history_mode; /* whether we duplicate lines in history */
1366 int history_size; /* number of lines in history */
1367 int edition_mode; /* index to the edition mode flavors */
1368 int input_cp; /* console input codepage */
1369 int output_cp; /* console output codepage */
1370 user_handle_t win; /* console window if backend supports it */
1371 VARARG(title,unicode_str); /* console title */
1372 @END
1373 #define SET_CONSOLE_INPUT_INFO_ACTIVE_SB 0x01
1374 #define SET_CONSOLE_INPUT_INFO_TITLE 0x02
1375 #define SET_CONSOLE_INPUT_INFO_HISTORY_MODE 0x04
1376 #define SET_CONSOLE_INPUT_INFO_HISTORY_SIZE 0x08
1377 #define SET_CONSOLE_INPUT_INFO_EDITION_MODE 0x10
1378 #define SET_CONSOLE_INPUT_INFO_INPUT_CODEPAGE 0x20
1379 #define SET_CONSOLE_INPUT_INFO_OUTPUT_CODEPAGE 0x40
1380 #define SET_CONSOLE_INPUT_INFO_WIN 0x80
1383 /* Get info about a console (input only) */
1384 @REQ(get_console_input_info)
1385 obj_handle_t handle; /* handle to console input, or 0 for process' console */
1386 @REPLY
1387 int history_mode; /* whether we duplicate lines in history */
1388 int history_size; /* number of lines in history */
1389 int history_index; /* number of used lines in history */
1390 int edition_mode; /* index to the edition mode flavors */
1391 int input_cp; /* console input codepage */
1392 int output_cp; /* console output codepage */
1393 user_handle_t win; /* console window if backend supports it */
1394 VARARG(title,unicode_str); /* console title */
1395 @END
1398 /* appends a string to console's history */
1399 @REQ(append_console_input_history)
1400 obj_handle_t handle; /* handle to console input, or 0 for process' console */
1401 VARARG(line,unicode_str); /* line to add */
1402 @END
1405 /* appends a string to console's history */
1406 @REQ(get_console_input_history)
1407 obj_handle_t handle; /* handle to console input, or 0 for process' console */
1408 int index; /* index to get line from */
1409 @REPLY
1410 int total; /* total length of line in Unicode chars */
1411 VARARG(line,unicode_str); /* line to add */
1412 @END
1415 /* creates a new screen buffer on process' console */
1416 @REQ(create_console_output)
1417 obj_handle_t handle_in; /* handle to console input, or 0 for process' console */
1418 unsigned int access; /* wanted access rights */
1419 unsigned int attributes; /* object attributes */
1420 unsigned int share; /* sharing credentials */
1421 int fd; /* for bare consoles, fd the screen-buffer is attached to */
1422 @REPLY
1423 obj_handle_t handle_out; /* handle to the screen buffer */
1424 @END
1427 /* Set info about a console (output only) */
1428 @REQ(set_console_output_info)
1429 obj_handle_t handle; /* handle to the console */
1430 int mask; /* setting mask (see below) */
1431 short int cursor_size; /* size of cursor (percentage filled) */
1432 short int cursor_visible;/* cursor visibility flag */
1433 short int cursor_x; /* position of cursor (x, y) */
1434 short int cursor_y;
1435 short int width; /* width of the screen buffer */
1436 short int height; /* height of the screen buffer */
1437 short int attr; /* default attribute */
1438 short int win_left; /* window actually displayed by renderer */
1439 short int win_top; /* the rect area is expressed within the */
1440 short int win_right; /* boundaries of the screen buffer */
1441 short int win_bottom;
1442 short int max_width; /* maximum size (width x height) for the window */
1443 short int max_height;
1444 @END
1445 #define SET_CONSOLE_OUTPUT_INFO_CURSOR_GEOM 0x01
1446 #define SET_CONSOLE_OUTPUT_INFO_CURSOR_POS 0x02
1447 #define SET_CONSOLE_OUTPUT_INFO_SIZE 0x04
1448 #define SET_CONSOLE_OUTPUT_INFO_ATTR 0x08
1449 #define SET_CONSOLE_OUTPUT_INFO_DISPLAY_WINDOW 0x10
1450 #define SET_CONSOLE_OUTPUT_INFO_MAX_SIZE 0x20
1453 /* Get info about a console (output only) */
1454 @REQ(get_console_output_info)
1455 obj_handle_t handle; /* handle to the console */
1456 @REPLY
1457 short int cursor_size; /* size of cursor (percentage filled) */
1458 short int cursor_visible;/* cursor visibility flag */
1459 short int cursor_x; /* position of cursor (x, y) */
1460 short int cursor_y;
1461 short int width; /* width of the screen buffer */
1462 short int height; /* height of the screen buffer */
1463 short int attr; /* default attribute */
1464 short int win_left; /* window actually displayed by renderer */
1465 short int win_top; /* the rect area is expressed within the */
1466 short int win_right; /* boundaries of the screen buffer */
1467 short int win_bottom;
1468 short int max_width; /* maximum size (width x height) for the window */
1469 short int max_height;
1470 @END
1472 /* Add input records to a console input queue */
1473 @REQ(write_console_input)
1474 obj_handle_t handle; /* handle to the console input */
1475 VARARG(rec,input_records); /* input records */
1476 @REPLY
1477 int written; /* number of records written */
1478 @END
1481 /* Fetch input records from a console input queue */
1482 @REQ(read_console_input)
1483 obj_handle_t handle; /* handle to the console input */
1484 int flush; /* flush the retrieved records from the queue? */
1485 @REPLY
1486 int read; /* number of records read */
1487 VARARG(rec,input_records); /* input records */
1488 @END
1491 /* write data (chars and/or attributes) in a screen buffer */
1492 @REQ(write_console_output)
1493 obj_handle_t handle; /* handle to the console output */
1494 int x; /* position where to start writing */
1495 int y;
1496 int mode; /* char info (see below) */
1497 int wrap; /* wrap around at end of line? */
1498 VARARG(data,bytes); /* info to write */
1499 @REPLY
1500 int written; /* number of char infos actually written */
1501 int width; /* width of screen buffer */
1502 int height; /* height of screen buffer */
1503 @END
1504 enum char_info_mode
1506 CHAR_INFO_MODE_TEXT, /* characters only */
1507 CHAR_INFO_MODE_ATTR, /* attributes only */
1508 CHAR_INFO_MODE_TEXTATTR, /* both characters and attributes */
1509 CHAR_INFO_MODE_TEXTSTDATTR /* characters but use standard attributes */
1513 /* fill a screen buffer with constant data (chars and/or attributes) */
1514 @REQ(fill_console_output)
1515 obj_handle_t handle; /* handle to the console output */
1516 int x; /* position where to start writing */
1517 int y;
1518 int mode; /* char info mode */
1519 int count; /* number to write */
1520 int wrap; /* wrap around at end of line? */
1521 char_info_t data; /* data to write */
1522 @REPLY
1523 int written; /* number of char infos actually written */
1524 @END
1527 /* read data (chars and/or attributes) from a screen buffer */
1528 @REQ(read_console_output)
1529 obj_handle_t handle; /* handle to the console output */
1530 int x; /* position (x,y) where to start reading */
1531 int y;
1532 int mode; /* char info mode */
1533 int wrap; /* wrap around at end of line? */
1534 @REPLY
1535 int width; /* width of screen buffer */
1536 int height; /* height of screen buffer */
1537 VARARG(data,bytes);
1538 @END
1541 /* move a rect (of data) in screen buffer content */
1542 @REQ(move_console_output)
1543 obj_handle_t handle; /* handle to the console output */
1544 short int x_src; /* position (x, y) of rect to start moving from */
1545 short int y_src;
1546 short int x_dst; /* position (x, y) of rect to move to */
1547 short int y_dst;
1548 short int w; /* size of the rect (width, height) to move */
1549 short int h;
1550 @END
1553 /* Sends a signal to a process group */
1554 @REQ(send_console_signal)
1555 int signal; /* the signal to send */
1556 process_id_t group_id; /* the group to send the signal to */
1557 @END
1560 /* enable directory change notifications */
1561 @REQ(read_directory_changes)
1562 unsigned int filter; /* notification filter */
1563 int subtree; /* watch the subtree? */
1564 int want_data; /* flag indicating whether change data should be collected */
1565 async_data_t async; /* async I/O parameters */
1566 @END
1569 @REQ(read_change)
1570 obj_handle_t handle;
1571 @REPLY
1572 VARARG(events,filesystem_event); /* collected filesystem events */
1573 @END
1576 /* Create a file mapping */
1577 @REQ(create_mapping)
1578 unsigned int access; /* wanted access rights */
1579 unsigned int attributes; /* object attributes */
1580 unsigned int protect; /* protection flags (see below) */
1581 mem_size_t size; /* mapping size */
1582 obj_handle_t file_handle; /* file handle */
1583 VARARG(objattr,object_attributes); /* object attributes */
1584 @REPLY
1585 obj_handle_t handle; /* handle to the mapping */
1586 @END
1587 /* per-page protection flags */
1588 #define VPROT_READ 0x01
1589 #define VPROT_WRITE 0x02
1590 #define VPROT_EXEC 0x04
1591 #define VPROT_WRITECOPY 0x08
1592 #define VPROT_GUARD 0x10
1593 #define VPROT_NOCACHE 0x20
1594 #define VPROT_COMMITTED 0x40
1595 #define VPROT_WRITEWATCH 0x80
1596 /* per-mapping protection flags */
1597 #define VPROT_IMAGE 0x0100 /* mapping for an exe image */
1598 #define VPROT_SYSTEM 0x0200 /* system view (underlying mmap not under our control) */
1599 #define VPROT_VALLOC 0x0400 /* allocated by VirtualAlloc */
1600 #define VPROT_NOEXEC 0x0800 /* don't force exec permission */
1603 /* Open a mapping */
1604 @REQ(open_mapping)
1605 unsigned int access; /* wanted access rights */
1606 unsigned int attributes; /* object attributes */
1607 obj_handle_t rootdir; /* root directory */
1608 VARARG(name,unicode_str); /* object name */
1609 @REPLY
1610 obj_handle_t handle; /* handle to the mapping */
1611 @END
1614 /* Get information about a file mapping */
1615 @REQ(get_mapping_info)
1616 obj_handle_t handle; /* handle to the mapping */
1617 unsigned int access; /* wanted access rights */
1618 @REPLY
1619 mem_size_t size; /* mapping size */
1620 int protect; /* protection flags */
1621 int header_size; /* header size (for VPROT_IMAGE mapping) */
1622 client_ptr_t base; /* default base addr (for VPROT_IMAGE mapping) */
1623 obj_handle_t mapping; /* duplicate mapping handle unless removable */
1624 obj_handle_t shared_file; /* shared mapping file handle */
1625 @END
1628 /* Get a range of committed pages in a file mapping */
1629 @REQ(get_mapping_committed_range)
1630 obj_handle_t handle; /* handle to the mapping */
1631 file_pos_t offset; /* starting offset (page-aligned, in bytes) */
1632 @REPLY
1633 mem_size_t size; /* size of range starting at offset (page-aligned, in bytes) */
1634 int committed; /* whether it is a committed range */
1635 @END
1638 /* Add a range to the committed pages in a file mapping */
1639 @REQ(add_mapping_committed_range)
1640 obj_handle_t handle; /* handle to the mapping */
1641 file_pos_t offset; /* starting offset (page-aligned, in bytes) */
1642 mem_size_t size; /* size to set (page-aligned, in bytes) or 0 if only retrieving */
1643 @END
1646 #define SNAP_PROCESS 0x00000001
1647 #define SNAP_THREAD 0x00000002
1648 /* Create a snapshot */
1649 @REQ(create_snapshot)
1650 unsigned int attributes; /* object attributes */
1651 unsigned int flags; /* snapshot flags (SNAP_*) */
1652 @REPLY
1653 obj_handle_t handle; /* handle to the snapshot */
1654 @END
1657 /* Get the next process from a snapshot */
1658 @REQ(next_process)
1659 obj_handle_t handle; /* handle to the snapshot */
1660 int reset; /* reset snapshot position? */
1661 @REPLY
1662 int count; /* process usage count */
1663 process_id_t pid; /* process id */
1664 process_id_t ppid; /* parent process id */
1665 int threads; /* number of threads */
1666 int priority; /* process priority */
1667 int handles; /* number of handles */
1668 int unix_pid; /* Unix pid */
1669 VARARG(filename,unicode_str); /* file name of main exe */
1670 @END
1673 /* Get the next thread from a snapshot */
1674 @REQ(next_thread)
1675 obj_handle_t handle; /* handle to the snapshot */
1676 int reset; /* reset snapshot position? */
1677 @REPLY
1678 int count; /* thread usage count */
1679 process_id_t pid; /* process id */
1680 thread_id_t tid; /* thread id */
1681 int base_pri; /* base priority */
1682 int delta_pri; /* delta priority */
1683 @END
1686 /* Wait for a debug event */
1687 @REQ(wait_debug_event)
1688 int get_handle; /* should we alloc a handle for waiting? */
1689 @REPLY
1690 process_id_t pid; /* process id */
1691 thread_id_t tid; /* thread id */
1692 obj_handle_t wait; /* wait handle if no event ready */
1693 VARARG(event,debug_event); /* debug event data */
1694 @END
1697 /* Queue an exception event */
1698 @REQ(queue_exception_event)
1699 int first; /* first chance exception? */
1700 unsigned int code; /* exception code */
1701 unsigned int flags; /* exception flags */
1702 client_ptr_t record; /* exception record */
1703 client_ptr_t address; /* exception address */
1704 data_size_t len; /* size of parameters */
1705 VARARG(params,uints64,len);/* exception parameters */
1706 VARARG(context,context); /* thread context */
1707 @REPLY
1708 obj_handle_t handle; /* handle to the queued event */
1709 @END
1712 /* Retrieve the status of an exception event */
1713 @REQ(get_exception_status)
1714 obj_handle_t handle; /* handle to the queued event */
1715 @REPLY
1716 VARARG(context,context); /* modified thread context */
1717 @END
1720 /* Continue a debug event */
1721 @REQ(continue_debug_event)
1722 process_id_t pid; /* process id to continue */
1723 thread_id_t tid; /* thread id to continue */
1724 int status; /* continuation status */
1725 @END
1728 /* Start/stop debugging an existing process */
1729 @REQ(debug_process)
1730 process_id_t pid; /* id of the process to debug */
1731 int attach; /* 1=attaching / 0=detaching from the process */
1732 @END
1735 /* Simulate a breakpoint in a process */
1736 @REQ(debug_break)
1737 obj_handle_t handle; /* process handle */
1738 @REPLY
1739 int self; /* was it the caller itself? */
1740 @END
1743 /* Set debugger kill on exit flag */
1744 @REQ(set_debugger_kill_on_exit)
1745 int kill_on_exit; /* 0=detach/1=kill debuggee when debugger dies */
1746 @END
1749 /* Read data from a process address space */
1750 @REQ(read_process_memory)
1751 obj_handle_t handle; /* process handle */
1752 client_ptr_t addr; /* addr to read from */
1753 @REPLY
1754 VARARG(data,bytes); /* result data */
1755 @END
1758 /* Write data to a process address space */
1759 @REQ(write_process_memory)
1760 obj_handle_t handle; /* process handle */
1761 client_ptr_t addr; /* addr to write to */
1762 VARARG(data,bytes); /* data to write */
1763 @END
1766 /* Create a registry key */
1767 @REQ(create_key)
1768 obj_handle_t parent; /* handle to the parent key */
1769 unsigned int access; /* desired access rights */
1770 unsigned int attributes; /* object attributes */
1771 unsigned int options; /* creation options */
1772 data_size_t namelen; /* length of key name in bytes */
1773 VARARG(name,unicode_str,namelen); /* key name */
1774 VARARG(class,unicode_str); /* class name */
1775 @REPLY
1776 obj_handle_t hkey; /* handle to the created key */
1777 int created; /* has it been newly created? */
1778 @END
1780 /* Open a registry key */
1781 @REQ(open_key)
1782 obj_handle_t parent; /* handle to the parent key */
1783 unsigned int access; /* desired access rights */
1784 unsigned int attributes; /* object attributes */
1785 VARARG(name,unicode_str); /* key name */
1786 @REPLY
1787 obj_handle_t hkey; /* handle to the open key */
1788 @END
1791 /* Delete a registry key */
1792 @REQ(delete_key)
1793 obj_handle_t hkey; /* handle to the key */
1794 @END
1797 /* Flush a registry key */
1798 @REQ(flush_key)
1799 obj_handle_t hkey; /* handle to the key */
1800 @END
1803 /* Enumerate registry subkeys */
1804 @REQ(enum_key)
1805 obj_handle_t hkey; /* handle to registry key */
1806 int index; /* index of subkey (or -1 for current key) */
1807 int info_class; /* requested information class */
1808 @REPLY
1809 int subkeys; /* number of subkeys */
1810 int max_subkey; /* longest subkey name */
1811 int max_class; /* longest class name */
1812 int values; /* number of values */
1813 int max_value; /* longest value name */
1814 int max_data; /* longest value data */
1815 timeout_t modif; /* last modification time */
1816 data_size_t total; /* total length needed for full name and class */
1817 data_size_t namelen; /* length of key name in bytes */
1818 VARARG(name,unicode_str,namelen); /* key name */
1819 VARARG(class,unicode_str); /* class name */
1820 @END
1823 /* Set a value of a registry key */
1824 @REQ(set_key_value)
1825 obj_handle_t hkey; /* handle to registry key */
1826 int type; /* value type */
1827 data_size_t namelen; /* length of value name in bytes */
1828 VARARG(name,unicode_str,namelen); /* value name */
1829 VARARG(data,bytes); /* value data */
1830 @END
1833 /* Retrieve the value of a registry key */
1834 @REQ(get_key_value)
1835 obj_handle_t hkey; /* handle to registry key */
1836 VARARG(name,unicode_str); /* value name */
1837 @REPLY
1838 int type; /* value type */
1839 data_size_t total; /* total length needed for data */
1840 VARARG(data,bytes); /* value data */
1841 @END
1844 /* Enumerate a value of a registry key */
1845 @REQ(enum_key_value)
1846 obj_handle_t hkey; /* handle to registry key */
1847 int index; /* value index */
1848 int info_class; /* requested information class */
1849 @REPLY
1850 int type; /* value type */
1851 data_size_t total; /* total length needed for full name and data */
1852 data_size_t namelen; /* length of value name in bytes */
1853 VARARG(name,unicode_str,namelen); /* value name */
1854 VARARG(data,bytes); /* value data */
1855 @END
1858 /* Delete a value of a registry key */
1859 @REQ(delete_key_value)
1860 obj_handle_t hkey; /* handle to registry key */
1861 VARARG(name,unicode_str); /* value name */
1862 @END
1865 /* Load a registry branch from a file */
1866 @REQ(load_registry)
1867 obj_handle_t hkey; /* root key to load to */
1868 obj_handle_t file; /* file to load from */
1869 VARARG(name,unicode_str); /* subkey name */
1870 @END
1873 /* UnLoad a registry branch from a file */
1874 @REQ(unload_registry)
1875 obj_handle_t hkey; /* root key to unload to */
1876 @END
1879 /* Save a registry branch to a file */
1880 @REQ(save_registry)
1881 obj_handle_t hkey; /* key to save */
1882 obj_handle_t file; /* file to save to */
1883 @END
1886 /* Add a registry key change notification */
1887 @REQ(set_registry_notification)
1888 obj_handle_t hkey; /* key to watch for changes */
1889 obj_handle_t event; /* event to set */
1890 int subtree; /* should we watch the whole subtree? */
1891 unsigned int filter; /* things to watch */
1892 @END
1895 /* Create a waitable timer */
1896 @REQ(create_timer)
1897 unsigned int access; /* wanted access rights */
1898 unsigned int attributes; /* object attributes */
1899 obj_handle_t rootdir; /* root directory */
1900 int manual; /* manual reset */
1901 VARARG(name,unicode_str); /* object name */
1902 @REPLY
1903 obj_handle_t handle; /* handle to the timer */
1904 @END
1907 /* Open a waitable timer */
1908 @REQ(open_timer)
1909 unsigned int access; /* wanted access rights */
1910 unsigned int attributes; /* object attributes */
1911 obj_handle_t rootdir; /* root directory */
1912 VARARG(name,unicode_str); /* object name */
1913 @REPLY
1914 obj_handle_t handle; /* handle to the timer */
1915 @END
1917 /* Set a waitable timer */
1918 @REQ(set_timer)
1919 obj_handle_t handle; /* handle to the timer */
1920 timeout_t expire; /* next expiration absolute time */
1921 client_ptr_t callback; /* callback function */
1922 client_ptr_t arg; /* callback argument */
1923 int period; /* timer period in ms */
1924 @REPLY
1925 int signaled; /* was the timer signaled before this call ? */
1926 @END
1928 /* Cancel a waitable timer */
1929 @REQ(cancel_timer)
1930 obj_handle_t handle; /* handle to the timer */
1931 @REPLY
1932 int signaled; /* was the timer signaled before this calltime ? */
1933 @END
1935 /* Get information on a waitable timer */
1936 @REQ(get_timer_info)
1937 obj_handle_t handle; /* handle to the timer */
1938 @REPLY
1939 timeout_t when; /* absolute time when the timer next expires */
1940 int signaled; /* is the timer signaled? */
1941 @END
1944 /* Retrieve the current context of a thread */
1945 @REQ(get_thread_context)
1946 obj_handle_t handle; /* thread handle */
1947 unsigned int flags; /* context flags */
1948 int suspend; /* suspend the thread if needed */
1949 @REPLY
1950 int self; /* was it a handle to the current thread? */
1951 VARARG(context,context); /* thread context */
1952 @END
1955 /* Set the current context of a thread */
1956 @REQ(set_thread_context)
1957 obj_handle_t handle; /* thread handle */
1958 int suspend; /* suspend the thread if needed */
1959 VARARG(context,context); /* thread context */
1960 @REPLY
1961 int self; /* was it a handle to the current thread? */
1962 @END
1965 /* Fetch a selector entry for a thread */
1966 @REQ(get_selector_entry)
1967 obj_handle_t handle; /* thread handle */
1968 int entry; /* LDT entry */
1969 @REPLY
1970 unsigned int base; /* selector base */
1971 unsigned int limit; /* selector limit */
1972 unsigned char flags; /* selector flags */
1973 @END
1976 /* Add an atom */
1977 @REQ(add_atom)
1978 obj_handle_t table; /* which table to add atom to */
1979 VARARG(name,unicode_str); /* atom name */
1980 @REPLY
1981 atom_t atom; /* resulting atom */
1982 @END
1985 /* Delete an atom */
1986 @REQ(delete_atom)
1987 obj_handle_t table; /* which table to delete atom from */
1988 atom_t atom; /* atom handle */
1989 @END
1992 /* Find an atom */
1993 @REQ(find_atom)
1994 obj_handle_t table; /* which table to find atom from */
1995 VARARG(name,unicode_str); /* atom name */
1996 @REPLY
1997 atom_t atom; /* atom handle */
1998 @END
2001 /* Get information about an atom */
2002 @REQ(get_atom_information)
2003 obj_handle_t table; /* which table to find atom from */
2004 atom_t atom; /* atom handle */
2005 @REPLY
2006 int count; /* atom lock count */
2007 int pinned; /* whether the atom has been pinned */
2008 data_size_t total; /* actual length of atom name */
2009 VARARG(name,unicode_str); /* atom name */
2010 @END
2013 /* Set information about an atom */
2014 @REQ(set_atom_information)
2015 obj_handle_t table; /* which table to find atom from */
2016 atom_t atom; /* atom handle */
2017 int pinned; /* whether to bump atom information */
2018 @END
2021 /* Empty an atom table */
2022 @REQ(empty_atom_table)
2023 obj_handle_t table; /* which table to find atom from */
2024 int if_pinned; /* whether to delete pinned atoms */
2025 @END
2028 /* Init an atom table */
2029 @REQ(init_atom_table)
2030 int entries; /* number of entries (only for local) */
2031 @REPLY
2032 obj_handle_t table; /* handle to the atom table */
2033 @END
2036 /* Get the message queue of the current thread */
2037 @REQ(get_msg_queue)
2038 @REPLY
2039 obj_handle_t handle; /* handle to the queue */
2040 @END
2043 /* Set the file descriptor associated to the current thread queue */
2044 @REQ(set_queue_fd)
2045 obj_handle_t handle; /* handle to the file descriptor */
2046 @END
2049 /* Set the current message queue wakeup mask */
2050 @REQ(set_queue_mask)
2051 unsigned int wake_mask; /* wakeup bits mask */
2052 unsigned int changed_mask; /* changed bits mask */
2053 int skip_wait; /* will we skip waiting if signaled? */
2054 @REPLY
2055 unsigned int wake_bits; /* current wake bits */
2056 unsigned int changed_bits; /* current changed bits */
2057 @END
2060 /* Get the current message queue status */
2061 @REQ(get_queue_status)
2062 int clear; /* should we clear the change bits? */
2063 @REPLY
2064 unsigned int wake_bits; /* wake bits */
2065 unsigned int changed_bits; /* changed bits since last time */
2066 @END
2069 /* Retrieve the process idle event */
2070 @REQ(get_process_idle_event)
2071 obj_handle_t handle; /* process handle */
2072 @REPLY
2073 obj_handle_t event; /* handle to idle event */
2074 @END
2077 /* Send a message to a thread queue */
2078 @REQ(send_message)
2079 thread_id_t id; /* thread id */
2080 int type; /* message type (see below) */
2081 int flags; /* message flags (see below) */
2082 user_handle_t win; /* window handle */
2083 unsigned int msg; /* message code */
2084 lparam_t wparam; /* parameters */
2085 lparam_t lparam; /* parameters */
2086 timeout_t timeout; /* timeout for reply */
2087 VARARG(data,message_data); /* message data for sent messages */
2088 @END
2090 @REQ(post_quit_message)
2091 int exit_code; /* exit code to return */
2092 @END
2094 enum message_type
2096 MSG_ASCII, /* Ascii message (from SendMessageA) */
2097 MSG_UNICODE, /* Unicode message (from SendMessageW) */
2098 MSG_NOTIFY, /* notify message (from SendNotifyMessageW), always Unicode */
2099 MSG_CALLBACK, /* callback message (from SendMessageCallbackW), always Unicode */
2100 MSG_CALLBACK_RESULT,/* result of a callback message */
2101 MSG_OTHER_PROCESS, /* sent from other process, may include vararg data, always Unicode */
2102 MSG_POSTED, /* posted message (from PostMessageW), always Unicode */
2103 MSG_HARDWARE, /* hardware message */
2104 MSG_WINEVENT, /* winevent message */
2105 MSG_HOOK_LL /* low-level hardware hook */
2107 #define SEND_MSG_ABORT_IF_HUNG 0x01
2110 /* Send a hardware message to a thread queue */
2111 @REQ(send_hardware_message)
2112 user_handle_t win; /* window handle */
2113 hw_input_t input; /* input data */
2114 unsigned int flags; /* flags (see below) */
2115 @REPLY
2116 int wait; /* do we need to wait for a reply? */
2117 int prev_x; /* previous cursor position */
2118 int prev_y;
2119 int new_x; /* new cursor position */
2120 int new_y;
2121 VARARG(keystate,bytes); /* global state array for all the keys */
2122 @END
2123 #define SEND_HWMSG_INJECTED 0x01
2126 /* Get a message from the current queue */
2127 @REQ(get_message)
2128 unsigned int flags; /* PM_* flags */
2129 user_handle_t get_win; /* window handle to get */
2130 unsigned int get_first; /* first message code to get */
2131 unsigned int get_last; /* last message code to get */
2132 unsigned int hw_id; /* id of the previous hardware message (or 0) */
2133 unsigned int wake_mask; /* wakeup bits mask */
2134 unsigned int changed_mask; /* changed bits mask */
2135 @REPLY
2136 user_handle_t win; /* window handle */
2137 unsigned int msg; /* message code */
2138 lparam_t wparam; /* parameters */
2139 lparam_t lparam; /* parameters */
2140 int type; /* message type */
2141 unsigned int time; /* message time */
2142 unsigned int active_hooks; /* active hooks bitmap */
2143 data_size_t total; /* total size of extra data */
2144 VARARG(data,message_data); /* message data for sent messages */
2145 @END
2148 /* Reply to a sent message */
2149 @REQ(reply_message)
2150 int remove; /* should we remove the message? */
2151 lparam_t result; /* message result */
2152 VARARG(data,bytes); /* message data for sent messages */
2153 @END
2156 /* Accept the current hardware message */
2157 @REQ(accept_hardware_message)
2158 unsigned int hw_id; /* id of the hardware message */
2159 int remove; /* should we remove the 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 unsigned int options;
2279 unsigned int sharing;
2280 unsigned int maxinstances;
2281 unsigned int outsize;
2282 unsigned int insize;
2283 timeout_t timeout;
2284 unsigned int flags;
2285 VARARG(objattr,object_attributes); /* object attributes */
2286 @REPLY
2287 obj_handle_t handle; /* handle to the pipe */
2288 @END
2290 /* flags in create_named_pipe and get_named_pipe_info */
2291 #define NAMED_PIPE_MESSAGE_STREAM_WRITE 0x0001
2292 #define NAMED_PIPE_MESSAGE_STREAM_READ 0x0002
2293 #define NAMED_PIPE_NONBLOCKING_MODE 0x0004
2294 #define NAMED_PIPE_SERVER_END 0x8000
2296 /* Get named pipe information by handle */
2297 @REQ(get_named_pipe_info)
2298 obj_handle_t handle;
2299 @REPLY
2300 unsigned int flags;
2301 unsigned int sharing;
2302 unsigned int maxinstances;
2303 unsigned int instances;
2304 unsigned int outsize;
2305 unsigned int insize;
2306 @END
2308 /* Set named pipe information by handle */
2309 @REQ(set_named_pipe_info)
2310 obj_handle_t handle;
2311 unsigned int flags;
2312 @END
2314 /* Create a window */
2315 @REQ(create_window)
2316 user_handle_t parent; /* parent window */
2317 user_handle_t owner; /* owner window */
2318 atom_t atom; /* class atom */
2319 mod_handle_t instance; /* module instance */
2320 VARARG(class,unicode_str); /* class name */
2321 @REPLY
2322 user_handle_t handle; /* created window */
2323 user_handle_t parent; /* full handle of parent */
2324 user_handle_t owner; /* full handle of owner */
2325 int extra; /* number of extra bytes */
2326 client_ptr_t class_ptr; /* pointer to class in client address space */
2327 @END
2330 /* Destroy a window */
2331 @REQ(destroy_window)
2332 user_handle_t handle; /* handle to the window */
2333 @END
2336 /* Retrieve the desktop window for the current thread */
2337 @REQ(get_desktop_window)
2338 int force; /* force creation if it doesn't exist */
2339 @REPLY
2340 user_handle_t top_window; /* handle to the desktop window */
2341 user_handle_t msg_window; /* handle to the top-level HWND_MESSAGE parent */
2342 @END
2345 /* Set a window owner */
2346 @REQ(set_window_owner)
2347 user_handle_t handle; /* handle to the window */
2348 user_handle_t owner; /* new owner */
2349 @REPLY
2350 user_handle_t full_owner; /* full handle of new owner */
2351 user_handle_t prev_owner; /* full handle of previous owner */
2352 @END
2355 /* Get information from a window handle */
2356 @REQ(get_window_info)
2357 user_handle_t handle; /* handle to the window */
2358 @REPLY
2359 user_handle_t full_handle; /* full 32-bit handle */
2360 user_handle_t last_active; /* last active popup */
2361 process_id_t pid; /* process owning the window */
2362 thread_id_t tid; /* thread owning the window */
2363 atom_t atom; /* class atom */
2364 int is_unicode; /* ANSI or unicode */
2365 @END
2368 /* Set some information in a window */
2369 @REQ(set_window_info)
2370 unsigned short flags; /* flags for fields to set (see below) */
2371 short int is_unicode; /* ANSI or unicode */
2372 user_handle_t handle; /* handle to the window */
2373 unsigned int style; /* window style */
2374 unsigned int ex_style; /* window extended style */
2375 unsigned int id; /* window id */
2376 mod_handle_t instance; /* creator instance */
2377 lparam_t user_data; /* user-specific data */
2378 int extra_offset; /* offset to set in extra bytes */
2379 data_size_t extra_size; /* size to set in extra bytes */
2380 lparam_t extra_value; /* value to set in extra bytes */
2381 @REPLY
2382 unsigned int old_style; /* old window style */
2383 unsigned int old_ex_style; /* old window extended style */
2384 mod_handle_t old_instance; /* old creator instance */
2385 lparam_t old_user_data; /* old user-specific data */
2386 lparam_t old_extra_value; /* old value in extra bytes */
2387 unsigned int old_id; /* old window id */
2388 @END
2389 #define SET_WIN_STYLE 0x01
2390 #define SET_WIN_EXSTYLE 0x02
2391 #define SET_WIN_ID 0x04
2392 #define SET_WIN_INSTANCE 0x08
2393 #define SET_WIN_USERDATA 0x10
2394 #define SET_WIN_EXTRA 0x20
2395 #define SET_WIN_UNICODE 0x40
2398 /* Set the parent of a window */
2399 @REQ(set_parent)
2400 user_handle_t handle; /* handle to the window */
2401 user_handle_t parent; /* handle to the parent */
2402 @REPLY
2403 user_handle_t old_parent; /* old parent window */
2404 user_handle_t full_parent; /* full handle of new parent */
2405 @END
2408 /* Get a list of the window parents, up to the root of the tree */
2409 @REQ(get_window_parents)
2410 user_handle_t handle; /* handle to the window */
2411 @REPLY
2412 int count; /* total count of parents */
2413 VARARG(parents,user_handles); /* parent handles */
2414 @END
2417 /* Get a list of the window children */
2418 @REQ(get_window_children)
2419 obj_handle_t desktop; /* handle to desktop */
2420 user_handle_t parent; /* parent window */
2421 atom_t atom; /* class atom for the listed children */
2422 thread_id_t tid; /* thread owning the listed children */
2423 VARARG(class,unicode_str); /* class name */
2424 @REPLY
2425 int count; /* total count of children */
2426 VARARG(children,user_handles); /* children handles */
2427 @END
2430 /* Get a list of the window children that contain a given point */
2431 @REQ(get_window_children_from_point)
2432 user_handle_t parent; /* parent window */
2433 int x; /* point in parent coordinates */
2434 int y;
2435 @REPLY
2436 int count; /* total count of children */
2437 VARARG(children,user_handles); /* children handles */
2438 @END
2441 /* Get window tree information from a window handle */
2442 @REQ(get_window_tree)
2443 user_handle_t handle; /* handle to the window */
2444 @REPLY
2445 user_handle_t parent; /* parent window */
2446 user_handle_t owner; /* owner window */
2447 user_handle_t next_sibling; /* next sibling in Z-order */
2448 user_handle_t prev_sibling; /* prev sibling in Z-order */
2449 user_handle_t first_sibling; /* first sibling in Z-order */
2450 user_handle_t last_sibling; /* last sibling in Z-order */
2451 user_handle_t first_child; /* first child */
2452 user_handle_t last_child; /* last child */
2453 @END
2455 /* Set the position and Z order of a window */
2456 @REQ(set_window_pos)
2457 unsigned short swp_flags; /* SWP_* flags */
2458 unsigned short paint_flags; /* paint flags (see below) */
2459 user_handle_t handle; /* handle to the window */
2460 user_handle_t previous; /* previous window in Z order */
2461 rectangle_t window; /* window rectangle (in parent coords) */
2462 rectangle_t client; /* client rectangle (in parent coords) */
2463 VARARG(valid,rectangles); /* valid rectangles from WM_NCCALCSIZE (in parent coords) */
2464 @REPLY
2465 unsigned int new_style; /* new window style */
2466 unsigned int new_ex_style; /* new window extended style */
2467 user_handle_t surface_win; /* window that needs a surface update */
2468 @END
2469 #define SET_WINPOS_PAINT_SURFACE 0x01 /* window has a paintable surface */
2470 #define SET_WINPOS_PIXEL_FORMAT 0x02 /* window has a custom pixel format */
2472 /* Get the window and client rectangles of a window */
2473 @REQ(get_window_rectangles)
2474 user_handle_t handle; /* handle to the window */
2475 int relative; /* coords relative to (see below) */
2476 @REPLY
2477 rectangle_t window; /* window rectangle */
2478 rectangle_t visible; /* visible part of the window rectangle */
2479 rectangle_t client; /* client rectangle */
2480 @END
2481 enum coords_relative
2483 COORDS_CLIENT, /* relative to client area */
2484 COORDS_WINDOW, /* relative to whole window area */
2485 COORDS_PARENT, /* relative to parent's client area */
2486 COORDS_SCREEN /* relative to screen origin */
2490 /* Get the window text */
2491 @REQ(get_window_text)
2492 user_handle_t handle; /* handle to the window */
2493 @REPLY
2494 VARARG(text,unicode_str); /* window text */
2495 @END
2498 /* Set the window text */
2499 @REQ(set_window_text)
2500 user_handle_t handle; /* handle to the window */
2501 VARARG(text,unicode_str); /* window text */
2502 @END
2505 /* Get the coordinates offset between two windows */
2506 @REQ(get_windows_offset)
2507 user_handle_t from; /* handle to the first window */
2508 user_handle_t to; /* handle to the second window */
2509 @REPLY
2510 int x; /* x coordinate offset */
2511 int y; /* y coordinate offset */
2512 int mirror; /* whether to mirror the x coordinate */
2513 @END
2516 /* Get the visible region of a window */
2517 @REQ(get_visible_region)
2518 user_handle_t window; /* handle to the window */
2519 unsigned int flags; /* DCX flags */
2520 @REPLY
2521 user_handle_t top_win; /* top window to clip against */
2522 rectangle_t top_rect; /* top window visible rect with screen coords */
2523 rectangle_t win_rect; /* window rect in screen coords */
2524 unsigned int paint_flags; /* paint flags (from SET_WINPOS_* flags) */
2525 data_size_t total_size; /* total size of the resulting region */
2526 VARARG(region,rectangles); /* list of rectangles for the region (in screen coords) */
2527 @END
2530 /* Get the visible surface region of a window */
2531 @REQ(get_surface_region)
2532 user_handle_t window; /* handle to the window */
2533 @REPLY
2534 rectangle_t visible_rect; /* window visible rect in screen coords */
2535 data_size_t total_size; /* total size of the resulting region */
2536 VARARG(region,rectangles); /* list of rectangles for the region (in screen coords) */
2537 @END
2540 /* Get the window region */
2541 @REQ(get_window_region)
2542 user_handle_t window; /* handle to the window */
2543 @REPLY
2544 data_size_t total_size; /* total size of the resulting region */
2545 VARARG(region,rectangles); /* list of rectangles for the region (in window coords) */
2546 @END
2549 /* Set the window region */
2550 @REQ(set_window_region)
2551 user_handle_t window; /* handle to the window */
2552 int redraw; /* redraw the window? */
2553 VARARG(region,rectangles); /* list of rectangles for the region (in window coords) */
2554 @END
2557 /* Get the window update region */
2558 @REQ(get_update_region)
2559 user_handle_t window; /* handle to the window */
2560 user_handle_t from_child; /* child to start searching from */
2561 unsigned int flags; /* update flags (see below) */
2562 @REPLY
2563 user_handle_t child; /* child to repaint (or window itself) */
2564 unsigned int flags; /* resulting update flags (see below) */
2565 data_size_t total_size; /* total size of the resulting region */
2566 VARARG(region,rectangles); /* list of rectangles for the region (in screen coords) */
2567 @END
2568 #define UPDATE_NONCLIENT 0x01 /* get region for repainting non-client area */
2569 #define UPDATE_ERASE 0x02 /* get region for erasing client area */
2570 #define UPDATE_PAINT 0x04 /* get region for painting client area */
2571 #define UPDATE_INTERNALPAINT 0x08 /* get region if internal paint is pending */
2572 #define UPDATE_ALLCHILDREN 0x10 /* force repaint of all children */
2573 #define UPDATE_NOCHILDREN 0x20 /* don't try to repaint any children */
2574 #define UPDATE_NOREGION 0x40 /* don't return a region, only the flags */
2575 #define UPDATE_DELAYED_ERASE 0x80 /* still needs erase after BeginPaint */
2578 /* Update the z order of a window so that a given rectangle is fully visible */
2579 @REQ(update_window_zorder)
2580 user_handle_t window; /* handle to the window */
2581 rectangle_t rect; /* rectangle that must be visible (in client coords) */
2582 @END
2585 /* Mark parts of a window as needing a redraw */
2586 @REQ(redraw_window)
2587 user_handle_t window; /* handle to the window */
2588 unsigned int flags; /* RDW_* flags */
2589 VARARG(region,rectangles); /* list of rectangles for the region (in window coords) */
2590 @END
2593 /* Set a window property */
2594 @REQ(set_window_property)
2595 user_handle_t window; /* handle to the window */
2596 lparam_t data; /* data to store */
2597 atom_t atom; /* property atom (if no name specified) */
2598 VARARG(name,unicode_str); /* property name */
2599 @END
2602 /* Remove a window property */
2603 @REQ(remove_window_property)
2604 user_handle_t window; /* handle to the window */
2605 atom_t atom; /* property atom (if no name specified) */
2606 VARARG(name,unicode_str); /* property name */
2607 @REPLY
2608 lparam_t data; /* data stored in property */
2609 @END
2612 /* Get a window property */
2613 @REQ(get_window_property)
2614 user_handle_t window; /* handle to the window */
2615 atom_t atom; /* property atom (if no name specified) */
2616 VARARG(name,unicode_str); /* property name */
2617 @REPLY
2618 lparam_t data; /* data stored in property */
2619 @END
2622 /* Get the list of properties of a window */
2623 @REQ(get_window_properties)
2624 user_handle_t window; /* handle to the window */
2625 @REPLY
2626 int total; /* total number of properties */
2627 VARARG(props,properties); /* list of properties */
2628 @END
2631 /* Create a window station */
2632 @REQ(create_winstation)
2633 unsigned int flags; /* window station flags */
2634 unsigned int access; /* wanted access rights */
2635 unsigned int attributes; /* object attributes */
2636 VARARG(name,unicode_str); /* object name */
2637 @REPLY
2638 obj_handle_t handle; /* handle to the window station */
2639 @END
2642 /* Open a handle to a window station */
2643 @REQ(open_winstation)
2644 unsigned int access; /* wanted access rights */
2645 unsigned int attributes; /* object attributes */
2646 VARARG(name,unicode_str); /* object name */
2647 @REPLY
2648 obj_handle_t handle; /* handle to the window station */
2649 @END
2652 /* Close a window station */
2653 @REQ(close_winstation)
2654 obj_handle_t handle; /* handle to the window station */
2655 @END
2658 /* Get the process current window station */
2659 @REQ(get_process_winstation)
2660 @REPLY
2661 obj_handle_t handle; /* handle to the window station */
2662 @END
2665 /* Set the process current window station */
2666 @REQ(set_process_winstation)
2667 obj_handle_t handle; /* handle to the window station */
2668 @END
2671 /* Enumerate window stations */
2672 @REQ(enum_winstation)
2673 unsigned int index; /* current index */
2674 @REPLY
2675 unsigned int next; /* next index */
2676 VARARG(name,unicode_str); /* window station name */
2677 @END
2680 /* Create a desktop */
2681 @REQ(create_desktop)
2682 unsigned int flags; /* desktop flags */
2683 unsigned int access; /* wanted access rights */
2684 unsigned int attributes; /* object attributes */
2685 VARARG(name,unicode_str); /* object name */
2686 @REPLY
2687 obj_handle_t handle; /* handle to the desktop */
2688 @END
2691 /* Open a handle to a desktop */
2692 @REQ(open_desktop)
2693 obj_handle_t winsta; /* window station to open (null allowed) */
2694 unsigned int flags; /* desktop flags */
2695 unsigned int access; /* wanted access rights */
2696 unsigned int attributes; /* object attributes */
2697 VARARG(name,unicode_str); /* object name */
2698 @REPLY
2699 obj_handle_t handle; /* handle to the desktop */
2700 @END
2703 /* Open a handle to current input desktop */
2704 @REQ(open_input_desktop)
2705 unsigned int flags; /* desktop flags */
2706 unsigned int access; /* wanted access rights */
2707 unsigned int attributes; /* object attributes */
2708 @REPLY
2709 obj_handle_t handle; /* handle to the desktop */
2710 @END
2713 /* Close a desktop */
2714 @REQ(close_desktop)
2715 obj_handle_t handle; /* handle to the desktop */
2716 @END
2719 /* Get the thread current desktop */
2720 @REQ(get_thread_desktop)
2721 thread_id_t tid; /* thread id */
2722 @REPLY
2723 obj_handle_t handle; /* handle to the desktop */
2724 @END
2727 /* Set the thread current desktop */
2728 @REQ(set_thread_desktop)
2729 obj_handle_t handle; /* handle to the desktop */
2730 @END
2733 /* Enumerate desktops */
2734 @REQ(enum_desktop)
2735 obj_handle_t winstation; /* handle to the window station */
2736 unsigned int index; /* current index */
2737 @REPLY
2738 unsigned int next; /* next index */
2739 VARARG(name,unicode_str); /* window station name */
2740 @END
2743 /* Get/set information about a user object (window station or desktop) */
2744 @REQ(set_user_object_info)
2745 obj_handle_t handle; /* handle to the object */
2746 unsigned int flags; /* information to set */
2747 unsigned int obj_flags; /* new object flags */
2748 @REPLY
2749 int is_desktop; /* is object a desktop? */
2750 unsigned int old_obj_flags; /* old object flags */
2751 VARARG(name,unicode_str); /* object name */
2752 @END
2753 #define SET_USER_OBJECT_FLAGS 1
2756 /* Register a hotkey */
2757 @REQ(register_hotkey)
2758 user_handle_t window; /* handle to the window */
2759 int id; /* hotkey identifier */
2760 unsigned int flags; /* modifier keys */
2761 unsigned int vkey; /* virtual key code */
2762 @REPLY
2763 int replaced; /* did we replace an existing hotkey? */
2764 unsigned int flags; /* flags of replaced hotkey */
2765 unsigned int vkey; /* virtual key code of replaced hotkey */
2766 @END
2769 /* Unregister a hotkey */
2770 @REQ(unregister_hotkey)
2771 user_handle_t window; /* handle to the window */
2772 int id; /* hotkey identifier */
2773 @REPLY
2774 unsigned int flags; /* flags of removed hotkey */
2775 unsigned int vkey; /* virtual key code of removed hotkey */
2776 @END
2779 /* Attach (or detach) thread inputs */
2780 @REQ(attach_thread_input)
2781 thread_id_t tid_from; /* thread to be attached */
2782 thread_id_t tid_to; /* thread to which tid_from should be attached */
2783 int attach; /* is it an attach? */
2784 @END
2787 /* Get input data for a given thread */
2788 @REQ(get_thread_input)
2789 thread_id_t tid; /* id of thread */
2790 @REPLY
2791 user_handle_t focus; /* handle to the focus window */
2792 user_handle_t capture; /* handle to the capture window */
2793 user_handle_t active; /* handle to the active window */
2794 user_handle_t foreground; /* handle to the global foreground window */
2795 user_handle_t menu_owner; /* handle to the menu owner */
2796 user_handle_t move_size; /* handle to the moving/resizing window */
2797 user_handle_t caret; /* handle to the caret window */
2798 user_handle_t cursor; /* handle to the cursor */
2799 int show_count; /* cursor show count */
2800 rectangle_t rect; /* caret rectangle */
2801 @END
2804 /* Get the time of the last input event */
2805 @REQ(get_last_input_time)
2806 @REPLY
2807 unsigned int time;
2808 @END
2811 /* Retrieve queue keyboard state for a given thread */
2812 @REQ(get_key_state)
2813 thread_id_t tid; /* id of thread */
2814 int key; /* optional key code or -1 */
2815 @REPLY
2816 unsigned char state; /* state of specified key */
2817 VARARG(keystate,bytes); /* state array for all the keys */
2818 @END
2820 /* Set queue keyboard state for a given thread */
2821 @REQ(set_key_state)
2822 thread_id_t tid; /* id of thread */
2823 int async; /* whether to change the async state too */
2824 VARARG(keystate,bytes); /* state array for all the keys */
2825 @END
2827 /* Set the system foreground window */
2828 @REQ(set_foreground_window)
2829 user_handle_t handle; /* handle to the foreground window */
2830 @REPLY
2831 user_handle_t previous; /* handle to the previous foreground window */
2832 int send_msg_old; /* whether we have to send a msg to the old window */
2833 int send_msg_new; /* whether we have to send a msg to the new window */
2834 @END
2836 /* Set the current thread focus window */
2837 @REQ(set_focus_window)
2838 user_handle_t handle; /* handle to the focus window */
2839 @REPLY
2840 user_handle_t previous; /* handle to the previous focus window */
2841 @END
2843 /* Set the current thread active window */
2844 @REQ(set_active_window)
2845 user_handle_t handle; /* handle to the active window */
2846 @REPLY
2847 user_handle_t previous; /* handle to the previous active window */
2848 @END
2850 /* Set the current thread capture window */
2851 @REQ(set_capture_window)
2852 user_handle_t handle; /* handle to the capture window */
2853 unsigned int flags; /* capture flags (see below) */
2854 @REPLY
2855 user_handle_t previous; /* handle to the previous capture window */
2856 user_handle_t full_handle; /* full 32-bit handle of new capture window */
2857 @END
2858 #define CAPTURE_MENU 0x01 /* capture is for a menu */
2859 #define CAPTURE_MOVESIZE 0x02 /* capture is for moving/resizing */
2862 /* Set the current thread caret window */
2863 @REQ(set_caret_window)
2864 user_handle_t handle; /* handle to the caret window */
2865 int width; /* caret width */
2866 int height; /* caret height */
2867 @REPLY
2868 user_handle_t previous; /* handle to the previous caret window */
2869 rectangle_t old_rect; /* previous caret rectangle */
2870 int old_hide; /* previous hide count */
2871 int old_state; /* previous caret state (1=on, 0=off) */
2872 @END
2875 /* Set the current thread caret information */
2876 @REQ(set_caret_info)
2877 unsigned int flags; /* caret flags (see below) */
2878 user_handle_t handle; /* handle to the caret window */
2879 int x; /* caret x position */
2880 int y; /* caret y position */
2881 int hide; /* increment for hide count (can be negative to show it) */
2882 int state; /* caret state (1=on, 0=off, -1=toggle current state) */
2883 @REPLY
2884 user_handle_t full_handle; /* handle to the current caret window */
2885 rectangle_t old_rect; /* previous caret rectangle */
2886 int old_hide; /* previous hide count */
2887 int old_state; /* previous caret state (1=on, 0=off) */
2888 @END
2889 #define SET_CARET_POS 0x01 /* set the caret position from x,y */
2890 #define SET_CARET_HIDE 0x02 /* increment the caret hide count */
2891 #define SET_CARET_STATE 0x04 /* set the caret on/off state */
2894 /* Set a window hook */
2895 @REQ(set_hook)
2896 int id; /* id of the hook */
2897 process_id_t pid; /* id of process to set the hook into */
2898 thread_id_t tid; /* id of thread to set the hook into */
2899 int event_min;
2900 int event_max;
2901 client_ptr_t proc; /* hook procedure */
2902 int flags;
2903 int unicode; /* is it a unicode hook? */
2904 VARARG(module,unicode_str); /* module name */
2905 @REPLY
2906 user_handle_t handle; /* handle to the hook */
2907 unsigned int active_hooks; /* active hooks bitmap */
2908 @END
2911 /* Remove a window hook */
2912 @REQ(remove_hook)
2913 user_handle_t handle; /* handle to the hook */
2914 client_ptr_t proc; /* hook procedure if handle is 0 */
2915 int id; /* id of the hook if handle is 0 */
2916 @REPLY
2917 unsigned int active_hooks; /* active hooks bitmap */
2918 @END
2921 /* Start calling a hook chain */
2922 @REQ(start_hook_chain)
2923 int id; /* id of the hook */
2924 int event; /* signalled event */
2925 user_handle_t window; /* handle to the event window */
2926 int object_id; /* object id for out of context winevent */
2927 int child_id; /* child id for out of context winevent */
2928 @REPLY
2929 user_handle_t handle; /* handle to the next hook */
2930 process_id_t pid; /* process id for low-level keyboard/mouse hooks */
2931 thread_id_t tid; /* thread id for low-level keyboard/mouse hooks */
2932 int unicode; /* is it a unicode hook? */
2933 client_ptr_t proc; /* hook procedure */
2934 unsigned int active_hooks; /* active hooks bitmap */
2935 VARARG(module,unicode_str); /* module name */
2936 @END
2939 /* Finished calling a hook chain */
2940 @REQ(finish_hook_chain)
2941 int id; /* id of the hook */
2942 @END
2945 /* Get the hook information */
2946 @REQ(get_hook_info)
2947 user_handle_t handle; /* handle to the current hook */
2948 int get_next; /* do we want info about current or next hook? */
2949 int event; /* signalled event */
2950 user_handle_t window; /* handle to the event window */
2951 int object_id; /* object id for out of context winevent */
2952 int child_id; /* child id for out of context winevent */
2953 @REPLY
2954 user_handle_t handle; /* handle to the hook */
2955 int id; /* id of the hook */
2956 process_id_t pid; /* process id for low-level keyboard/mouse hooks */
2957 thread_id_t tid; /* thread id for low-level keyboard/mouse hooks */
2958 client_ptr_t proc; /* hook procedure */
2959 int unicode; /* is it a unicode hook? */
2960 VARARG(module,unicode_str); /* module name */
2961 @END
2964 /* Create a window class */
2965 @REQ(create_class)
2966 int local; /* is it a local class? */
2967 atom_t atom; /* class atom */
2968 unsigned int style; /* class style */
2969 mod_handle_t instance; /* module instance */
2970 int extra; /* number of extra class bytes */
2971 int win_extra; /* number of window extra bytes */
2972 client_ptr_t client_ptr; /* pointer to class in client address space */
2973 VARARG(name,unicode_str); /* class name */
2974 @REPLY
2975 atom_t atom; /* resulting class atom */
2976 @END
2979 /* Destroy a window class */
2980 @REQ(destroy_class)
2981 atom_t atom; /* class atom */
2982 mod_handle_t instance; /* module instance */
2983 VARARG(name,unicode_str); /* class name */
2984 @REPLY
2985 client_ptr_t client_ptr; /* pointer to class in client address space */
2986 @END
2989 /* Set some information in a class */
2990 @REQ(set_class_info)
2991 user_handle_t window; /* handle to the window */
2992 unsigned int flags; /* flags for info to set (see below) */
2993 atom_t atom; /* class atom */
2994 unsigned int style; /* class style */
2995 int win_extra; /* number of window extra bytes */
2996 mod_handle_t instance; /* module instance */
2997 int extra_offset; /* offset to set in extra bytes */
2998 data_size_t extra_size; /* size to set in extra bytes */
2999 lparam_t extra_value; /* value to set in extra bytes */
3000 @REPLY
3001 atom_t old_atom; /* previous class atom */
3002 unsigned int old_style; /* previous class style */
3003 int old_extra; /* previous number of class extra bytes */
3004 int old_win_extra; /* previous number of window extra bytes */
3005 mod_handle_t old_instance; /* previous module instance */
3006 lparam_t old_extra_value; /* old value in extra bytes */
3007 @END
3008 #define SET_CLASS_ATOM 0x0001
3009 #define SET_CLASS_STYLE 0x0002
3010 #define SET_CLASS_WINEXTRA 0x0004
3011 #define SET_CLASS_INSTANCE 0x0008
3012 #define SET_CLASS_EXTRA 0x0010
3015 /* Set/get clipboard information */
3016 @REQ(set_clipboard_info)
3017 unsigned int flags; /* flags for fields to set (see below) */
3018 user_handle_t clipboard; /* clipboard window */
3019 user_handle_t owner; /* clipboard owner */
3020 user_handle_t viewer; /* first clipboard viewer */
3021 unsigned int seqno; /* change sequence number */
3022 @REPLY
3023 unsigned int flags; /* status flags (see below) */
3024 user_handle_t old_clipboard; /* old clipboard window */
3025 user_handle_t old_owner; /* old clipboard owner */
3026 user_handle_t old_viewer; /* old clipboard viewer */
3027 unsigned int seqno; /* current sequence number */
3028 @END
3030 #define SET_CB_OPEN 0x001
3031 #define SET_CB_OWNER 0x002
3032 #define SET_CB_VIEWER 0x004
3033 #define SET_CB_SEQNO 0x008
3034 #define SET_CB_RELOWNER 0x010
3035 #define SET_CB_CLOSE 0x020
3036 #define CB_OPEN 0x040
3037 #define CB_OWNER 0x080
3038 #define CB_PROCESS 0x100
3041 /* Open a security token */
3042 @REQ(open_token)
3043 obj_handle_t handle; /* handle to the thread or process */
3044 unsigned int access; /* access rights to the new token */
3045 unsigned int attributes;/* object attributes */
3046 unsigned int flags; /* flags (see below) */
3047 @REPLY
3048 obj_handle_t token; /* handle to the token */
3049 @END
3050 #define OPEN_TOKEN_THREAD 1
3051 #define OPEN_TOKEN_AS_SELF 2
3054 /* Set/get the global windows */
3055 @REQ(set_global_windows)
3056 unsigned int flags; /* flags for fields to set (see below) */
3057 user_handle_t shell_window; /* handle to the new shell window */
3058 user_handle_t shell_listview; /* handle to the new shell listview window */
3059 user_handle_t progman_window; /* handle to the new program manager window */
3060 user_handle_t taskman_window; /* handle to the new task manager window */
3061 @REPLY
3062 user_handle_t old_shell_window; /* handle to the shell window */
3063 user_handle_t old_shell_listview; /* handle to the shell listview window */
3064 user_handle_t old_progman_window; /* handle to the new program manager window */
3065 user_handle_t old_taskman_window; /* handle to the new task manager window */
3066 @END
3067 #define SET_GLOBAL_SHELL_WINDOWS 0x01 /* set both main shell and listview windows */
3068 #define SET_GLOBAL_PROGMAN_WINDOW 0x02
3069 #define SET_GLOBAL_TASKMAN_WINDOW 0x04
3071 /* Adjust the privileges held by a token */
3072 @REQ(adjust_token_privileges)
3073 obj_handle_t handle; /* handle to the token */
3074 int disable_all; /* disable all privileges? */
3075 int get_modified_state; /* get modified privileges? */
3076 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges to enable/disable/remove */
3077 @REPLY
3078 unsigned int len; /* total length in bytes required to store token privileges */
3079 VARARG(privileges,LUID_AND_ATTRIBUTES); /* modified privileges */
3080 @END
3082 /* Retrieves the set of privileges held by or available to a token */
3083 @REQ(get_token_privileges)
3084 obj_handle_t handle; /* handle to the token */
3085 @REPLY
3086 unsigned int len; /* total length in bytes required to store token privileges */
3087 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges held by or available to a token */
3088 @END
3090 /* Check the token has the required privileges */
3091 @REQ(check_token_privileges)
3092 obj_handle_t handle; /* handle to the token */
3093 int all_required; /* are all the privileges required for the check to succeed? */
3094 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges to check */
3095 @REPLY
3096 int has_privileges; /* does the token have the required privileges? */
3097 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges held by or available to a token */
3098 @END
3100 @REQ(duplicate_token)
3101 obj_handle_t handle; /* handle to the token to duplicate */
3102 unsigned int access; /* access rights to the new token */
3103 unsigned int attributes; /* object attributes */
3104 int primary; /* is the new token to be a primary one? */
3105 int impersonation_level; /* impersonation level of the new token */
3106 @REPLY
3107 obj_handle_t new_handle; /* duplicated handle */
3108 @END
3110 @REQ(access_check)
3111 obj_handle_t handle; /* handle to the token */
3112 unsigned int desired_access; /* desired access to the object */
3113 unsigned int mapping_read; /* mapping from generic read to specific rights */
3114 unsigned int mapping_write; /* mapping from generic write to specific rights */
3115 unsigned int mapping_execute; /* mapping from generic execute to specific rights */
3116 unsigned int mapping_all; /* mapping from generic all to specific rights */
3117 VARARG(sd,security_descriptor); /* security descriptor to check */
3118 @REPLY
3119 unsigned int access_granted; /* access rights actually granted */
3120 unsigned int access_status; /* was access granted? */
3121 unsigned int privileges_len; /* length needed to store privileges */
3122 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges used during access check */
3123 @END
3125 @REQ(get_token_sid)
3126 obj_handle_t handle; /* handle to the token */
3127 unsigned int which_sid; /* which SID to retrieve from the token */
3128 @REPLY
3129 data_size_t sid_len; /* length needed to store sid */
3130 VARARG(sid,SID); /* the sid specified by which_sid from the token */
3131 @END
3133 @REQ(get_token_groups)
3134 obj_handle_t handle; /* handle to the token */
3135 @REPLY
3136 data_size_t user_len; /* length needed to store user */
3137 VARARG(user,token_groups); /* groups the token's user belongs to */
3138 @END
3140 @REQ(get_token_default_dacl)
3141 obj_handle_t handle; /* handle to the token */
3142 @REPLY
3143 data_size_t acl_len; /* length needed to store access control list */
3144 VARARG(acl,ACL); /* access control list */
3145 @END
3147 @REQ(set_token_default_dacl)
3148 obj_handle_t handle; /* handle to the token */
3149 VARARG(acl,ACL); /* default dacl to set */
3150 @END
3152 @REQ(set_security_object)
3153 obj_handle_t handle; /* handle to the object */
3154 unsigned int security_info; /* which parts of security descriptor to set */
3155 VARARG(sd,security_descriptor); /* security descriptor to set */
3156 @END
3158 @REQ(get_security_object)
3159 obj_handle_t handle; /* handle to the object */
3160 unsigned int security_info; /* which parts of security descriptor to get */
3161 @REPLY
3162 unsigned int sd_len; /* buffer size needed for sd */
3163 VARARG(sd,security_descriptor); /* retrieved security descriptor */
3164 @END
3166 /* Create a mailslot */
3167 @REQ(create_mailslot)
3168 unsigned int access; /* wanted access rights */
3169 unsigned int attributes; /* object attributes */
3170 obj_handle_t rootdir; /* root directory */
3171 timeout_t read_timeout;
3172 unsigned int max_msgsize;
3173 VARARG(name,unicode_str); /* mailslot name */
3174 @REPLY
3175 obj_handle_t handle; /* handle to the mailslot */
3176 @END
3179 /* Set mailslot information */
3180 @REQ(set_mailslot_info)
3181 obj_handle_t handle; /* handle to the mailslot */
3182 timeout_t read_timeout;
3183 unsigned int flags;
3184 @REPLY
3185 timeout_t read_timeout;
3186 unsigned int max_msgsize;
3187 @END
3188 #define MAILSLOT_SET_READ_TIMEOUT 1
3191 /* Create a directory object */
3192 @REQ(create_directory)
3193 unsigned int access; /* access flags */
3194 unsigned int attributes; /* object attributes */
3195 obj_handle_t rootdir; /* root directory */
3196 VARARG(directory_name,unicode_str); /* Directory name */
3197 @REPLY
3198 obj_handle_t handle; /* handle to the directory */
3199 @END
3202 /* Open a directory object */
3203 @REQ(open_directory)
3204 unsigned int access; /* access flags */
3205 unsigned int attributes; /* object attributes */
3206 obj_handle_t rootdir; /* root directory */
3207 VARARG(directory_name,unicode_str); /* Directory name */
3208 @REPLY
3209 obj_handle_t handle; /* handle to the directory */
3210 @END
3213 /* Get a directory entry by index */
3214 @REQ(get_directory_entry)
3215 obj_handle_t handle; /* handle to the directory */
3216 unsigned int index; /* entry index */
3217 @REPLY
3218 data_size_t name_len; /* length of the entry name in bytes */
3219 VARARG(name,unicode_str,name_len); /* entry name */
3220 VARARG(type,unicode_str); /* entry type */
3221 @END
3224 /* Create a symbolic link object */
3225 @REQ(create_symlink)
3226 unsigned int access; /* access flags */
3227 unsigned int attributes; /* object attributes */
3228 obj_handle_t rootdir; /* root directory */
3229 data_size_t name_len; /* length of the symlink name in bytes */
3230 VARARG(name,unicode_str,name_len); /* symlink name */
3231 VARARG(target_name,unicode_str); /* target name */
3232 @REPLY
3233 obj_handle_t handle; /* handle to the symlink */
3234 @END
3237 /* Open a symbolic link object */
3238 @REQ(open_symlink)
3239 unsigned int access; /* access flags */
3240 unsigned int attributes; /* object attributes */
3241 obj_handle_t rootdir; /* root directory */
3242 VARARG(name,unicode_str); /* symlink name */
3243 @REPLY
3244 obj_handle_t handle; /* handle to the symlink */
3245 @END
3248 /* Query a symbolic link object */
3249 @REQ(query_symlink)
3250 obj_handle_t handle; /* handle to the symlink */
3251 @REPLY
3252 data_size_t total; /* total needed size for name */
3253 VARARG(target_name,unicode_str); /* target name */
3254 @END
3257 /* Query basic object information */
3258 @REQ(get_object_info)
3259 obj_handle_t handle; /* handle to the object */
3260 @REPLY
3261 unsigned int access; /* granted access mask */
3262 unsigned int ref_count; /* object ref count */
3263 data_size_t total; /* total needed size for name */
3264 VARARG(name,unicode_str); /* object name */
3265 @END
3268 /* Unlink a named object */
3269 @REQ(unlink_object)
3270 obj_handle_t handle; /* handle to the object */
3271 @END
3274 /* Query the impersonation level of an impersonation token */
3275 @REQ(get_token_impersonation_level)
3276 obj_handle_t handle; /* handle to the object */
3277 @REPLY
3278 int impersonation_level; /* impersonation level of the impersonation token */
3279 @END
3281 /* Allocate a locally-unique identifier */
3282 @REQ(allocate_locally_unique_id)
3283 @REPLY
3284 luid_t luid;
3285 @END
3288 /* Create a device manager */
3289 @REQ(create_device_manager)
3290 unsigned int access; /* wanted access rights */
3291 unsigned int attributes; /* object attributes */
3292 @REPLY
3293 obj_handle_t handle; /* handle to the device */
3294 @END
3297 /* Create a device */
3298 @REQ(create_device)
3299 unsigned int access; /* wanted access rights */
3300 unsigned int attributes; /* object attributes */
3301 obj_handle_t rootdir; /* root directory */
3302 client_ptr_t user_ptr; /* opaque ptr for use by client */
3303 obj_handle_t manager; /* device manager */
3304 VARARG(name,unicode_str); /* object name */
3305 @REPLY
3306 obj_handle_t handle; /* handle to the device */
3307 @END
3310 /* Delete a device */
3311 @REQ(delete_device)
3312 obj_handle_t handle; /* handle to the device */
3313 @END
3316 /* Retrieve the next pending device ioctl request */
3317 @REQ(get_next_device_request)
3318 obj_handle_t manager; /* handle to the device manager */
3319 obj_handle_t prev; /* handle to the previous ioctl */
3320 unsigned int status; /* status of the previous ioctl */
3321 VARARG(prev_data,bytes); /* output data of the previous ioctl */
3322 @REPLY
3323 obj_handle_t next; /* handle to the next ioctl */
3324 ioctl_code_t code; /* ioctl code */
3325 client_ptr_t user_ptr; /* opaque ptr for the device */
3326 process_id_t client_pid; /* pid of process calling ioctl */
3327 thread_id_t client_tid; /* tid of thread calling ioctl */
3328 data_size_t in_size; /* total needed input size */
3329 data_size_t out_size; /* needed output size */
3330 VARARG(next_data,bytes); /* input data of the next ioctl */
3331 @END
3334 /* Make the current process a system process */
3335 @REQ(make_process_system)
3336 @REPLY
3337 obj_handle_t event; /* event signaled when all user processes have exited */
3338 @END
3341 /* Get detailed fixed-size information about a token */
3342 @REQ(get_token_statistics)
3343 obj_handle_t handle; /* handle to the object */
3344 @REPLY
3345 luid_t token_id; /* locally-unique identifier of the token */
3346 luid_t modified_id; /* locally-unique identifier of the modified version of the token */
3347 int primary; /* is the token primary or impersonation? */
3348 int impersonation_level; /* level of impersonation */
3349 int group_count; /* the number of groups the token is a member of */
3350 int privilege_count; /* the number of privileges the token has */
3351 @END
3354 /* Create I/O completion port */
3355 @REQ(create_completion)
3356 unsigned int access; /* desired access to a port */
3357 unsigned int attributes; /* object attributes */
3358 unsigned int concurrent; /* max number of concurrent active threads */
3359 obj_handle_t rootdir; /* root directory */
3360 VARARG(filename,string); /* port name */
3361 @REPLY
3362 obj_handle_t handle; /* port handle */
3363 @END
3366 /* Open I/O completion port */
3367 @REQ(open_completion)
3368 unsigned int access; /* desired access to a port */
3369 unsigned int attributes; /* object attributes */
3370 obj_handle_t rootdir; /* root directory */
3371 VARARG(filename,string); /* port name */
3372 @REPLY
3373 obj_handle_t handle; /* port handle */
3374 @END
3377 /* add completion to completion port */
3378 @REQ(add_completion)
3379 obj_handle_t handle; /* port handle */
3380 apc_param_t ckey; /* completion key */
3381 apc_param_t cvalue; /* completion value */
3382 apc_param_t information; /* IO_STATUS_BLOCK Information */
3383 unsigned int status; /* completion result */
3384 @END
3387 /* get completion from completion port queue */
3388 @REQ(remove_completion)
3389 obj_handle_t handle; /* port handle */
3390 @REPLY
3391 apc_param_t ckey; /* completion key */
3392 apc_param_t cvalue; /* completion value */
3393 apc_param_t information; /* IO_STATUS_BLOCK Information */
3394 unsigned int status; /* completion result */
3395 @END
3398 /* get completion queue depth */
3399 @REQ(query_completion)
3400 obj_handle_t handle; /* port handle */
3401 @REPLY
3402 unsigned int depth; /* completion queue depth */
3403 @END
3406 /* associate object with completion port */
3407 @REQ(set_completion_info)
3408 obj_handle_t handle; /* object handle */
3409 apc_param_t ckey; /* completion key */
3410 obj_handle_t chandle; /* port handle */
3411 @END
3414 /* check for associated completion and push msg */
3415 @REQ(add_fd_completion)
3416 obj_handle_t handle; /* async' object */
3417 apc_param_t cvalue; /* completion value */
3418 apc_param_t information; /* IO_STATUS_BLOCK Information */
3419 unsigned int status; /* completion status */
3420 @END
3423 /* Retrieve layered info for a window */
3424 @REQ(get_window_layered_info)
3425 user_handle_t handle; /* handle to the window */
3426 @REPLY
3427 unsigned int color_key; /* color key */
3428 unsigned int alpha; /* alpha (0..255) */
3429 unsigned int flags; /* LWA_* flags */
3430 @END
3433 /* Set layered info for a window */
3434 @REQ(set_window_layered_info)
3435 user_handle_t handle; /* handle to the window */
3436 unsigned int color_key; /* color key */
3437 unsigned int alpha; /* alpha (0..255) */
3438 unsigned int flags; /* LWA_* flags */
3439 @END
3442 /* Allocate an arbitrary user handle */
3443 @REQ(alloc_user_handle)
3444 @REPLY
3445 user_handle_t handle; /* allocated handle */
3446 @END
3449 /* Free an arbitrary user handle */
3450 @REQ(free_user_handle)
3451 user_handle_t handle; /* handle to free*/
3452 @END
3455 /* Set/get the current cursor */
3456 @REQ(set_cursor)
3457 unsigned int flags; /* flags for fields to set (see below) */
3458 user_handle_t handle; /* handle to the cursor */
3459 int show_count; /* show count increment/decrement */
3460 int x; /* cursor position */
3461 int y;
3462 rectangle_t clip; /* cursor clip rectangle */
3463 unsigned int clip_msg; /* message to post on cursor clip changes */
3464 @REPLY
3465 user_handle_t prev_handle; /* previous handle */
3466 int prev_count; /* previous show count */
3467 int prev_x; /* previous position */
3468 int prev_y;
3469 int new_x; /* new position */
3470 int new_y;
3471 rectangle_t new_clip; /* new clip rectangle */
3472 unsigned int last_change; /* time of last position change */
3473 @END
3474 #define SET_CURSOR_HANDLE 0x01
3475 #define SET_CURSOR_COUNT 0x02
3476 #define SET_CURSOR_POS 0x04
3477 #define SET_CURSOR_CLIP 0x08
3478 #define SET_CURSOR_NOCLIP 0x10
3481 /* Modify the list of registered rawinput devices */
3482 @REQ(update_rawinput_devices)
3483 VARARG(devices,rawinput_devices);
3484 @END
3487 /* Retrieve the suspended context of a thread */
3488 @REQ(get_suspend_context)
3489 @REPLY
3490 VARARG(context,context); /* thread context */
3491 @END
3494 /* Store the suspend context of a thread */
3495 @REQ(set_suspend_context)
3496 VARARG(context,context); /* thread context */
3497 @END