kernel32/tests: Test for LoadLibraryEx() with full path without extension.
[wine/wine-gecko.git] / server / protocol.def
blob8c5f953511ed181b4f67bcbe2a098ed6ba0ccfe6
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 struct
133 int code; /* OUTPUT_DEBUG_STRING_EVENT */
134 data_size_t length; /* string length */
135 client_ptr_t string; /* string to display (in debugged process address space) */
136 } output_string;
137 struct
139 int code; /* RIP_EVENT */
140 int error; /* ??? */
141 int type; /* ??? */
142 } rip_info;
143 } debug_event_t;
145 /* supported CPU types */
146 enum cpu_type
148 CPU_x86, CPU_x86_64, CPU_POWERPC, CPU_ARM, CPU_ARM64
150 typedef int cpu_type_t;
152 /* context data */
153 typedef struct
155 cpu_type_t cpu; /* cpu type */
156 unsigned int flags; /* SERVER_CTX_* flags */
157 union
159 struct { unsigned int eip, ebp, esp, eflags, cs, ss; } i386_regs;
160 struct { unsigned __int64 rip, rbp, rsp;
161 unsigned int cs, ss, flags, __pad; } x86_64_regs;
162 struct { unsigned int iar, msr, ctr, lr, dar, dsisr, trap, __pad; } powerpc_regs;
163 struct { unsigned int sp, lr, pc, cpsr; } arm_regs;
164 struct { unsigned __int64 sp, pc, pstate; } arm64_regs;
165 } ctl; /* selected by SERVER_CTX_CONTROL */
166 union
168 struct { unsigned int eax, ebx, ecx, edx, esi, edi; } i386_regs;
169 struct { unsigned __int64 rax,rbx, rcx, rdx, rsi, rdi,
170 r8, r9, r10, r11, r12, r13, r14, r15; } x86_64_regs;
171 struct { unsigned int gpr[32], cr, xer; } powerpc_regs;
172 struct { unsigned int r[13]; } arm_regs;
173 struct { unsigned __int64 x[31]; } arm64_regs;
174 } integer; /* selected by SERVER_CTX_INTEGER */
175 union
177 struct { unsigned int ds, es, fs, gs; } i386_regs;
178 struct { unsigned int ds, es, fs, gs; } x86_64_regs;
179 } seg; /* selected by SERVER_CTX_SEGMENTS */
180 union
182 struct { unsigned int ctrl, status, tag, err_off, err_sel, data_off, data_sel, cr0npx;
183 unsigned char regs[80]; } i386_regs;
184 struct { struct { unsigned __int64 low, high; } fpregs[32]; } x86_64_regs;
185 struct { double fpr[32], fpscr; } powerpc_regs;
186 } fp; /* selected by SERVER_CTX_FLOATING_POINT */
187 union
189 struct { unsigned int dr0, dr1, dr2, dr3, dr6, dr7; } i386_regs;
190 struct { unsigned __int64 dr0, dr1, dr2, dr3, dr6, dr7; } x86_64_regs;
191 struct { unsigned int dr[8]; } powerpc_regs;
192 } debug; /* selected by SERVER_CTX_DEBUG_REGISTERS */
193 union
195 unsigned char i386_regs[512];
196 } ext; /* selected by SERVER_CTX_EXTENDED_REGISTERS */
197 } context_t;
199 #define SERVER_CTX_CONTROL 0x01
200 #define SERVER_CTX_INTEGER 0x02
201 #define SERVER_CTX_SEGMENTS 0x04
202 #define SERVER_CTX_FLOATING_POINT 0x08
203 #define SERVER_CTX_DEBUG_REGISTERS 0x10
204 #define SERVER_CTX_EXTENDED_REGISTERS 0x20
206 /* structure used in sending an fd from client to server */
207 struct send_fd
209 thread_id_t tid; /* thread id */
210 int fd; /* file descriptor on client-side */
213 /* structure sent by the server on the wait fifo */
214 struct wake_up_reply
216 client_ptr_t cookie; /* magic cookie that was passed in select_request */
217 int signaled; /* wait result */
218 int __pad;
221 /* NT-style timeout, in 100ns units, negative means relative timeout */
222 typedef __int64 timeout_t;
223 #define TIMEOUT_INFINITE (((timeout_t)0x7fffffff) << 32 | 0xffffffff)
225 /* structure for process startup info */
226 typedef struct
228 unsigned int debug_flags;
229 unsigned int console_flags;
230 obj_handle_t console;
231 obj_handle_t hstdin;
232 obj_handle_t hstdout;
233 obj_handle_t hstderr;
234 unsigned int x;
235 unsigned int y;
236 unsigned int xsize;
237 unsigned int ysize;
238 unsigned int xchars;
239 unsigned int ychars;
240 unsigned int attribute;
241 unsigned int flags;
242 unsigned int show;
243 data_size_t curdir_len;
244 data_size_t dllpath_len;
245 data_size_t imagepath_len;
246 data_size_t cmdline_len;
247 data_size_t title_len;
248 data_size_t desktop_len;
249 data_size_t shellinfo_len;
250 data_size_t runtime_len;
251 /* VARARG(curdir,unicode_str,curdir_len); */
252 /* VARARG(dllpath,unicode_str,dllpath_len); */
253 /* VARARG(imagepath,unicode_str,imagepath_len); */
254 /* VARARG(cmdline,unicode_str,cmdline_len); */
255 /* VARARG(title,unicode_str,title_len); */
256 /* VARARG(desktop,unicode_str,desktop_len); */
257 /* VARARG(shellinfo,unicode_str,shellinfo_len); */
258 /* VARARG(runtime,unicode_str,runtime_len); */
259 } startup_info_t;
261 /* structure returned in the list of window properties */
262 typedef struct
264 atom_t atom; /* property atom */
265 int string; /* was atom a string originally? */
266 lparam_t data; /* data stored in property */
267 } property_data_t;
269 /* structure to specify window rectangles */
270 typedef struct
272 int left;
273 int top;
274 int right;
275 int bottom;
276 } rectangle_t;
278 /* structure for parameters of async I/O calls */
279 typedef struct
281 obj_handle_t handle; /* object to perform I/O on */
282 obj_handle_t event; /* event to signal when done */
283 client_ptr_t callback; /* client-side callback to call upon end of async */
284 client_ptr_t iosb; /* I/O status block in client addr space */
285 client_ptr_t arg; /* opaque user data to pass to callback */
286 apc_param_t cvalue; /* completion value to use for completion events */
287 } async_data_t;
289 /* structures for extra message data */
291 struct hardware_msg_data
293 lparam_t info; /* extra info */
294 int x; /* x position */
295 int y; /* y position */
296 unsigned int hw_id; /* unique id */
297 unsigned int flags; /* hook flags */
298 union
300 int type;
301 struct
303 int type; /* RIM_TYPEKEYBOARD */
304 unsigned int message; /* message generated by this rawinput event */
305 unsigned short vkey; /* virtual key code */
306 unsigned short scan; /* scan code */
307 } kbd;
308 struct
310 int type; /* RIM_TYPEMOUSE */
311 int x; /* x coordinate */
312 int y; /* y coordinate */
313 unsigned int data; /* mouse data */
314 } mouse;
315 } rawinput;
318 struct callback_msg_data
320 client_ptr_t callback; /* callback function */
321 lparam_t data; /* user data for callback */
322 lparam_t result; /* message result */
325 struct winevent_msg_data
327 user_handle_t hook; /* hook handle */
328 thread_id_t tid; /* thread id */
329 client_ptr_t hook_proc; /* hook proc address */
330 /* followed by module name if any */
333 typedef union
335 int type;
336 struct
338 int type; /* INPUT_KEYBOARD */
339 unsigned short vkey; /* virtual key code */
340 unsigned short scan; /* scan code */
341 unsigned int flags; /* event flags */
342 unsigned int time; /* event time */
343 lparam_t info; /* extra info */
344 } kbd;
345 struct
347 int type; /* INPUT_MOUSE */
348 int x; /* coordinates */
349 int y;
350 unsigned int data; /* mouse data */
351 unsigned int flags; /* event flags */
352 unsigned int time; /* event time */
353 lparam_t info; /* extra info */
354 } mouse;
355 struct
357 int type; /* INPUT_HARDWARE */
358 unsigned int msg; /* message code */
359 lparam_t lparam; /* message param */
360 } hw;
361 } hw_input_t;
363 typedef union
365 unsigned char bytes[1]; /* raw data for sent messages */
366 struct hardware_msg_data hardware;
367 struct callback_msg_data callback;
368 struct winevent_msg_data winevent;
369 } message_data_t;
371 /* structure for console char/attribute info */
372 typedef struct
374 WCHAR ch;
375 unsigned short attr;
376 } char_info_t;
378 /* structure returned in filesystem events */
379 struct filesystem_event
381 int action;
382 data_size_t len;
383 char name[1];
386 typedef struct
388 unsigned int low_part;
389 int high_part;
390 } luid_t;
392 #define MAX_ACL_LEN 65535
394 struct security_descriptor
396 unsigned int control; /* SE_ flags */
397 data_size_t owner_len;
398 data_size_t group_len;
399 data_size_t sacl_len;
400 data_size_t dacl_len;
401 /* VARARG(owner,SID); */
402 /* VARARG(group,SID); */
403 /* VARARG(sacl,ACL); */
404 /* VARARG(dacl,ACL); */
407 struct object_attributes
409 obj_handle_t rootdir; /* root directory */
410 data_size_t sd_len; /* length of security_descriptor data. may be 0 */
411 data_size_t name_len; /* length of the name string. may be 0 */
412 /* VARARG(sd,security_descriptor); */
413 /* VARARG(name,unicode_str); */
416 struct token_groups
418 unsigned int count;
419 /* unsigned int attributes[count]; */
420 /* VARARG(sids,SID); */
423 enum select_op
425 SELECT_NONE,
426 SELECT_WAIT,
427 SELECT_WAIT_ALL,
428 SELECT_SIGNAL_AND_WAIT,
429 SELECT_KEYED_EVENT_WAIT,
430 SELECT_KEYED_EVENT_RELEASE
433 typedef union
435 enum select_op op;
436 struct
438 enum select_op op; /* SELECT_WAIT or SELECT_WAIT_ALL */
439 obj_handle_t handles[MAXIMUM_WAIT_OBJECTS];
440 } wait;
441 struct
443 enum select_op op; /* SELECT_SIGNAL_AND_WAIT */
444 obj_handle_t wait;
445 obj_handle_t signal; /* must be last in the structure so we can remove it on retries */
446 } signal_and_wait;
447 struct
449 enum select_op op; /* SELECT_KEYED_EVENT_WAIT or SELECT_KEYED_EVENT_RELEASE */
450 obj_handle_t handle;
451 client_ptr_t key;
452 } keyed_event;
453 } select_op_t;
455 enum apc_type
457 APC_NONE,
458 APC_USER,
459 APC_TIMER,
460 APC_ASYNC_IO,
461 APC_VIRTUAL_ALLOC,
462 APC_VIRTUAL_FREE,
463 APC_VIRTUAL_QUERY,
464 APC_VIRTUAL_PROTECT,
465 APC_VIRTUAL_FLUSH,
466 APC_VIRTUAL_LOCK,
467 APC_VIRTUAL_UNLOCK,
468 APC_MAP_VIEW,
469 APC_UNMAP_VIEW,
470 APC_CREATE_THREAD
473 typedef union
475 enum apc_type type;
476 struct
478 enum apc_type type; /* APC_USER */
479 int __pad;
480 client_ptr_t func; /* void (__stdcall *func)(ULONG_PTR,ULONG_PTR,ULONG_PTR); */
481 apc_param_t args[3]; /* arguments for user function */
482 } user;
483 struct
485 enum apc_type type; /* APC_TIMER */
486 int __pad;
487 client_ptr_t func; /* void (__stdcall *func)(void*, unsigned int, unsigned int); */
488 timeout_t time; /* absolute time of expiration */
489 client_ptr_t arg; /* user argument */
490 } timer;
491 struct
493 enum apc_type type; /* APC_ASYNC_IO */
494 unsigned int status; /* I/O status */
495 client_ptr_t func; /* unsigned int (*func)(void*, void*, unsigned int, void **); */
496 client_ptr_t user; /* user pointer */
497 client_ptr_t sb; /* status block */
498 } async_io;
499 struct
501 enum apc_type type; /* APC_VIRTUAL_ALLOC */
502 unsigned int op_type; /* type of operation */
503 client_ptr_t addr; /* requested address */
504 mem_size_t size; /* allocation size */
505 unsigned int zero_bits; /* allocation alignment */
506 unsigned int prot; /* memory protection flags */
507 } virtual_alloc;
508 struct
510 enum apc_type type; /* APC_VIRTUAL_FREE */
511 unsigned int op_type; /* type of operation */
512 client_ptr_t addr; /* requested address */
513 mem_size_t size; /* allocation size */
514 } virtual_free;
515 struct
517 enum apc_type type; /* APC_VIRTUAL_QUERY */
518 int __pad;
519 client_ptr_t addr; /* requested address */
520 } virtual_query;
521 struct
523 enum apc_type type; /* APC_VIRTUAL_PROTECT */
524 unsigned int prot; /* new protection flags */
525 client_ptr_t addr; /* requested address */
526 mem_size_t size; /* requested size */
527 } virtual_protect;
528 struct
530 enum apc_type type; /* APC_VIRTUAL_FLUSH */
531 int __pad;
532 client_ptr_t addr; /* requested address */
533 mem_size_t size; /* requested size */
534 } virtual_flush;
535 struct
537 enum apc_type type; /* APC_VIRTUAL_LOCK */
538 int __pad;
539 client_ptr_t addr; /* requested address */
540 mem_size_t size; /* requested size */
541 } virtual_lock;
542 struct
544 enum apc_type type; /* APC_VIRTUAL_UNLOCK */
545 int __pad;
546 client_ptr_t addr; /* requested address */
547 mem_size_t size; /* requested size */
548 } virtual_unlock;
549 struct
551 enum apc_type type; /* APC_MAP_VIEW */
552 obj_handle_t handle; /* mapping handle */
553 client_ptr_t addr; /* requested address */
554 mem_size_t size; /* allocation size */
555 file_pos_t offset; /* file offset */
556 unsigned int alloc_type;/* allocation type */
557 unsigned short zero_bits; /* allocation alignment */
558 unsigned short prot; /* memory protection flags */
559 } map_view;
560 struct
562 enum apc_type type; /* APC_UNMAP_VIEW */
563 int __pad;
564 client_ptr_t addr; /* view address */
565 } unmap_view;
566 struct
568 enum apc_type type; /* APC_CREATE_THREAD */
569 int suspend; /* suspended thread? */
570 client_ptr_t func; /* void (__stdcall *func)(void*); start function */
571 client_ptr_t arg; /* argument for start function */
572 mem_size_t reserve; /* reserve size for thread stack */
573 mem_size_t commit; /* commit size for thread stack */
574 } create_thread;
575 } apc_call_t;
577 typedef union
579 enum apc_type type;
580 struct
582 enum apc_type type; /* APC_ASYNC_IO */
583 unsigned int status; /* new status of async operation */
584 client_ptr_t apc; /* user APC to call */
585 unsigned int total; /* bytes transferred */
586 } async_io;
587 struct
589 enum apc_type type; /* APC_VIRTUAL_ALLOC */
590 unsigned int status; /* status returned by call */
591 client_ptr_t addr; /* resulting address */
592 mem_size_t size; /* resulting size */
593 } virtual_alloc;
594 struct
596 enum apc_type type; /* APC_VIRTUAL_FREE */
597 unsigned int status; /* status returned by call */
598 client_ptr_t addr; /* resulting address */
599 mem_size_t size; /* resulting size */
600 } virtual_free;
601 struct
603 enum apc_type type; /* APC_VIRTUAL_QUERY */
604 unsigned int status; /* status returned by call */
605 client_ptr_t base; /* resulting base address */
606 client_ptr_t alloc_base;/* resulting allocation base */
607 mem_size_t size; /* resulting region size */
608 unsigned short state; /* resulting region state */
609 unsigned short prot; /* resulting region protection */
610 unsigned short alloc_prot;/* resulting allocation protection */
611 unsigned short alloc_type;/* resulting region allocation type */
612 } virtual_query;
613 struct
615 enum apc_type type; /* APC_VIRTUAL_PROTECT */
616 unsigned int status; /* status returned by call */
617 client_ptr_t addr; /* resulting address */
618 mem_size_t size; /* resulting size */
619 unsigned int prot; /* old protection flags */
620 } virtual_protect;
621 struct
623 enum apc_type type; /* APC_VIRTUAL_FLUSH */
624 unsigned int status; /* status returned by call */
625 client_ptr_t addr; /* resulting address */
626 mem_size_t size; /* resulting size */
627 } virtual_flush;
628 struct
630 enum apc_type type; /* APC_VIRTUAL_LOCK */
631 unsigned int status; /* status returned by call */
632 client_ptr_t addr; /* resulting address */
633 mem_size_t size; /* resulting size */
634 } virtual_lock;
635 struct
637 enum apc_type type; /* APC_VIRTUAL_UNLOCK */
638 unsigned int status; /* status returned by call */
639 client_ptr_t addr; /* resulting address */
640 mem_size_t size; /* resulting size */
641 } virtual_unlock;
642 struct
644 enum apc_type type; /* APC_MAP_VIEW */
645 unsigned int status; /* status returned by call */
646 client_ptr_t addr; /* resulting address */
647 mem_size_t size; /* resulting size */
648 } map_view;
649 struct
651 enum apc_type type; /* APC_MAP_VIEW */
652 unsigned int status; /* status returned by call */
653 } unmap_view;
654 struct
656 enum apc_type type; /* APC_CREATE_THREAD */
657 unsigned int status; /* status returned by call */
658 thread_id_t tid; /* thread id */
659 obj_handle_t handle; /* handle to new thread */
660 } create_thread;
661 } apc_result_t;
663 struct rawinput_device
665 unsigned short usage_page;
666 unsigned short usage;
667 unsigned int flags;
668 user_handle_t target;
671 /****************************************************************/
672 /* Request declarations */
674 /* Create a new process from the context of the parent */
675 @REQ(new_process)
676 int inherit_all; /* inherit all handles from parent */
677 unsigned int create_flags; /* creation flags */
678 int socket_fd; /* file descriptor for process socket */
679 obj_handle_t exe_file; /* file handle for main exe */
680 unsigned int process_access; /* access rights for process object */
681 unsigned int process_attr; /* attributes for process object */
682 unsigned int thread_access; /* access rights for thread object */
683 unsigned int thread_attr; /* attributes for thread object */
684 cpu_type_t cpu; /* CPU that the new process will use */
685 data_size_t info_size; /* size of startup info */
686 VARARG(info,startup_info,info_size); /* startup information */
687 VARARG(env,unicode_str); /* environment for new process */
688 @REPLY
689 obj_handle_t info; /* new process info handle */
690 process_id_t pid; /* process id */
691 obj_handle_t phandle; /* process handle (in the current process) */
692 thread_id_t tid; /* thread id */
693 obj_handle_t thandle; /* thread handle (in the current process) */
694 @END
697 /* Retrieve information about a newly started process */
698 @REQ(get_new_process_info)
699 obj_handle_t info; /* info handle returned from new_process_request */
700 @REPLY
701 int success; /* did the process start successfully? */
702 int exit_code; /* process exit code if failed */
703 @END
706 /* Create a new thread from the context of the parent */
707 @REQ(new_thread)
708 unsigned int access; /* wanted access rights */
709 unsigned int attributes; /* object attributes */
710 int suspend; /* new thread should be suspended on creation */
711 int request_fd; /* fd for request pipe */
712 @REPLY
713 thread_id_t tid; /* thread id */
714 obj_handle_t handle; /* thread handle (in the current process) */
715 @END
718 /* Retrieve the new process startup info */
719 @REQ(get_startup_info)
720 @REPLY
721 obj_handle_t exe_file; /* file handle for main exe */
722 data_size_t info_size; /* size of startup info */
723 VARARG(info,startup_info,info_size); /* startup information */
724 VARARG(env,unicode_str); /* environment */
725 @END
728 /* Signal the end of the process initialization */
729 @REQ(init_process_done)
730 int gui; /* is it a GUI process? */
731 mod_handle_t module; /* main module base address */
732 client_ptr_t ldt_copy; /* address of LDT copy (in thread address space) */
733 client_ptr_t entry; /* process entry point */
734 @END
737 /* Initialize a thread; called from the child after fork()/clone() */
738 @REQ(init_thread)
739 int unix_pid; /* Unix pid of new thread */
740 int unix_tid; /* Unix tid of new thread */
741 int debug_level; /* new debug level */
742 client_ptr_t teb; /* TEB of new thread (in thread address space) */
743 client_ptr_t entry; /* entry point or PEB if initial thread (in thread address space) */
744 int reply_fd; /* fd for reply pipe */
745 int wait_fd; /* fd for blocking calls pipe */
746 cpu_type_t cpu; /* CPU that this thread is running on */
747 @REPLY
748 process_id_t pid; /* process id of the new thread's process */
749 thread_id_t tid; /* thread id of the new thread */
750 timeout_t server_start; /* server start time */
751 data_size_t info_size; /* total size of startup info */
752 int version; /* protocol version */
753 unsigned int all_cpus; /* bitset of supported CPUs */
754 @END
757 /* Terminate a process */
758 @REQ(terminate_process)
759 obj_handle_t handle; /* process handle to terminate */
760 int exit_code; /* process exit code */
761 @REPLY
762 int self; /* suicide? */
763 @END
766 /* Terminate a thread */
767 @REQ(terminate_thread)
768 obj_handle_t handle; /* thread handle to terminate */
769 int exit_code; /* thread exit code */
770 @REPLY
771 int self; /* suicide? */
772 int last; /* last thread in this process? */
773 @END
776 /* Retrieve information about a process */
777 @REQ(get_process_info)
778 obj_handle_t handle; /* process handle */
779 @REPLY
780 process_id_t pid; /* server process id */
781 process_id_t ppid; /* server process id of parent */
782 affinity_t affinity; /* process affinity mask */
783 client_ptr_t peb; /* PEB address in process address space */
784 timeout_t start_time; /* process start time */
785 timeout_t end_time; /* process end time */
786 int exit_code; /* process exit code */
787 int priority; /* priority class */
788 cpu_type_t cpu; /* CPU that this process is running on */
789 int debugger_present; /* process is being debugged */
790 @END
793 /* Set a process information */
794 @REQ(set_process_info)
795 obj_handle_t handle; /* process handle */
796 int mask; /* setting mask (see below) */
797 int priority; /* priority class */
798 affinity_t affinity; /* affinity mask */
799 @END
800 #define SET_PROCESS_INFO_PRIORITY 0x01
801 #define SET_PROCESS_INFO_AFFINITY 0x02
804 /* Retrieve information about a thread */
805 @REQ(get_thread_info)
806 obj_handle_t handle; /* thread handle */
807 thread_id_t tid_in; /* thread id (optional) */
808 @REPLY
809 process_id_t pid; /* server process id */
810 thread_id_t tid; /* server thread id */
811 client_ptr_t teb; /* thread teb pointer */
812 affinity_t affinity; /* thread affinity mask */
813 timeout_t creation_time; /* thread creation time */
814 timeout_t exit_time; /* thread exit time */
815 int exit_code; /* thread exit code */
816 int priority; /* thread priority level */
817 int last; /* last thread in process */
818 @END
821 /* Set a thread information */
822 @REQ(set_thread_info)
823 obj_handle_t handle; /* thread handle */
824 int mask; /* setting mask (see below) */
825 int priority; /* priority class */
826 affinity_t affinity; /* affinity mask */
827 obj_handle_t token; /* impersonation token */
828 @END
829 #define SET_THREAD_INFO_PRIORITY 0x01
830 #define SET_THREAD_INFO_AFFINITY 0x02
831 #define SET_THREAD_INFO_TOKEN 0x04
834 /* Retrieve information about a module */
835 @REQ(get_dll_info)
836 obj_handle_t handle; /* process handle */
837 mod_handle_t base_address; /* base address of module */
838 @REPLY
839 client_ptr_t entry_point;
840 data_size_t size; /* module size */
841 data_size_t filename_len; /* buffer len in bytes required to store filename */
842 VARARG(filename,unicode_str); /* file name of module */
843 @END
846 /* Suspend a thread */
847 @REQ(suspend_thread)
848 obj_handle_t handle; /* thread handle */
849 @REPLY
850 int count; /* new suspend count */
851 @END
854 /* Resume a thread */
855 @REQ(resume_thread)
856 obj_handle_t handle; /* thread handle */
857 @REPLY
858 int count; /* new suspend count */
859 @END
862 /* Notify the server that a dll has been loaded */
863 @REQ(load_dll)
864 obj_handle_t mapping; /* file mapping handle */
865 mod_handle_t base; /* base address */
866 client_ptr_t name; /* ptr to ptr to name (in process addr space) */
867 data_size_t size; /* dll size */
868 int dbg_offset; /* debug info offset */
869 int dbg_size; /* debug info size */
870 VARARG(filename,unicode_str); /* file name of dll */
871 @END
874 /* Notify the server that a dll is being unloaded */
875 @REQ(unload_dll)
876 mod_handle_t base; /* base address */
877 @END
880 /* Queue an APC for a thread or process */
881 @REQ(queue_apc)
882 obj_handle_t handle; /* thread or process handle */
883 apc_call_t call; /* call arguments */
884 @REPLY
885 obj_handle_t handle; /* APC handle */
886 int self; /* run APC in caller itself? */
887 @END
890 /* Get the result of an APC call */
891 @REQ(get_apc_result)
892 obj_handle_t handle; /* handle to the APC */
893 @REPLY
894 apc_result_t result; /* result of the APC */
895 @END
898 /* Close a handle for the current process */
899 @REQ(close_handle)
900 obj_handle_t handle; /* handle to close */
901 @END
904 /* Set a handle information */
905 @REQ(set_handle_info)
906 obj_handle_t handle; /* handle we are interested in */
907 int flags; /* new handle flags */
908 int mask; /* mask for flags to set */
909 @REPLY
910 int old_flags; /* old flag value */
911 @END
914 /* Duplicate a handle */
915 @REQ(dup_handle)
916 obj_handle_t src_process; /* src process handle */
917 obj_handle_t src_handle; /* src handle to duplicate */
918 obj_handle_t dst_process; /* dst process handle */
919 unsigned int access; /* wanted access rights */
920 unsigned int attributes; /* object attributes */
921 unsigned int options; /* duplicate options (see below) */
922 @REPLY
923 obj_handle_t handle; /* duplicated handle in dst process */
924 int self; /* is the source the current process? */
925 int closed; /* whether the source handle has been closed */
926 @END
927 #define DUP_HANDLE_CLOSE_SOURCE DUPLICATE_CLOSE_SOURCE
928 #define DUP_HANDLE_SAME_ACCESS DUPLICATE_SAME_ACCESS
929 #define DUP_HANDLE_MAKE_GLOBAL 0x80000000 /* Not a Windows flag */
932 /* Open a handle to a process */
933 @REQ(open_process)
934 process_id_t pid; /* process id to open */
935 unsigned int access; /* wanted access rights */
936 unsigned int attributes; /* object attributes */
937 @REPLY
938 obj_handle_t handle; /* handle to the process */
939 @END
942 /* Open a handle to a thread */
943 @REQ(open_thread)
944 thread_id_t tid; /* thread id to open */
945 unsigned int access; /* wanted access rights */
946 unsigned int attributes; /* object attributes */
947 @REPLY
948 obj_handle_t handle; /* handle to the thread */
949 @END
952 /* Wait for handles */
953 @REQ(select)
954 int flags; /* wait flags (see below) */
955 client_ptr_t cookie; /* magic cookie to return to client */
956 timeout_t timeout; /* timeout */
957 obj_handle_t prev_apc; /* handle to previous APC */
958 VARARG(result,apc_result); /* result of previous APC */
959 VARARG(data,select_op); /* operation-specific data */
960 @REPLY
961 timeout_t timeout; /* timeout converted to absolute */
962 apc_call_t call; /* APC call arguments */
963 obj_handle_t apc_handle; /* handle to next APC */
964 @END
965 #define SELECT_ALERTABLE 1
966 #define SELECT_INTERRUPTIBLE 2
969 /* Create an event */
970 @REQ(create_event)
971 unsigned int access; /* wanted access rights */
972 unsigned int attributes; /* object attributes */
973 int manual_reset; /* manual reset event */
974 int initial_state; /* initial state of the event */
975 VARARG(objattr,object_attributes); /* object attributes */
976 @REPLY
977 obj_handle_t handle; /* handle to the event */
978 @END
980 /* Event operation */
981 @REQ(event_op)
982 obj_handle_t handle; /* handle to event */
983 int op; /* event operation (see below) */
984 @END
985 enum event_op { PULSE_EVENT, SET_EVENT, RESET_EVENT };
987 @REQ(query_event)
988 obj_handle_t handle; /* handle to event */
989 @REPLY
990 int manual_reset; /* manual reset event */
991 int state; /* current state of the event */
992 @END
994 /* Open an event */
995 @REQ(open_event)
996 unsigned int access; /* wanted access rights */
997 unsigned int attributes; /* object attributes */
998 obj_handle_t rootdir; /* root directory */
999 VARARG(name,unicode_str); /* object name */
1000 @REPLY
1001 obj_handle_t handle; /* handle to the event */
1002 @END
1005 /* Create a keyed event */
1006 @REQ(create_keyed_event)
1007 unsigned int access; /* wanted access rights */
1008 unsigned int attributes; /* object attributes */
1009 VARARG(objattr,object_attributes); /* object attributes */
1010 @REPLY
1011 obj_handle_t handle; /* handle to the event */
1012 @END
1014 /* Open a keyed event */
1015 @REQ(open_keyed_event)
1016 unsigned int access; /* wanted access rights */
1017 unsigned int attributes; /* object attributes */
1018 obj_handle_t rootdir; /* root directory */
1019 VARARG(name,unicode_str); /* object name */
1020 @REPLY
1021 obj_handle_t handle; /* handle to the event */
1022 @END
1025 /* Create a mutex */
1026 @REQ(create_mutex)
1027 unsigned int access; /* wanted access rights */
1028 unsigned int attributes; /* object attributes */
1029 int owned; /* initially owned? */
1030 VARARG(objattr,object_attributes); /* object attributes */
1031 @REPLY
1032 obj_handle_t handle; /* handle to the mutex */
1033 @END
1036 /* Release a mutex */
1037 @REQ(release_mutex)
1038 obj_handle_t handle; /* handle to the mutex */
1039 @REPLY
1040 unsigned int prev_count; /* value of internal counter, before release */
1041 @END
1044 /* Open a mutex */
1045 @REQ(open_mutex)
1046 unsigned int access; /* wanted access rights */
1047 unsigned int attributes; /* object attributes */
1048 obj_handle_t rootdir; /* root directory */
1049 VARARG(name,unicode_str); /* object name */
1050 @REPLY
1051 obj_handle_t handle; /* handle to the mutex */
1052 @END
1055 /* Create a semaphore */
1056 @REQ(create_semaphore)
1057 unsigned int access; /* wanted access rights */
1058 unsigned int attributes; /* object attributes */
1059 unsigned int initial; /* initial count */
1060 unsigned int max; /* maximum count */
1061 VARARG(objattr,object_attributes); /* object attributes */
1062 @REPLY
1063 obj_handle_t handle; /* handle to the semaphore */
1064 @END
1067 /* Release a semaphore */
1068 @REQ(release_semaphore)
1069 obj_handle_t handle; /* handle to the semaphore */
1070 unsigned int count; /* count to add to semaphore */
1071 @REPLY
1072 unsigned int prev_count; /* previous semaphore count */
1073 @END
1076 /* Open a semaphore */
1077 @REQ(open_semaphore)
1078 unsigned int access; /* wanted access rights */
1079 unsigned int attributes; /* object attributes */
1080 obj_handle_t rootdir; /* root directory */
1081 VARARG(name,unicode_str); /* object name */
1082 @REPLY
1083 obj_handle_t handle; /* handle to the semaphore */
1084 @END
1087 /* Create a file */
1088 @REQ(create_file)
1089 unsigned int access; /* wanted access rights */
1090 unsigned int attributes; /* object attributes */
1091 unsigned int sharing; /* sharing flags */
1092 int create; /* file create action */
1093 unsigned int options; /* file options */
1094 unsigned int attrs; /* file attributes for creation */
1095 VARARG(objattr,object_attributes); /* object attributes */
1096 VARARG(filename,string); /* file name */
1097 @REPLY
1098 obj_handle_t handle; /* handle to the file */
1099 @END
1102 /* Open a file object */
1103 @REQ(open_file_object)
1104 unsigned int access; /* wanted access rights */
1105 unsigned int attributes; /* open attributes */
1106 obj_handle_t rootdir; /* root directory */
1107 unsigned int sharing; /* sharing flags */
1108 unsigned int options; /* file options */
1109 VARARG(filename,unicode_str); /* file name */
1110 @REPLY
1111 obj_handle_t handle; /* handle to the file */
1112 @END
1115 /* Allocate a file handle for a Unix fd */
1116 @REQ(alloc_file_handle)
1117 unsigned int access; /* wanted access rights */
1118 unsigned int attributes; /* object attributes */
1119 int fd; /* file descriptor on the client side */
1120 @REPLY
1121 obj_handle_t handle; /* handle to the file */
1122 @END
1125 /* Get the Unix name from a file handle */
1126 @REQ(get_handle_unix_name)
1127 obj_handle_t handle; /* file handle */
1128 @REPLY
1129 data_size_t name_len; /* unix name length */
1130 VARARG(name,string); /* unix name */
1131 @END
1134 /* Get a Unix fd to access a file */
1135 @REQ(get_handle_fd)
1136 obj_handle_t handle; /* handle to the file */
1137 @REPLY
1138 int type; /* file type (see below) */
1139 int cacheable; /* can fd be cached in the client? */
1140 unsigned int access; /* file access rights */
1141 unsigned int options; /* file open options */
1142 @END
1143 enum server_fd_type
1145 FD_TYPE_INVALID, /* invalid file (no associated fd) */
1146 FD_TYPE_FILE, /* regular file */
1147 FD_TYPE_DIR, /* directory */
1148 FD_TYPE_SOCKET, /* socket */
1149 FD_TYPE_SERIAL, /* serial port */
1150 FD_TYPE_PIPE, /* named pipe */
1151 FD_TYPE_MAILSLOT, /* mailslot */
1152 FD_TYPE_CHAR, /* unspecified char device */
1153 FD_TYPE_DEVICE, /* Windows device file */
1154 FD_TYPE_NB_TYPES
1158 /* Flush a file buffers */
1159 @REQ(flush_file)
1160 obj_handle_t handle; /* handle to the file */
1161 @REPLY
1162 obj_handle_t event; /* event set when finished */
1163 @END
1166 /* Lock a region of a file */
1167 @REQ(lock_file)
1168 obj_handle_t handle; /* handle to the file */
1169 file_pos_t offset; /* offset of start of lock */
1170 file_pos_t count; /* count of bytes to lock */
1171 int shared; /* shared or exclusive lock? */
1172 int wait; /* do we want to wait? */
1173 @REPLY
1174 obj_handle_t handle; /* handle to wait on */
1175 int overlapped; /* is it an overlapped I/O handle? */
1176 @END
1179 /* Unlock a region of a file */
1180 @REQ(unlock_file)
1181 obj_handle_t handle; /* handle to the file */
1182 file_pos_t offset; /* offset of start of unlock */
1183 file_pos_t count; /* count of bytes to unlock */
1184 @END
1187 /* Create a socket */
1188 @REQ(create_socket)
1189 unsigned int access; /* wanted access rights */
1190 unsigned int attributes; /* object attributes */
1191 int family; /* family, see socket manpage */
1192 int type; /* type, see socket manpage */
1193 int protocol; /* protocol, see socket manpage */
1194 unsigned int flags; /* socket flags */
1195 @REPLY
1196 obj_handle_t handle; /* handle to the new socket */
1197 @END
1200 /* Accept a socket */
1201 @REQ(accept_socket)
1202 obj_handle_t lhandle; /* handle to the listening socket */
1203 unsigned int access; /* wanted access rights */
1204 unsigned int attributes; /* object attributes */
1205 @REPLY
1206 obj_handle_t handle; /* handle to the new socket */
1207 @END
1210 /* Accept into an initialized socket */
1211 @REQ(accept_into_socket)
1212 obj_handle_t lhandle; /* handle to the listening socket */
1213 obj_handle_t ahandle; /* handle to the accepting socket */
1214 @END
1217 /* Set socket event parameters */
1218 @REQ(set_socket_event)
1219 obj_handle_t handle; /* handle to the socket */
1220 unsigned int mask; /* event mask */
1221 obj_handle_t event; /* event object */
1222 user_handle_t window; /* window to send the message to */
1223 unsigned int msg; /* message to send */
1224 @END
1227 /* Get socket event parameters */
1228 @REQ(get_socket_event)
1229 obj_handle_t handle; /* handle to the socket */
1230 int service; /* clear pending? */
1231 obj_handle_t c_event; /* event to clear */
1232 @REPLY
1233 unsigned int mask; /* event mask */
1234 unsigned int pmask; /* pending events */
1235 unsigned int state; /* status bits */
1236 VARARG(errors,ints); /* event errors */
1237 @END
1240 /* Get socket info */
1241 @REQ(get_socket_info)
1242 obj_handle_t handle; /* handle to the socket */
1243 @REPLY
1244 int family; /* family, see socket manpage */
1245 int type; /* type, see socket manpage */
1246 int protocol; /* protocol, see socket manpage */
1247 @END
1250 /* Re-enable pending socket events */
1251 @REQ(enable_socket_event)
1252 obj_handle_t handle; /* handle to the socket */
1253 unsigned int mask; /* events to re-enable */
1254 unsigned int sstate; /* status bits to set */
1255 unsigned int cstate; /* status bits to clear */
1256 @END
1258 @REQ(set_socket_deferred)
1259 obj_handle_t handle; /* handle to the socket */
1260 obj_handle_t deferred; /* handle to the socket for which accept() is deferred */
1261 @END
1263 /* Allocate a console (only used by a console renderer) */
1264 @REQ(alloc_console)
1265 unsigned int access; /* wanted access rights */
1266 unsigned int attributes; /* object attributes */
1267 process_id_t pid; /* pid of process which shall be attached to the console */
1268 int input_fd; /* if pid=-1 (bare console to current process), fd for input */
1269 @REPLY
1270 obj_handle_t handle_in; /* handle to console input */
1271 obj_handle_t event; /* handle to renderer events change notification */
1272 @END
1275 /* Free the console of the current process */
1276 @REQ(free_console)
1277 @END
1280 #define CONSOLE_RENDERER_NONE_EVENT 0x00
1281 #define CONSOLE_RENDERER_TITLE_EVENT 0x01
1282 #define CONSOLE_RENDERER_ACTIVE_SB_EVENT 0x02
1283 #define CONSOLE_RENDERER_SB_RESIZE_EVENT 0x03
1284 #define CONSOLE_RENDERER_UPDATE_EVENT 0x04
1285 #define CONSOLE_RENDERER_CURSOR_POS_EVENT 0x05
1286 #define CONSOLE_RENDERER_CURSOR_GEOM_EVENT 0x06
1287 #define CONSOLE_RENDERER_DISPLAY_EVENT 0x07
1288 #define CONSOLE_RENDERER_EXIT_EVENT 0x08
1289 struct console_renderer_event
1291 short event;
1292 union
1294 struct update
1296 short top;
1297 short bottom;
1298 } update;
1299 struct resize
1301 short width;
1302 short height;
1303 } resize;
1304 struct cursor_pos
1306 short x;
1307 short y;
1308 } cursor_pos;
1309 struct cursor_geom
1311 short visible;
1312 short size;
1313 } cursor_geom;
1314 struct display
1316 short left;
1317 short top;
1318 short width;
1319 short height;
1320 } display;
1321 } u;
1324 /* retrieve console events for the renderer */
1325 @REQ(get_console_renderer_events)
1326 obj_handle_t handle; /* handle to console input events */
1327 @REPLY
1328 VARARG(data,bytes); /* the various console_renderer_events */
1329 @END
1332 /* Open a handle to the process console */
1333 @REQ(open_console)
1334 obj_handle_t from; /* 0 (resp 1) input (resp output) of current process console */
1335 /* otherwise console_in handle to get active screen buffer? */
1336 unsigned int access; /* wanted access rights */
1337 unsigned int attributes; /* object attributes */
1338 int share; /* share mask (only for output handles) */
1339 @REPLY
1340 obj_handle_t handle; /* handle to the console */
1341 @END
1344 /* Get the input queue wait event */
1345 @REQ(get_console_wait_event)
1346 @REPLY
1347 obj_handle_t handle;
1348 @END
1350 /* Get a console mode (input or output) */
1351 @REQ(get_console_mode)
1352 obj_handle_t handle; /* handle to the console */
1353 @REPLY
1354 int mode; /* console mode */
1355 @END
1358 /* Set a console mode (input or output) */
1359 @REQ(set_console_mode)
1360 obj_handle_t handle; /* handle to the console */
1361 int mode; /* console mode */
1362 @END
1365 /* Set info about a console (input only) */
1366 @REQ(set_console_input_info)
1367 obj_handle_t handle; /* handle to console input, or 0 for process' console */
1368 int mask; /* setting mask (see below) */
1369 obj_handle_t active_sb; /* active screen buffer */
1370 int history_mode; /* whether we duplicate lines in history */
1371 int history_size; /* number of lines in history */
1372 int edition_mode; /* index to the edition mode flavors */
1373 int input_cp; /* console input codepage */
1374 int output_cp; /* console output codepage */
1375 user_handle_t win; /* console window if backend supports it */
1376 VARARG(title,unicode_str); /* console title */
1377 @END
1378 #define SET_CONSOLE_INPUT_INFO_ACTIVE_SB 0x01
1379 #define SET_CONSOLE_INPUT_INFO_TITLE 0x02
1380 #define SET_CONSOLE_INPUT_INFO_HISTORY_MODE 0x04
1381 #define SET_CONSOLE_INPUT_INFO_HISTORY_SIZE 0x08
1382 #define SET_CONSOLE_INPUT_INFO_EDITION_MODE 0x10
1383 #define SET_CONSOLE_INPUT_INFO_INPUT_CODEPAGE 0x20
1384 #define SET_CONSOLE_INPUT_INFO_OUTPUT_CODEPAGE 0x40
1385 #define SET_CONSOLE_INPUT_INFO_WIN 0x80
1388 /* Get info about a console (input only) */
1389 @REQ(get_console_input_info)
1390 obj_handle_t handle; /* handle to console input, or 0 for process' console */
1391 @REPLY
1392 int history_mode; /* whether we duplicate lines in history */
1393 int history_size; /* number of lines in history */
1394 int history_index; /* number of used lines in history */
1395 int edition_mode; /* index to the edition mode flavors */
1396 int input_cp; /* console input codepage */
1397 int output_cp; /* console output codepage */
1398 user_handle_t win; /* console window if backend supports it */
1399 VARARG(title,unicode_str); /* console title */
1400 @END
1403 /* appends a string to console's history */
1404 @REQ(append_console_input_history)
1405 obj_handle_t handle; /* handle to console input, or 0 for process' console */
1406 VARARG(line,unicode_str); /* line to add */
1407 @END
1410 /* appends a string to console's history */
1411 @REQ(get_console_input_history)
1412 obj_handle_t handle; /* handle to console input, or 0 for process' console */
1413 int index; /* index to get line from */
1414 @REPLY
1415 int total; /* total length of line in Unicode chars */
1416 VARARG(line,unicode_str); /* line to add */
1417 @END
1420 /* creates a new screen buffer on process' console */
1421 @REQ(create_console_output)
1422 obj_handle_t handle_in; /* handle to console input, or 0 for process' console */
1423 unsigned int access; /* wanted access rights */
1424 unsigned int attributes; /* object attributes */
1425 unsigned int share; /* sharing credentials */
1426 int fd; /* for bare consoles, fd the screen-buffer is attached to */
1427 @REPLY
1428 obj_handle_t handle_out; /* handle to the screen buffer */
1429 @END
1432 /* Set info about a console (output only) */
1433 @REQ(set_console_output_info)
1434 obj_handle_t handle; /* handle to the console */
1435 int mask; /* setting mask (see below) */
1436 short int cursor_size; /* size of cursor (percentage filled) */
1437 short int cursor_visible;/* cursor visibility flag */
1438 short int cursor_x; /* position of cursor (x, y) */
1439 short int cursor_y;
1440 short int width; /* width of the screen buffer */
1441 short int height; /* height of the screen buffer */
1442 short int attr; /* default attribute */
1443 short int win_left; /* window actually displayed by renderer */
1444 short int win_top; /* the rect area is expressed within the */
1445 short int win_right; /* boundaries of the screen buffer */
1446 short int win_bottom;
1447 short int max_width; /* maximum size (width x height) for the window */
1448 short int max_height;
1449 @END
1450 #define SET_CONSOLE_OUTPUT_INFO_CURSOR_GEOM 0x01
1451 #define SET_CONSOLE_OUTPUT_INFO_CURSOR_POS 0x02
1452 #define SET_CONSOLE_OUTPUT_INFO_SIZE 0x04
1453 #define SET_CONSOLE_OUTPUT_INFO_ATTR 0x08
1454 #define SET_CONSOLE_OUTPUT_INFO_DISPLAY_WINDOW 0x10
1455 #define SET_CONSOLE_OUTPUT_INFO_MAX_SIZE 0x20
1458 /* Get info about a console (output only) */
1459 @REQ(get_console_output_info)
1460 obj_handle_t handle; /* handle to the console */
1461 @REPLY
1462 short int cursor_size; /* size of cursor (percentage filled) */
1463 short int cursor_visible;/* cursor visibility flag */
1464 short int cursor_x; /* position of cursor (x, y) */
1465 short int cursor_y;
1466 short int width; /* width of the screen buffer */
1467 short int height; /* height of the screen buffer */
1468 short int attr; /* default attribute */
1469 short int win_left; /* window actually displayed by renderer */
1470 short int win_top; /* the rect area is expressed within the */
1471 short int win_right; /* boundaries of the screen buffer */
1472 short int win_bottom;
1473 short int max_width; /* maximum size (width x height) for the window */
1474 short int max_height;
1475 @END
1477 /* Add input records to a console input queue */
1478 @REQ(write_console_input)
1479 obj_handle_t handle; /* handle to the console input */
1480 VARARG(rec,input_records); /* input records */
1481 @REPLY
1482 int written; /* number of records written */
1483 @END
1486 /* Fetch input records from a console input queue */
1487 @REQ(read_console_input)
1488 obj_handle_t handle; /* handle to the console input */
1489 int flush; /* flush the retrieved records from the queue? */
1490 @REPLY
1491 int read; /* number of records read */
1492 VARARG(rec,input_records); /* input records */
1493 @END
1496 /* write data (chars and/or attributes) in a screen buffer */
1497 @REQ(write_console_output)
1498 obj_handle_t handle; /* handle to the console output */
1499 int x; /* position where to start writing */
1500 int y;
1501 int mode; /* char info (see below) */
1502 int wrap; /* wrap around at end of line? */
1503 VARARG(data,bytes); /* info to write */
1504 @REPLY
1505 int written; /* number of char infos actually written */
1506 int width; /* width of screen buffer */
1507 int height; /* height of screen buffer */
1508 @END
1509 enum char_info_mode
1511 CHAR_INFO_MODE_TEXT, /* characters only */
1512 CHAR_INFO_MODE_ATTR, /* attributes only */
1513 CHAR_INFO_MODE_TEXTATTR, /* both characters and attributes */
1514 CHAR_INFO_MODE_TEXTSTDATTR /* characters but use standard attributes */
1518 /* fill a screen buffer with constant data (chars and/or attributes) */
1519 @REQ(fill_console_output)
1520 obj_handle_t handle; /* handle to the console output */
1521 int x; /* position where to start writing */
1522 int y;
1523 int mode; /* char info mode */
1524 int count; /* number to write */
1525 int wrap; /* wrap around at end of line? */
1526 char_info_t data; /* data to write */
1527 @REPLY
1528 int written; /* number of char infos actually written */
1529 @END
1532 /* read data (chars and/or attributes) from a screen buffer */
1533 @REQ(read_console_output)
1534 obj_handle_t handle; /* handle to the console output */
1535 int x; /* position (x,y) where to start reading */
1536 int y;
1537 int mode; /* char info mode */
1538 int wrap; /* wrap around at end of line? */
1539 @REPLY
1540 int width; /* width of screen buffer */
1541 int height; /* height of screen buffer */
1542 VARARG(data,bytes);
1543 @END
1546 /* move a rect (of data) in screen buffer content */
1547 @REQ(move_console_output)
1548 obj_handle_t handle; /* handle to the console output */
1549 short int x_src; /* position (x, y) of rect to start moving from */
1550 short int y_src;
1551 short int x_dst; /* position (x, y) of rect to move to */
1552 short int y_dst;
1553 short int w; /* size of the rect (width, height) to move */
1554 short int h;
1555 @END
1558 /* Sends a signal to a process group */
1559 @REQ(send_console_signal)
1560 int signal; /* the signal to send */
1561 process_id_t group_id; /* the group to send the signal to */
1562 @END
1565 /* enable directory change notifications */
1566 @REQ(read_directory_changes)
1567 unsigned int filter; /* notification filter */
1568 int subtree; /* watch the subtree? */
1569 int want_data; /* flag indicating whether change data should be collected */
1570 async_data_t async; /* async I/O parameters */
1571 @END
1574 @REQ(read_change)
1575 obj_handle_t handle;
1576 @REPLY
1577 VARARG(events,filesystem_event); /* collected filesystem events */
1578 @END
1581 /* Create a file mapping */
1582 @REQ(create_mapping)
1583 unsigned int access; /* wanted access rights */
1584 unsigned int attributes; /* object attributes */
1585 unsigned int protect; /* protection flags (see below) */
1586 mem_size_t size; /* mapping size */
1587 obj_handle_t file_handle; /* file handle */
1588 VARARG(objattr,object_attributes); /* object attributes */
1589 @REPLY
1590 obj_handle_t handle; /* handle to the mapping */
1591 @END
1592 /* per-page protection flags */
1593 #define VPROT_READ 0x01
1594 #define VPROT_WRITE 0x02
1595 #define VPROT_EXEC 0x04
1596 #define VPROT_WRITECOPY 0x08
1597 #define VPROT_GUARD 0x10
1598 #define VPROT_NOCACHE 0x20
1599 #define VPROT_COMMITTED 0x40
1600 #define VPROT_WRITEWATCH 0x80
1601 /* per-mapping protection flags */
1602 #define VPROT_IMAGE 0x0100 /* mapping for an exe image */
1603 #define VPROT_SYSTEM 0x0200 /* system view (underlying mmap not under our control) */
1604 #define VPROT_VALLOC 0x0400 /* allocated by VirtualAlloc */
1605 #define VPROT_NOEXEC 0x0800 /* don't force exec permission */
1608 /* Open a mapping */
1609 @REQ(open_mapping)
1610 unsigned int access; /* wanted access rights */
1611 unsigned int attributes; /* object attributes */
1612 obj_handle_t rootdir; /* root directory */
1613 VARARG(name,unicode_str); /* object name */
1614 @REPLY
1615 obj_handle_t handle; /* handle to the mapping */
1616 @END
1619 /* Get information about a file mapping */
1620 @REQ(get_mapping_info)
1621 obj_handle_t handle; /* handle to the mapping */
1622 unsigned int access; /* wanted access rights */
1623 @REPLY
1624 mem_size_t size; /* mapping size */
1625 int protect; /* protection flags */
1626 int header_size; /* header size (for VPROT_IMAGE mapping) */
1627 client_ptr_t base; /* default base addr (for VPROT_IMAGE mapping) */
1628 obj_handle_t mapping; /* duplicate mapping handle unless removable */
1629 obj_handle_t shared_file; /* shared mapping file handle */
1630 @END
1633 /* Get a range of committed pages in a file mapping */
1634 @REQ(get_mapping_committed_range)
1635 obj_handle_t handle; /* handle to the mapping */
1636 file_pos_t offset; /* starting offset (page-aligned, in bytes) */
1637 @REPLY
1638 mem_size_t size; /* size of range starting at offset (page-aligned, in bytes) */
1639 int committed; /* whether it is a committed range */
1640 @END
1643 /* Add a range to the committed pages in a file mapping */
1644 @REQ(add_mapping_committed_range)
1645 obj_handle_t handle; /* handle to the mapping */
1646 file_pos_t offset; /* starting offset (page-aligned, in bytes) */
1647 mem_size_t size; /* size to set (page-aligned, in bytes) or 0 if only retrieving */
1648 @END
1651 #define SNAP_PROCESS 0x00000001
1652 #define SNAP_THREAD 0x00000002
1653 /* Create a snapshot */
1654 @REQ(create_snapshot)
1655 unsigned int attributes; /* object attributes */
1656 unsigned int flags; /* snapshot flags (SNAP_*) */
1657 @REPLY
1658 obj_handle_t handle; /* handle to the snapshot */
1659 @END
1662 /* Get the next process from a snapshot */
1663 @REQ(next_process)
1664 obj_handle_t handle; /* handle to the snapshot */
1665 int reset; /* reset snapshot position? */
1666 @REPLY
1667 int count; /* process usage count */
1668 process_id_t pid; /* process id */
1669 process_id_t ppid; /* parent process id */
1670 int threads; /* number of threads */
1671 int priority; /* process priority */
1672 int handles; /* number of handles */
1673 int unix_pid; /* Unix pid */
1674 VARARG(filename,unicode_str); /* file name of main exe */
1675 @END
1678 /* Get the next thread from a snapshot */
1679 @REQ(next_thread)
1680 obj_handle_t handle; /* handle to the snapshot */
1681 int reset; /* reset snapshot position? */
1682 @REPLY
1683 int count; /* thread usage count */
1684 process_id_t pid; /* process id */
1685 thread_id_t tid; /* thread id */
1686 int base_pri; /* base priority */
1687 int delta_pri; /* delta priority */
1688 @END
1691 /* Wait for a debug event */
1692 @REQ(wait_debug_event)
1693 int get_handle; /* should we alloc a handle for waiting? */
1694 @REPLY
1695 process_id_t pid; /* process id */
1696 thread_id_t tid; /* thread id */
1697 obj_handle_t wait; /* wait handle if no event ready */
1698 VARARG(event,debug_event); /* debug event data */
1699 @END
1702 /* Queue an exception event */
1703 @REQ(queue_exception_event)
1704 int first; /* first chance exception? */
1705 unsigned int code; /* exception code */
1706 unsigned int flags; /* exception flags */
1707 client_ptr_t record; /* exception record */
1708 client_ptr_t address; /* exception address */
1709 data_size_t len; /* size of parameters */
1710 VARARG(params,uints64,len);/* exception parameters */
1711 VARARG(context,context); /* thread context */
1712 @REPLY
1713 obj_handle_t handle; /* handle to the queued event */
1714 @END
1717 /* Retrieve the status of an exception event */
1718 @REQ(get_exception_status)
1719 obj_handle_t handle; /* handle to the queued event */
1720 @REPLY
1721 VARARG(context,context); /* modified thread context */
1722 @END
1725 /* Send an output string to the debugger */
1726 @REQ(output_debug_string)
1727 data_size_t length; /* string length */
1728 client_ptr_t string; /* string to display (in debugged process address space) */
1729 @END
1732 /* Continue a debug event */
1733 @REQ(continue_debug_event)
1734 process_id_t pid; /* process id to continue */
1735 thread_id_t tid; /* thread id to continue */
1736 int status; /* continuation status */
1737 @END
1740 /* Start/stop debugging an existing process */
1741 @REQ(debug_process)
1742 process_id_t pid; /* id of the process to debug */
1743 int attach; /* 1=attaching / 0=detaching from the process */
1744 @END
1747 /* Simulate a breakpoint in a process */
1748 @REQ(debug_break)
1749 obj_handle_t handle; /* process handle */
1750 @REPLY
1751 int self; /* was it the caller itself? */
1752 @END
1755 /* Set debugger kill on exit flag */
1756 @REQ(set_debugger_kill_on_exit)
1757 int kill_on_exit; /* 0=detach/1=kill debuggee when debugger dies */
1758 @END
1761 /* Read data from a process address space */
1762 @REQ(read_process_memory)
1763 obj_handle_t handle; /* process handle */
1764 client_ptr_t addr; /* addr to read from */
1765 @REPLY
1766 VARARG(data,bytes); /* result data */
1767 @END
1770 /* Write data to a process address space */
1771 @REQ(write_process_memory)
1772 obj_handle_t handle; /* process handle */
1773 client_ptr_t addr; /* addr to write to */
1774 VARARG(data,bytes); /* data to write */
1775 @END
1778 /* Create a registry key */
1779 @REQ(create_key)
1780 obj_handle_t parent; /* handle to the parent key */
1781 unsigned int access; /* desired access rights */
1782 unsigned int attributes; /* object attributes */
1783 unsigned int options; /* creation options */
1784 data_size_t namelen; /* length of key name in bytes */
1785 VARARG(name,unicode_str,namelen); /* key name */
1786 VARARG(class,unicode_str); /* class name */
1787 @REPLY
1788 obj_handle_t hkey; /* handle to the created key */
1789 int created; /* has it been newly created? */
1790 @END
1792 /* Open a registry key */
1793 @REQ(open_key)
1794 obj_handle_t parent; /* handle to the parent key */
1795 unsigned int access; /* desired access rights */
1796 unsigned int attributes; /* object attributes */
1797 VARARG(name,unicode_str); /* key name */
1798 @REPLY
1799 obj_handle_t hkey; /* handle to the open key */
1800 @END
1803 /* Delete a registry key */
1804 @REQ(delete_key)
1805 obj_handle_t hkey; /* handle to the key */
1806 @END
1809 /* Flush a registry key */
1810 @REQ(flush_key)
1811 obj_handle_t hkey; /* handle to the key */
1812 @END
1815 /* Enumerate registry subkeys */
1816 @REQ(enum_key)
1817 obj_handle_t hkey; /* handle to registry key */
1818 int index; /* index of subkey (or -1 for current key) */
1819 int info_class; /* requested information class */
1820 @REPLY
1821 int subkeys; /* number of subkeys */
1822 int max_subkey; /* longest subkey name */
1823 int max_class; /* longest class name */
1824 int values; /* number of values */
1825 int max_value; /* longest value name */
1826 int max_data; /* longest value data */
1827 timeout_t modif; /* last modification time */
1828 data_size_t total; /* total length needed for full name and class */
1829 data_size_t namelen; /* length of key name in bytes */
1830 VARARG(name,unicode_str,namelen); /* key name */
1831 VARARG(class,unicode_str); /* class name */
1832 @END
1835 /* Set a value of a registry key */
1836 @REQ(set_key_value)
1837 obj_handle_t hkey; /* handle to registry key */
1838 int type; /* value type */
1839 data_size_t namelen; /* length of value name in bytes */
1840 VARARG(name,unicode_str,namelen); /* value name */
1841 VARARG(data,bytes); /* value data */
1842 @END
1845 /* Retrieve the value of a registry key */
1846 @REQ(get_key_value)
1847 obj_handle_t hkey; /* handle to registry key */
1848 VARARG(name,unicode_str); /* value name */
1849 @REPLY
1850 int type; /* value type */
1851 data_size_t total; /* total length needed for data */
1852 VARARG(data,bytes); /* value data */
1853 @END
1856 /* Enumerate a value of a registry key */
1857 @REQ(enum_key_value)
1858 obj_handle_t hkey; /* handle to registry key */
1859 int index; /* value index */
1860 int info_class; /* requested information class */
1861 @REPLY
1862 int type; /* value type */
1863 data_size_t total; /* total length needed for full name and data */
1864 data_size_t namelen; /* length of value name in bytes */
1865 VARARG(name,unicode_str,namelen); /* value name */
1866 VARARG(data,bytes); /* value data */
1867 @END
1870 /* Delete a value of a registry key */
1871 @REQ(delete_key_value)
1872 obj_handle_t hkey; /* handle to registry key */
1873 VARARG(name,unicode_str); /* value name */
1874 @END
1877 /* Load a registry branch from a file */
1878 @REQ(load_registry)
1879 obj_handle_t hkey; /* root key to load to */
1880 obj_handle_t file; /* file to load from */
1881 VARARG(name,unicode_str); /* subkey name */
1882 @END
1885 /* UnLoad a registry branch from a file */
1886 @REQ(unload_registry)
1887 obj_handle_t hkey; /* root key to unload to */
1888 @END
1891 /* Save a registry branch to a file */
1892 @REQ(save_registry)
1893 obj_handle_t hkey; /* key to save */
1894 obj_handle_t file; /* file to save to */
1895 @END
1898 /* Add a registry key change notification */
1899 @REQ(set_registry_notification)
1900 obj_handle_t hkey; /* key to watch for changes */
1901 obj_handle_t event; /* event to set */
1902 int subtree; /* should we watch the whole subtree? */
1903 unsigned int filter; /* things to watch */
1904 @END
1907 /* Create a waitable timer */
1908 @REQ(create_timer)
1909 unsigned int access; /* wanted access rights */
1910 unsigned int attributes; /* object attributes */
1911 obj_handle_t rootdir; /* root directory */
1912 int manual; /* manual reset */
1913 VARARG(name,unicode_str); /* object name */
1914 @REPLY
1915 obj_handle_t handle; /* handle to the timer */
1916 @END
1919 /* Open a waitable timer */
1920 @REQ(open_timer)
1921 unsigned int access; /* wanted access rights */
1922 unsigned int attributes; /* object attributes */
1923 obj_handle_t rootdir; /* root directory */
1924 VARARG(name,unicode_str); /* object name */
1925 @REPLY
1926 obj_handle_t handle; /* handle to the timer */
1927 @END
1929 /* Set a waitable timer */
1930 @REQ(set_timer)
1931 obj_handle_t handle; /* handle to the timer */
1932 timeout_t expire; /* next expiration absolute time */
1933 client_ptr_t callback; /* callback function */
1934 client_ptr_t arg; /* callback argument */
1935 int period; /* timer period in ms */
1936 @REPLY
1937 int signaled; /* was the timer signaled before this call ? */
1938 @END
1940 /* Cancel a waitable timer */
1941 @REQ(cancel_timer)
1942 obj_handle_t handle; /* handle to the timer */
1943 @REPLY
1944 int signaled; /* was the timer signaled before this calltime ? */
1945 @END
1947 /* Get information on a waitable timer */
1948 @REQ(get_timer_info)
1949 obj_handle_t handle; /* handle to the timer */
1950 @REPLY
1951 timeout_t when; /* absolute time when the timer next expires */
1952 int signaled; /* is the timer signaled? */
1953 @END
1956 /* Retrieve the current context of a thread */
1957 @REQ(get_thread_context)
1958 obj_handle_t handle; /* thread handle */
1959 unsigned int flags; /* context flags */
1960 int suspend; /* suspend the thread if needed */
1961 @REPLY
1962 int self; /* was it a handle to the current thread? */
1963 VARARG(context,context); /* thread context */
1964 @END
1967 /* Set the current context of a thread */
1968 @REQ(set_thread_context)
1969 obj_handle_t handle; /* thread handle */
1970 int suspend; /* suspend the thread if needed */
1971 VARARG(context,context); /* thread context */
1972 @REPLY
1973 int self; /* was it a handle to the current thread? */
1974 @END
1977 /* Fetch a selector entry for a thread */
1978 @REQ(get_selector_entry)
1979 obj_handle_t handle; /* thread handle */
1980 int entry; /* LDT entry */
1981 @REPLY
1982 unsigned int base; /* selector base */
1983 unsigned int limit; /* selector limit */
1984 unsigned char flags; /* selector flags */
1985 @END
1988 /* Add an atom */
1989 @REQ(add_atom)
1990 obj_handle_t table; /* which table to add atom to */
1991 VARARG(name,unicode_str); /* atom name */
1992 @REPLY
1993 atom_t atom; /* resulting atom */
1994 @END
1997 /* Delete an atom */
1998 @REQ(delete_atom)
1999 obj_handle_t table; /* which table to delete atom from */
2000 atom_t atom; /* atom handle */
2001 @END
2004 /* Find an atom */
2005 @REQ(find_atom)
2006 obj_handle_t table; /* which table to find atom from */
2007 VARARG(name,unicode_str); /* atom name */
2008 @REPLY
2009 atom_t atom; /* atom handle */
2010 @END
2013 /* Get information about an atom */
2014 @REQ(get_atom_information)
2015 obj_handle_t table; /* which table to find atom from */
2016 atom_t atom; /* atom handle */
2017 @REPLY
2018 int count; /* atom lock count */
2019 int pinned; /* whether the atom has been pinned */
2020 data_size_t total; /* actual length of atom name */
2021 VARARG(name,unicode_str); /* atom name */
2022 @END
2025 /* Set information about an atom */
2026 @REQ(set_atom_information)
2027 obj_handle_t table; /* which table to find atom from */
2028 atom_t atom; /* atom handle */
2029 int pinned; /* whether to bump atom information */
2030 @END
2033 /* Empty an atom table */
2034 @REQ(empty_atom_table)
2035 obj_handle_t table; /* which table to find atom from */
2036 int if_pinned; /* whether to delete pinned atoms */
2037 @END
2040 /* Init an atom table */
2041 @REQ(init_atom_table)
2042 int entries; /* number of entries (only for local) */
2043 @REPLY
2044 obj_handle_t table; /* handle to the atom table */
2045 @END
2048 /* Get the message queue of the current thread */
2049 @REQ(get_msg_queue)
2050 @REPLY
2051 obj_handle_t handle; /* handle to the queue */
2052 @END
2055 /* Set the file descriptor associated to the current thread queue */
2056 @REQ(set_queue_fd)
2057 obj_handle_t handle; /* handle to the file descriptor */
2058 @END
2061 /* Set the current message queue wakeup mask */
2062 @REQ(set_queue_mask)
2063 unsigned int wake_mask; /* wakeup bits mask */
2064 unsigned int changed_mask; /* changed bits mask */
2065 int skip_wait; /* will we skip waiting if signaled? */
2066 @REPLY
2067 unsigned int wake_bits; /* current wake bits */
2068 unsigned int changed_bits; /* current changed bits */
2069 @END
2072 /* Get the current message queue status */
2073 @REQ(get_queue_status)
2074 int clear; /* should we clear the change bits? */
2075 @REPLY
2076 unsigned int wake_bits; /* wake bits */
2077 unsigned int changed_bits; /* changed bits since last time */
2078 @END
2081 /* Retrieve the process idle event */
2082 @REQ(get_process_idle_event)
2083 obj_handle_t handle; /* process handle */
2084 @REPLY
2085 obj_handle_t event; /* handle to idle event */
2086 @END
2089 /* Send a message to a thread queue */
2090 @REQ(send_message)
2091 thread_id_t id; /* thread id */
2092 int type; /* message type (see below) */
2093 int flags; /* message flags (see below) */
2094 user_handle_t win; /* window handle */
2095 unsigned int msg; /* message code */
2096 lparam_t wparam; /* parameters */
2097 lparam_t lparam; /* parameters */
2098 timeout_t timeout; /* timeout for reply */
2099 VARARG(data,message_data); /* message data for sent messages */
2100 @END
2102 @REQ(post_quit_message)
2103 int exit_code; /* exit code to return */
2104 @END
2106 enum message_type
2108 MSG_ASCII, /* Ascii message (from SendMessageA) */
2109 MSG_UNICODE, /* Unicode message (from SendMessageW) */
2110 MSG_NOTIFY, /* notify message (from SendNotifyMessageW), always Unicode */
2111 MSG_CALLBACK, /* callback message (from SendMessageCallbackW), always Unicode */
2112 MSG_CALLBACK_RESULT,/* result of a callback message */
2113 MSG_OTHER_PROCESS, /* sent from other process, may include vararg data, always Unicode */
2114 MSG_POSTED, /* posted message (from PostMessageW), always Unicode */
2115 MSG_HARDWARE, /* hardware message */
2116 MSG_WINEVENT, /* winevent message */
2117 MSG_HOOK_LL /* low-level hardware hook */
2119 #define SEND_MSG_ABORT_IF_HUNG 0x01
2122 /* Send a hardware message to a thread queue */
2123 @REQ(send_hardware_message)
2124 user_handle_t win; /* window handle */
2125 hw_input_t input; /* input data */
2126 unsigned int flags; /* flags (see below) */
2127 @REPLY
2128 int wait; /* do we need to wait for a reply? */
2129 int prev_x; /* previous cursor position */
2130 int prev_y;
2131 int new_x; /* new cursor position */
2132 int new_y;
2133 VARARG(keystate,bytes); /* global state array for all the keys */
2134 @END
2135 #define SEND_HWMSG_INJECTED 0x01
2138 /* Get a message from the current queue */
2139 @REQ(get_message)
2140 unsigned int flags; /* PM_* flags */
2141 user_handle_t get_win; /* window handle to get */
2142 unsigned int get_first; /* first message code to get */
2143 unsigned int get_last; /* last message code to get */
2144 unsigned int hw_id; /* id of the previous hardware message (or 0) */
2145 unsigned int wake_mask; /* wakeup bits mask */
2146 unsigned int changed_mask; /* changed bits mask */
2147 @REPLY
2148 user_handle_t win; /* window handle */
2149 unsigned int msg; /* message code */
2150 lparam_t wparam; /* parameters */
2151 lparam_t lparam; /* parameters */
2152 int type; /* message type */
2153 unsigned int time; /* message time */
2154 unsigned int active_hooks; /* active hooks bitmap */
2155 data_size_t total; /* total size of extra data */
2156 VARARG(data,message_data); /* message data for sent messages */
2157 @END
2160 /* Reply to a sent message */
2161 @REQ(reply_message)
2162 int remove; /* should we remove the message? */
2163 lparam_t result; /* message result */
2164 VARARG(data,bytes); /* message data for sent messages */
2165 @END
2168 /* Accept the current hardware message */
2169 @REQ(accept_hardware_message)
2170 unsigned int hw_id; /* id of the hardware message */
2171 int remove; /* should we remove the message? */
2172 user_handle_t new_win; /* new destination window for current message */
2173 @END
2176 /* Retrieve the reply for the last message sent */
2177 @REQ(get_message_reply)
2178 int cancel; /* cancel message if not ready? */
2179 @REPLY
2180 lparam_t result; /* message result */
2181 VARARG(data,bytes); /* message data for sent messages */
2182 @END
2185 /* Set a window timer */
2186 @REQ(set_win_timer)
2187 user_handle_t win; /* window handle */
2188 unsigned int msg; /* message to post */
2189 unsigned int rate; /* timer rate in ms */
2190 lparam_t id; /* timer id */
2191 lparam_t lparam; /* message lparam (callback proc) */
2192 @REPLY
2193 lparam_t id; /* timer id */
2194 @END
2197 /* Kill a window timer */
2198 @REQ(kill_win_timer)
2199 user_handle_t win; /* window handle */
2200 lparam_t id; /* timer id */
2201 unsigned int msg; /* message to post */
2202 @END
2205 /* check if the thread owning the window is hung */
2206 @REQ(is_window_hung)
2207 user_handle_t win; /* window handle */
2208 @REPLY
2209 int is_hung;
2210 @END
2213 /* Retrieve info about a serial port */
2214 @REQ(get_serial_info)
2215 obj_handle_t handle; /* handle to comm port */
2216 int flags;
2217 @REPLY
2218 unsigned int readinterval;
2219 unsigned int readconst;
2220 unsigned int readmult;
2221 unsigned int writeconst;
2222 unsigned int writemult;
2223 unsigned int eventmask;
2224 unsigned int cookie;
2225 unsigned int pending_write;
2226 @END
2229 /* Set info about a serial port */
2230 @REQ(set_serial_info)
2231 obj_handle_t handle; /* handle to comm port */
2232 int flags; /* bitmask to set values (see below) */
2233 unsigned int readinterval;
2234 unsigned int readconst;
2235 unsigned int readmult;
2236 unsigned int writeconst;
2237 unsigned int writemult;
2238 unsigned int eventmask;
2239 @END
2240 #define SERIALINFO_SET_TIMEOUTS 0x01
2241 #define SERIALINFO_SET_MASK 0x02
2242 #define SERIALINFO_PENDING_WRITE 0x04
2243 #define SERIALINFO_PENDING_WAIT 0x08
2246 /* Create an async I/O */
2247 @REQ(register_async)
2248 int type; /* type of queue to look after */
2249 async_data_t async; /* async I/O parameters */
2250 int count; /* count - usually # of bytes to be read/written */
2251 @END
2252 #define ASYNC_TYPE_READ 0x01
2253 #define ASYNC_TYPE_WRITE 0x02
2254 #define ASYNC_TYPE_WAIT 0x03
2257 /* Cancel all async op on a fd */
2258 @REQ(cancel_async)
2259 obj_handle_t handle; /* handle to comm port, socket or file */
2260 client_ptr_t iosb; /* I/O status block (NULL=all) */
2261 int only_thread; /* cancel matching this thread */
2262 @END
2265 /* Perform an ioctl on a file */
2266 @REQ(ioctl)
2267 ioctl_code_t code; /* ioctl code */
2268 async_data_t async; /* async I/O parameters */
2269 int blocking; /* whether it's a blocking ioctl */
2270 VARARG(in_data,bytes); /* ioctl input data */
2271 @REPLY
2272 obj_handle_t wait; /* handle to wait on for blocking ioctl */
2273 unsigned int options; /* device open options */
2274 VARARG(out_data,bytes); /* ioctl output data */
2275 @END
2278 /* Retrieve results of an async ioctl */
2279 @REQ(get_ioctl_result)
2280 obj_handle_t handle; /* handle to the device */
2281 client_ptr_t user_arg; /* user arg used to identify the request */
2282 @REPLY
2283 VARARG(out_data,bytes); /* ioctl output data */
2284 @END
2287 /* Create a named pipe */
2288 @REQ(create_named_pipe)
2289 unsigned int access;
2290 unsigned int attributes; /* object attributes */
2291 obj_handle_t rootdir; /* root directory */
2292 unsigned int options;
2293 unsigned int sharing;
2294 unsigned int maxinstances;
2295 unsigned int outsize;
2296 unsigned int insize;
2297 timeout_t timeout;
2298 unsigned int flags;
2299 VARARG(name,unicode_str); /* pipe name */
2300 @REPLY
2301 obj_handle_t handle; /* handle to the pipe */
2302 @END
2304 /* flags in create_named_pipe and get_named_pipe_info */
2305 #define NAMED_PIPE_MESSAGE_STREAM_WRITE 0x0001
2306 #define NAMED_PIPE_MESSAGE_STREAM_READ 0x0002
2307 #define NAMED_PIPE_NONBLOCKING_MODE 0x0004
2308 #define NAMED_PIPE_SERVER_END 0x8000
2311 @REQ(get_named_pipe_info)
2312 obj_handle_t handle;
2313 @REPLY
2314 unsigned int flags;
2315 unsigned int sharing;
2316 unsigned int maxinstances;
2317 unsigned int instances;
2318 unsigned int outsize;
2319 unsigned int insize;
2320 @END
2323 /* Create a window */
2324 @REQ(create_window)
2325 user_handle_t parent; /* parent window */
2326 user_handle_t owner; /* owner window */
2327 atom_t atom; /* class atom */
2328 mod_handle_t instance; /* module instance */
2329 VARARG(class,unicode_str); /* class name */
2330 @REPLY
2331 user_handle_t handle; /* created window */
2332 user_handle_t parent; /* full handle of parent */
2333 user_handle_t owner; /* full handle of owner */
2334 int extra; /* number of extra bytes */
2335 client_ptr_t class_ptr; /* pointer to class in client address space */
2336 @END
2339 /* Destroy a window */
2340 @REQ(destroy_window)
2341 user_handle_t handle; /* handle to the window */
2342 @END
2345 /* Retrieve the desktop window for the current thread */
2346 @REQ(get_desktop_window)
2347 int force; /* force creation if it doesn't exist */
2348 @REPLY
2349 user_handle_t top_window; /* handle to the desktop window */
2350 user_handle_t msg_window; /* handle to the top-level HWND_MESSAGE parent */
2351 @END
2354 /* Set a window owner */
2355 @REQ(set_window_owner)
2356 user_handle_t handle; /* handle to the window */
2357 user_handle_t owner; /* new owner */
2358 @REPLY
2359 user_handle_t full_owner; /* full handle of new owner */
2360 user_handle_t prev_owner; /* full handle of previous owner */
2361 @END
2364 /* Get information from a window handle */
2365 @REQ(get_window_info)
2366 user_handle_t handle; /* handle to the window */
2367 @REPLY
2368 user_handle_t full_handle; /* full 32-bit handle */
2369 user_handle_t last_active; /* last active popup */
2370 process_id_t pid; /* process owning the window */
2371 thread_id_t tid; /* thread owning the window */
2372 atom_t atom; /* class atom */
2373 int is_unicode; /* ANSI or unicode */
2374 @END
2377 /* Set some information in a window */
2378 @REQ(set_window_info)
2379 unsigned short flags; /* flags for fields to set (see below) */
2380 short int is_unicode; /* ANSI or unicode */
2381 user_handle_t handle; /* handle to the window */
2382 unsigned int style; /* window style */
2383 unsigned int ex_style; /* window extended style */
2384 unsigned int id; /* window id */
2385 mod_handle_t instance; /* creator instance */
2386 lparam_t user_data; /* user-specific data */
2387 int extra_offset; /* offset to set in extra bytes */
2388 data_size_t extra_size; /* size to set in extra bytes */
2389 lparam_t extra_value; /* value to set in extra bytes */
2390 @REPLY
2391 unsigned int old_style; /* old window style */
2392 unsigned int old_ex_style; /* old window extended style */
2393 mod_handle_t old_instance; /* old creator instance */
2394 lparam_t old_user_data; /* old user-specific data */
2395 lparam_t old_extra_value; /* old value in extra bytes */
2396 unsigned int old_id; /* old window id */
2397 @END
2398 #define SET_WIN_STYLE 0x01
2399 #define SET_WIN_EXSTYLE 0x02
2400 #define SET_WIN_ID 0x04
2401 #define SET_WIN_INSTANCE 0x08
2402 #define SET_WIN_USERDATA 0x10
2403 #define SET_WIN_EXTRA 0x20
2404 #define SET_WIN_UNICODE 0x40
2407 /* Set the parent of a window */
2408 @REQ(set_parent)
2409 user_handle_t handle; /* handle to the window */
2410 user_handle_t parent; /* handle to the parent */
2411 @REPLY
2412 user_handle_t old_parent; /* old parent window */
2413 user_handle_t full_parent; /* full handle of new parent */
2414 @END
2417 /* Get a list of the window parents, up to the root of the tree */
2418 @REQ(get_window_parents)
2419 user_handle_t handle; /* handle to the window */
2420 @REPLY
2421 int count; /* total count of parents */
2422 VARARG(parents,user_handles); /* parent handles */
2423 @END
2426 /* Get a list of the window children */
2427 @REQ(get_window_children)
2428 obj_handle_t desktop; /* handle to desktop */
2429 user_handle_t parent; /* parent window */
2430 atom_t atom; /* class atom for the listed children */
2431 thread_id_t tid; /* thread owning the listed children */
2432 VARARG(class,unicode_str); /* class name */
2433 @REPLY
2434 int count; /* total count of children */
2435 VARARG(children,user_handles); /* children handles */
2436 @END
2439 /* Get a list of the window children that contain a given point */
2440 @REQ(get_window_children_from_point)
2441 user_handle_t parent; /* parent window */
2442 int x; /* point in parent coordinates */
2443 int y;
2444 @REPLY
2445 int count; /* total count of children */
2446 VARARG(children,user_handles); /* children handles */
2447 @END
2450 /* Get window tree information from a window handle */
2451 @REQ(get_window_tree)
2452 user_handle_t handle; /* handle to the window */
2453 @REPLY
2454 user_handle_t parent; /* parent window */
2455 user_handle_t owner; /* owner window */
2456 user_handle_t next_sibling; /* next sibling in Z-order */
2457 user_handle_t prev_sibling; /* prev sibling in Z-order */
2458 user_handle_t first_sibling; /* first sibling in Z-order */
2459 user_handle_t last_sibling; /* last sibling in Z-order */
2460 user_handle_t first_child; /* first child */
2461 user_handle_t last_child; /* last child */
2462 @END
2464 /* Set the position and Z order of a window */
2465 @REQ(set_window_pos)
2466 unsigned short swp_flags; /* SWP_* flags */
2467 unsigned short paint_flags; /* paint flags (see below) */
2468 user_handle_t handle; /* handle to the window */
2469 user_handle_t previous; /* previous window in Z order */
2470 rectangle_t window; /* window rectangle (in parent coords) */
2471 rectangle_t client; /* client rectangle (in parent coords) */
2472 VARARG(valid,rectangles); /* valid rectangles from WM_NCCALCSIZE (in parent coords) */
2473 @REPLY
2474 unsigned int new_style; /* new window style */
2475 unsigned int new_ex_style; /* new window extended style */
2476 user_handle_t surface_win; /* window that needs a surface update */
2477 @END
2478 #define SET_WINPOS_PAINT_SURFACE 0x01 /* window has a paintable surface */
2479 #define SET_WINPOS_PIXEL_FORMAT 0x02 /* window has a custom pixel format */
2481 /* Get the window and client rectangles of a window */
2482 @REQ(get_window_rectangles)
2483 user_handle_t handle; /* handle to the window */
2484 int relative; /* coords relative to (see below) */
2485 @REPLY
2486 rectangle_t window; /* window rectangle */
2487 rectangle_t visible; /* visible part of the window rectangle */
2488 rectangle_t client; /* client rectangle */
2489 @END
2490 enum coords_relative
2492 COORDS_CLIENT, /* relative to client area */
2493 COORDS_WINDOW, /* relative to whole window area */
2494 COORDS_PARENT, /* relative to parent's client area */
2495 COORDS_SCREEN /* relative to screen origin */
2499 /* Get the window text */
2500 @REQ(get_window_text)
2501 user_handle_t handle; /* handle to the window */
2502 @REPLY
2503 VARARG(text,unicode_str); /* window text */
2504 @END
2507 /* Set the window text */
2508 @REQ(set_window_text)
2509 user_handle_t handle; /* handle to the window */
2510 VARARG(text,unicode_str); /* window text */
2511 @END
2514 /* Get the coordinates offset between two windows */
2515 @REQ(get_windows_offset)
2516 user_handle_t from; /* handle to the first window */
2517 user_handle_t to; /* handle to the second window */
2518 @REPLY
2519 int x; /* x coordinate offset */
2520 int y; /* y coordinate offset */
2521 int mirror; /* whether to mirror the x coordinate */
2522 @END
2525 /* Get the visible region of a window */
2526 @REQ(get_visible_region)
2527 user_handle_t window; /* handle to the window */
2528 unsigned int flags; /* DCX flags */
2529 @REPLY
2530 user_handle_t top_win; /* top window to clip against */
2531 rectangle_t top_rect; /* top window visible rect with screen coords */
2532 rectangle_t win_rect; /* window rect in screen coords */
2533 unsigned int paint_flags; /* paint flags (from SET_WINPOS_* flags) */
2534 data_size_t total_size; /* total size of the resulting region */
2535 VARARG(region,rectangles); /* list of rectangles for the region (in screen coords) */
2536 @END
2539 /* Get the visible surface region of a window */
2540 @REQ(get_surface_region)
2541 user_handle_t window; /* handle to the window */
2542 @REPLY
2543 rectangle_t visible_rect; /* window visible rect in screen coords */
2544 data_size_t total_size; /* total size of the resulting region */
2545 VARARG(region,rectangles); /* list of rectangles for the region (in screen coords) */
2546 @END
2549 /* Get the window region */
2550 @REQ(get_window_region)
2551 user_handle_t window; /* handle to the window */
2552 @REPLY
2553 data_size_t total_size; /* total size of the resulting region */
2554 VARARG(region,rectangles); /* list of rectangles for the region (in window coords) */
2555 @END
2558 /* Set the window region */
2559 @REQ(set_window_region)
2560 user_handle_t window; /* handle to the window */
2561 int redraw; /* redraw the window? */
2562 VARARG(region,rectangles); /* list of rectangles for the region (in window coords) */
2563 @END
2566 /* Get the window update region */
2567 @REQ(get_update_region)
2568 user_handle_t window; /* handle to the window */
2569 user_handle_t from_child; /* child to start searching from */
2570 unsigned int flags; /* update flags (see below) */
2571 @REPLY
2572 user_handle_t child; /* child to repaint (or window itself) */
2573 unsigned int flags; /* resulting update flags (see below) */
2574 data_size_t total_size; /* total size of the resulting region */
2575 VARARG(region,rectangles); /* list of rectangles for the region (in screen coords) */
2576 @END
2577 #define UPDATE_NONCLIENT 0x01 /* get region for repainting non-client area */
2578 #define UPDATE_ERASE 0x02 /* get region for erasing client area */
2579 #define UPDATE_PAINT 0x04 /* get region for painting client area */
2580 #define UPDATE_INTERNALPAINT 0x08 /* get region if internal paint is pending */
2581 #define UPDATE_ALLCHILDREN 0x10 /* force repaint of all children */
2582 #define UPDATE_NOCHILDREN 0x20 /* don't try to repaint any children */
2583 #define UPDATE_NOREGION 0x40 /* don't return a region, only the flags */
2584 #define UPDATE_DELAYED_ERASE 0x80 /* still needs erase after BeginPaint */
2587 /* Update the z order of a window so that a given rectangle is fully visible */
2588 @REQ(update_window_zorder)
2589 user_handle_t window; /* handle to the window */
2590 rectangle_t rect; /* rectangle that must be visible (in client coords) */
2591 @END
2594 /* Mark parts of a window as needing a redraw */
2595 @REQ(redraw_window)
2596 user_handle_t window; /* handle to the window */
2597 unsigned int flags; /* RDW_* flags */
2598 VARARG(region,rectangles); /* list of rectangles for the region (in window coords) */
2599 @END
2602 /* Set a window property */
2603 @REQ(set_window_property)
2604 user_handle_t window; /* handle to the window */
2605 lparam_t data; /* data to store */
2606 atom_t atom; /* property atom (if no name specified) */
2607 VARARG(name,unicode_str); /* property name */
2608 @END
2611 /* Remove a window property */
2612 @REQ(remove_window_property)
2613 user_handle_t window; /* handle to the window */
2614 atom_t atom; /* property atom (if no name specified) */
2615 VARARG(name,unicode_str); /* property name */
2616 @REPLY
2617 lparam_t data; /* data stored in property */
2618 @END
2621 /* Get a window property */
2622 @REQ(get_window_property)
2623 user_handle_t window; /* handle to the window */
2624 atom_t atom; /* property atom (if no name specified) */
2625 VARARG(name,unicode_str); /* property name */
2626 @REPLY
2627 lparam_t data; /* data stored in property */
2628 @END
2631 /* Get the list of properties of a window */
2632 @REQ(get_window_properties)
2633 user_handle_t window; /* handle to the window */
2634 @REPLY
2635 int total; /* total number of properties */
2636 VARARG(props,properties); /* list of properties */
2637 @END
2640 /* Create a window station */
2641 @REQ(create_winstation)
2642 unsigned int flags; /* window station flags */
2643 unsigned int access; /* wanted access rights */
2644 unsigned int attributes; /* object attributes */
2645 VARARG(name,unicode_str); /* object name */
2646 @REPLY
2647 obj_handle_t handle; /* handle to the window station */
2648 @END
2651 /* Open a handle to a window station */
2652 @REQ(open_winstation)
2653 unsigned int access; /* wanted access rights */
2654 unsigned int attributes; /* object attributes */
2655 VARARG(name,unicode_str); /* object name */
2656 @REPLY
2657 obj_handle_t handle; /* handle to the window station */
2658 @END
2661 /* Close a window station */
2662 @REQ(close_winstation)
2663 obj_handle_t handle; /* handle to the window station */
2664 @END
2667 /* Get the process current window station */
2668 @REQ(get_process_winstation)
2669 @REPLY
2670 obj_handle_t handle; /* handle to the window station */
2671 @END
2674 /* Set the process current window station */
2675 @REQ(set_process_winstation)
2676 obj_handle_t handle; /* handle to the window station */
2677 @END
2680 /* Enumerate window stations */
2681 @REQ(enum_winstation)
2682 unsigned int index; /* current index */
2683 @REPLY
2684 unsigned int next; /* next index */
2685 VARARG(name,unicode_str); /* window station name */
2686 @END
2689 /* Create a desktop */
2690 @REQ(create_desktop)
2691 unsigned int flags; /* desktop flags */
2692 unsigned int access; /* wanted access rights */
2693 unsigned int attributes; /* object attributes */
2694 VARARG(name,unicode_str); /* object name */
2695 @REPLY
2696 obj_handle_t handle; /* handle to the desktop */
2697 @END
2700 /* Open a handle to a desktop */
2701 @REQ(open_desktop)
2702 obj_handle_t winsta; /* window station to open (null allowed) */
2703 unsigned int flags; /* desktop flags */
2704 unsigned int access; /* wanted access rights */
2705 unsigned int attributes; /* object attributes */
2706 VARARG(name,unicode_str); /* object name */
2707 @REPLY
2708 obj_handle_t handle; /* handle to the desktop */
2709 @END
2712 /* Open a handle to current input desktop */
2713 @REQ(open_input_desktop)
2714 unsigned int flags; /* desktop flags */
2715 unsigned int access; /* wanted access rights */
2716 unsigned int attributes; /* object attributes */
2717 @REPLY
2718 obj_handle_t handle; /* handle to the desktop */
2719 @END
2722 /* Close a desktop */
2723 @REQ(close_desktop)
2724 obj_handle_t handle; /* handle to the desktop */
2725 @END
2728 /* Get the thread current desktop */
2729 @REQ(get_thread_desktop)
2730 thread_id_t tid; /* thread id */
2731 @REPLY
2732 obj_handle_t handle; /* handle to the desktop */
2733 @END
2736 /* Set the thread current desktop */
2737 @REQ(set_thread_desktop)
2738 obj_handle_t handle; /* handle to the desktop */
2739 @END
2742 /* Enumerate desktops */
2743 @REQ(enum_desktop)
2744 obj_handle_t winstation; /* handle to the window station */
2745 unsigned int index; /* current index */
2746 @REPLY
2747 unsigned int next; /* next index */
2748 VARARG(name,unicode_str); /* window station name */
2749 @END
2752 /* Get/set information about a user object (window station or desktop) */
2753 @REQ(set_user_object_info)
2754 obj_handle_t handle; /* handle to the object */
2755 unsigned int flags; /* information to set */
2756 unsigned int obj_flags; /* new object flags */
2757 @REPLY
2758 int is_desktop; /* is object a desktop? */
2759 unsigned int old_obj_flags; /* old object flags */
2760 VARARG(name,unicode_str); /* object name */
2761 @END
2762 #define SET_USER_OBJECT_FLAGS 1
2765 /* Register a hotkey */
2766 @REQ(register_hotkey)
2767 user_handle_t window; /* handle to the window */
2768 int id; /* hotkey identifier */
2769 unsigned int flags; /* modifier keys */
2770 unsigned int vkey; /* virtual key code */
2771 @REPLY
2772 int replaced; /* did we replace an existing hotkey? */
2773 unsigned int flags; /* flags of replaced hotkey */
2774 unsigned int vkey; /* virtual key code of replaced hotkey */
2775 @END
2778 /* Unregister a hotkey */
2779 @REQ(unregister_hotkey)
2780 user_handle_t window; /* handle to the window */
2781 int id; /* hotkey identifier */
2782 @REPLY
2783 unsigned int flags; /* flags of removed hotkey */
2784 unsigned int vkey; /* virtual key code of removed hotkey */
2785 @END
2788 /* Attach (or detach) thread inputs */
2789 @REQ(attach_thread_input)
2790 thread_id_t tid_from; /* thread to be attached */
2791 thread_id_t tid_to; /* thread to which tid_from should be attached */
2792 int attach; /* is it an attach? */
2793 @END
2796 /* Get input data for a given thread */
2797 @REQ(get_thread_input)
2798 thread_id_t tid; /* id of thread */
2799 @REPLY
2800 user_handle_t focus; /* handle to the focus window */
2801 user_handle_t capture; /* handle to the capture window */
2802 user_handle_t active; /* handle to the active window */
2803 user_handle_t foreground; /* handle to the global foreground window */
2804 user_handle_t menu_owner; /* handle to the menu owner */
2805 user_handle_t move_size; /* handle to the moving/resizing window */
2806 user_handle_t caret; /* handle to the caret window */
2807 user_handle_t cursor; /* handle to the cursor */
2808 int show_count; /* cursor show count */
2809 rectangle_t rect; /* caret rectangle */
2810 @END
2813 /* Get the time of the last input event */
2814 @REQ(get_last_input_time)
2815 @REPLY
2816 unsigned int time;
2817 @END
2820 /* Retrieve queue keyboard state for a given thread */
2821 @REQ(get_key_state)
2822 thread_id_t tid; /* id of thread */
2823 int key; /* optional key code or -1 */
2824 @REPLY
2825 unsigned char state; /* state of specified key */
2826 VARARG(keystate,bytes); /* state array for all the keys */
2827 @END
2829 /* Set queue keyboard state for a given thread */
2830 @REQ(set_key_state)
2831 thread_id_t tid; /* id of thread */
2832 int async; /* whether to change the async state too */
2833 VARARG(keystate,bytes); /* state array for all the keys */
2834 @END
2836 /* Set the system foreground window */
2837 @REQ(set_foreground_window)
2838 user_handle_t handle; /* handle to the foreground window */
2839 @REPLY
2840 user_handle_t previous; /* handle to the previous foreground window */
2841 int send_msg_old; /* whether we have to send a msg to the old window */
2842 int send_msg_new; /* whether we have to send a msg to the new window */
2843 @END
2845 /* Set the current thread focus window */
2846 @REQ(set_focus_window)
2847 user_handle_t handle; /* handle to the focus window */
2848 @REPLY
2849 user_handle_t previous; /* handle to the previous focus window */
2850 @END
2852 /* Set the current thread active window */
2853 @REQ(set_active_window)
2854 user_handle_t handle; /* handle to the active window */
2855 @REPLY
2856 user_handle_t previous; /* handle to the previous active window */
2857 @END
2859 /* Set the current thread capture window */
2860 @REQ(set_capture_window)
2861 user_handle_t handle; /* handle to the capture window */
2862 unsigned int flags; /* capture flags (see below) */
2863 @REPLY
2864 user_handle_t previous; /* handle to the previous capture window */
2865 user_handle_t full_handle; /* full 32-bit handle of new capture window */
2866 @END
2867 #define CAPTURE_MENU 0x01 /* capture is for a menu */
2868 #define CAPTURE_MOVESIZE 0x02 /* capture is for moving/resizing */
2871 /* Set the current thread caret window */
2872 @REQ(set_caret_window)
2873 user_handle_t handle; /* handle to the caret window */
2874 int width; /* caret width */
2875 int height; /* caret height */
2876 @REPLY
2877 user_handle_t previous; /* handle to the previous caret window */
2878 rectangle_t old_rect; /* previous caret rectangle */
2879 int old_hide; /* previous hide count */
2880 int old_state; /* previous caret state (1=on, 0=off) */
2881 @END
2884 /* Set the current thread caret information */
2885 @REQ(set_caret_info)
2886 unsigned int flags; /* caret flags (see below) */
2887 user_handle_t handle; /* handle to the caret window */
2888 int x; /* caret x position */
2889 int y; /* caret y position */
2890 int hide; /* increment for hide count (can be negative to show it) */
2891 int state; /* caret state (1=on, 0=off, -1=toggle current state) */
2892 @REPLY
2893 user_handle_t full_handle; /* handle to the current caret window */
2894 rectangle_t old_rect; /* previous caret rectangle */
2895 int old_hide; /* previous hide count */
2896 int old_state; /* previous caret state (1=on, 0=off) */
2897 @END
2898 #define SET_CARET_POS 0x01 /* set the caret position from x,y */
2899 #define SET_CARET_HIDE 0x02 /* increment the caret hide count */
2900 #define SET_CARET_STATE 0x04 /* set the caret on/off state */
2903 /* Set a window hook */
2904 @REQ(set_hook)
2905 int id; /* id of the hook */
2906 process_id_t pid; /* id of process to set the hook into */
2907 thread_id_t tid; /* id of thread to set the hook into */
2908 int event_min;
2909 int event_max;
2910 client_ptr_t proc; /* hook procedure */
2911 int flags;
2912 int unicode; /* is it a unicode hook? */
2913 VARARG(module,unicode_str); /* module name */
2914 @REPLY
2915 user_handle_t handle; /* handle to the hook */
2916 unsigned int active_hooks; /* active hooks bitmap */
2917 @END
2920 /* Remove a window hook */
2921 @REQ(remove_hook)
2922 user_handle_t handle; /* handle to the hook */
2923 client_ptr_t proc; /* hook procedure if handle is 0 */
2924 int id; /* id of the hook if handle is 0 */
2925 @REPLY
2926 unsigned int active_hooks; /* active hooks bitmap */
2927 @END
2930 /* Start calling a hook chain */
2931 @REQ(start_hook_chain)
2932 int id; /* id of the hook */
2933 int event; /* signalled event */
2934 user_handle_t window; /* handle to the event window */
2935 int object_id; /* object id for out of context winevent */
2936 int child_id; /* child id for out of context winevent */
2937 @REPLY
2938 user_handle_t handle; /* handle to the next hook */
2939 process_id_t pid; /* process id for low-level keyboard/mouse hooks */
2940 thread_id_t tid; /* thread id for low-level keyboard/mouse hooks */
2941 int unicode; /* is it a unicode hook? */
2942 client_ptr_t proc; /* hook procedure */
2943 unsigned int active_hooks; /* active hooks bitmap */
2944 VARARG(module,unicode_str); /* module name */
2945 @END
2948 /* Finished calling a hook chain */
2949 @REQ(finish_hook_chain)
2950 int id; /* id of the hook */
2951 @END
2954 /* Get the hook information */
2955 @REQ(get_hook_info)
2956 user_handle_t handle; /* handle to the current hook */
2957 int get_next; /* do we want info about current or next hook? */
2958 int event; /* signalled event */
2959 user_handle_t window; /* handle to the event window */
2960 int object_id; /* object id for out of context winevent */
2961 int child_id; /* child id for out of context winevent */
2962 @REPLY
2963 user_handle_t handle; /* handle to the hook */
2964 int id; /* id of the hook */
2965 process_id_t pid; /* process id for low-level keyboard/mouse hooks */
2966 thread_id_t tid; /* thread id for low-level keyboard/mouse hooks */
2967 client_ptr_t proc; /* hook procedure */
2968 int unicode; /* is it a unicode hook? */
2969 VARARG(module,unicode_str); /* module name */
2970 @END
2973 /* Create a window class */
2974 @REQ(create_class)
2975 int local; /* is it a local class? */
2976 atom_t atom; /* class atom */
2977 unsigned int style; /* class style */
2978 mod_handle_t instance; /* module instance */
2979 int extra; /* number of extra class bytes */
2980 int win_extra; /* number of window extra bytes */
2981 client_ptr_t client_ptr; /* pointer to class in client address space */
2982 VARARG(name,unicode_str); /* class name */
2983 @REPLY
2984 atom_t atom; /* resulting class atom */
2985 @END
2988 /* Destroy a window class */
2989 @REQ(destroy_class)
2990 atom_t atom; /* class atom */
2991 mod_handle_t instance; /* module instance */
2992 VARARG(name,unicode_str); /* class name */
2993 @REPLY
2994 client_ptr_t client_ptr; /* pointer to class in client address space */
2995 @END
2998 /* Set some information in a class */
2999 @REQ(set_class_info)
3000 user_handle_t window; /* handle to the window */
3001 unsigned int flags; /* flags for info to set (see below) */
3002 atom_t atom; /* class atom */
3003 unsigned int style; /* class style */
3004 int win_extra; /* number of window extra bytes */
3005 mod_handle_t instance; /* module instance */
3006 int extra_offset; /* offset to set in extra bytes */
3007 data_size_t extra_size; /* size to set in extra bytes */
3008 lparam_t extra_value; /* value to set in extra bytes */
3009 @REPLY
3010 atom_t old_atom; /* previous class atom */
3011 unsigned int old_style; /* previous class style */
3012 int old_extra; /* previous number of class extra bytes */
3013 int old_win_extra; /* previous number of window extra bytes */
3014 mod_handle_t old_instance; /* previous module instance */
3015 lparam_t old_extra_value; /* old value in extra bytes */
3016 @END
3017 #define SET_CLASS_ATOM 0x0001
3018 #define SET_CLASS_STYLE 0x0002
3019 #define SET_CLASS_WINEXTRA 0x0004
3020 #define SET_CLASS_INSTANCE 0x0008
3021 #define SET_CLASS_EXTRA 0x0010
3024 /* Set/get clipboard information */
3025 @REQ(set_clipboard_info)
3026 unsigned int flags; /* flags for fields to set (see below) */
3027 user_handle_t clipboard; /* clipboard window */
3028 user_handle_t owner; /* clipboard owner */
3029 user_handle_t viewer; /* first clipboard viewer */
3030 unsigned int seqno; /* change sequence number */
3031 @REPLY
3032 unsigned int flags; /* status flags (see below) */
3033 user_handle_t old_clipboard; /* old clipboard window */
3034 user_handle_t old_owner; /* old clipboard owner */
3035 user_handle_t old_viewer; /* old clipboard viewer */
3036 unsigned int seqno; /* current sequence number */
3037 @END
3039 #define SET_CB_OPEN 0x001
3040 #define SET_CB_OWNER 0x002
3041 #define SET_CB_VIEWER 0x004
3042 #define SET_CB_SEQNO 0x008
3043 #define SET_CB_RELOWNER 0x010
3044 #define SET_CB_CLOSE 0x020
3045 #define CB_OPEN 0x040
3046 #define CB_OWNER 0x080
3047 #define CB_PROCESS 0x100
3050 /* Open a security token */
3051 @REQ(open_token)
3052 obj_handle_t handle; /* handle to the thread or process */
3053 unsigned int access; /* access rights to the new token */
3054 unsigned int attributes;/* object attributes */
3055 unsigned int flags; /* flags (see below) */
3056 @REPLY
3057 obj_handle_t token; /* handle to the token */
3058 @END
3059 #define OPEN_TOKEN_THREAD 1
3060 #define OPEN_TOKEN_AS_SELF 2
3063 /* Set/get the global windows */
3064 @REQ(set_global_windows)
3065 unsigned int flags; /* flags for fields to set (see below) */
3066 user_handle_t shell_window; /* handle to the new shell window */
3067 user_handle_t shell_listview; /* handle to the new shell listview window */
3068 user_handle_t progman_window; /* handle to the new program manager window */
3069 user_handle_t taskman_window; /* handle to the new task manager window */
3070 @REPLY
3071 user_handle_t old_shell_window; /* handle to the shell window */
3072 user_handle_t old_shell_listview; /* handle to the shell listview window */
3073 user_handle_t old_progman_window; /* handle to the new program manager window */
3074 user_handle_t old_taskman_window; /* handle to the new task manager window */
3075 @END
3076 #define SET_GLOBAL_SHELL_WINDOWS 0x01 /* set both main shell and listview windows */
3077 #define SET_GLOBAL_PROGMAN_WINDOW 0x02
3078 #define SET_GLOBAL_TASKMAN_WINDOW 0x04
3080 /* Adjust the privileges held by a token */
3081 @REQ(adjust_token_privileges)
3082 obj_handle_t handle; /* handle to the token */
3083 int disable_all; /* disable all privileges? */
3084 int get_modified_state; /* get modified privileges? */
3085 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges to enable/disable/remove */
3086 @REPLY
3087 unsigned int len; /* total length in bytes required to store token privileges */
3088 VARARG(privileges,LUID_AND_ATTRIBUTES); /* modified privileges */
3089 @END
3091 /* Retrieves the set of privileges held by or available to a token */
3092 @REQ(get_token_privileges)
3093 obj_handle_t handle; /* handle to the token */
3094 @REPLY
3095 unsigned int len; /* total length in bytes required to store token privileges */
3096 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges held by or available to a token */
3097 @END
3099 /* Check the token has the required privileges */
3100 @REQ(check_token_privileges)
3101 obj_handle_t handle; /* handle to the token */
3102 int all_required; /* are all the privileges required for the check to succeed? */
3103 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges to check */
3104 @REPLY
3105 int has_privileges; /* does the token have the required privileges? */
3106 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges held by or available to a token */
3107 @END
3109 @REQ(duplicate_token)
3110 obj_handle_t handle; /* handle to the token to duplicate */
3111 unsigned int access; /* access rights to the new token */
3112 unsigned int attributes; /* object attributes */
3113 int primary; /* is the new token to be a primary one? */
3114 int impersonation_level; /* impersonation level of the new token */
3115 @REPLY
3116 obj_handle_t new_handle; /* duplicated handle */
3117 @END
3119 @REQ(access_check)
3120 obj_handle_t handle; /* handle to the token */
3121 unsigned int desired_access; /* desired access to the object */
3122 unsigned int mapping_read; /* mapping from generic read to specific rights */
3123 unsigned int mapping_write; /* mapping from generic write to specific rights */
3124 unsigned int mapping_execute; /* mapping from generic execute to specific rights */
3125 unsigned int mapping_all; /* mapping from generic all to specific rights */
3126 VARARG(sd,security_descriptor); /* security descriptor to check */
3127 @REPLY
3128 unsigned int access_granted; /* access rights actually granted */
3129 unsigned int access_status; /* was access granted? */
3130 unsigned int privileges_len; /* length needed to store privileges */
3131 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges used during access check */
3132 @END
3134 @REQ(get_token_sid)
3135 obj_handle_t handle; /* handle to the token */
3136 unsigned int which_sid; /* which SID to retrieve from the token */
3137 @REPLY
3138 data_size_t sid_len; /* length needed to store sid */
3139 VARARG(sid,SID); /* the sid specified by which_sid from the token */
3140 @END
3142 @REQ(get_token_groups)
3143 obj_handle_t handle; /* handle to the token */
3144 @REPLY
3145 data_size_t user_len; /* length needed to store user */
3146 VARARG(user,token_groups); /* groups the token's user belongs to */
3147 @END
3149 @REQ(get_token_default_dacl)
3150 obj_handle_t handle; /* handle to the token */
3151 @REPLY
3152 data_size_t acl_len; /* length needed to store access control list */
3153 VARARG(acl,ACL); /* access control list */
3154 @END
3156 @REQ(set_token_default_dacl)
3157 obj_handle_t handle; /* handle to the token */
3158 VARARG(acl,ACL); /* default dacl to set */
3159 @END
3161 @REQ(set_security_object)
3162 obj_handle_t handle; /* handle to the object */
3163 unsigned int security_info; /* which parts of security descriptor to set */
3164 VARARG(sd,security_descriptor); /* security descriptor to set */
3165 @END
3167 @REQ(get_security_object)
3168 obj_handle_t handle; /* handle to the object */
3169 unsigned int security_info; /* which parts of security descriptor to get */
3170 @REPLY
3171 unsigned int sd_len; /* buffer size needed for sd */
3172 VARARG(sd,security_descriptor); /* retrieved security descriptor */
3173 @END
3175 /* Create a mailslot */
3176 @REQ(create_mailslot)
3177 unsigned int access; /* wanted access rights */
3178 unsigned int attributes; /* object attributes */
3179 obj_handle_t rootdir; /* root directory */
3180 timeout_t read_timeout;
3181 unsigned int max_msgsize;
3182 VARARG(name,unicode_str); /* mailslot name */
3183 @REPLY
3184 obj_handle_t handle; /* handle to the mailslot */
3185 @END
3188 /* Set mailslot information */
3189 @REQ(set_mailslot_info)
3190 obj_handle_t handle; /* handle to the mailslot */
3191 timeout_t read_timeout;
3192 unsigned int flags;
3193 @REPLY
3194 timeout_t read_timeout;
3195 unsigned int max_msgsize;
3196 @END
3197 #define MAILSLOT_SET_READ_TIMEOUT 1
3200 /* Create a directory object */
3201 @REQ(create_directory)
3202 unsigned int access; /* access flags */
3203 unsigned int attributes; /* object attributes */
3204 obj_handle_t rootdir; /* root directory */
3205 VARARG(directory_name,unicode_str); /* Directory name */
3206 @REPLY
3207 obj_handle_t handle; /* handle to the directory */
3208 @END
3211 /* Open a directory object */
3212 @REQ(open_directory)
3213 unsigned int access; /* access flags */
3214 unsigned int attributes; /* object attributes */
3215 obj_handle_t rootdir; /* root directory */
3216 VARARG(directory_name,unicode_str); /* Directory name */
3217 @REPLY
3218 obj_handle_t handle; /* handle to the directory */
3219 @END
3222 /* Get a directory entry by index */
3223 @REQ(get_directory_entry)
3224 obj_handle_t handle; /* handle to the directory */
3225 unsigned int index; /* entry index */
3226 @REPLY
3227 data_size_t name_len; /* length of the entry name in bytes */
3228 VARARG(name,unicode_str,name_len); /* entry name */
3229 VARARG(type,unicode_str); /* entry type */
3230 @END
3233 /* Create a symbolic link object */
3234 @REQ(create_symlink)
3235 unsigned int access; /* access flags */
3236 unsigned int attributes; /* object attributes */
3237 obj_handle_t rootdir; /* root directory */
3238 data_size_t name_len; /* length of the symlink name in bytes */
3239 VARARG(name,unicode_str,name_len); /* symlink name */
3240 VARARG(target_name,unicode_str); /* target name */
3241 @REPLY
3242 obj_handle_t handle; /* handle to the symlink */
3243 @END
3246 /* Open a symbolic link object */
3247 @REQ(open_symlink)
3248 unsigned int access; /* access flags */
3249 unsigned int attributes; /* object attributes */
3250 obj_handle_t rootdir; /* root directory */
3251 VARARG(name,unicode_str); /* symlink name */
3252 @REPLY
3253 obj_handle_t handle; /* handle to the symlink */
3254 @END
3257 /* Query a symbolic link object */
3258 @REQ(query_symlink)
3259 obj_handle_t handle; /* handle to the symlink */
3260 @REPLY
3261 data_size_t total; /* total needed size for name */
3262 VARARG(target_name,unicode_str); /* target name */
3263 @END
3266 /* Query basic object information */
3267 @REQ(get_object_info)
3268 obj_handle_t handle; /* handle to the object */
3269 @REPLY
3270 unsigned int access; /* granted access mask */
3271 unsigned int ref_count; /* object ref count */
3272 data_size_t total; /* total needed size for name */
3273 VARARG(name,unicode_str); /* object name */
3274 @END
3277 /* Unlink a named object */
3278 @REQ(unlink_object)
3279 obj_handle_t handle; /* handle to the object */
3280 @END
3283 /* Query the impersonation level of an impersonation token */
3284 @REQ(get_token_impersonation_level)
3285 obj_handle_t handle; /* handle to the object */
3286 @REPLY
3287 int impersonation_level; /* impersonation level of the impersonation token */
3288 @END
3290 /* Allocate a locally-unique identifier */
3291 @REQ(allocate_locally_unique_id)
3292 @REPLY
3293 luid_t luid;
3294 @END
3297 /* Create a device manager */
3298 @REQ(create_device_manager)
3299 unsigned int access; /* wanted access rights */
3300 unsigned int attributes; /* object attributes */
3301 @REPLY
3302 obj_handle_t handle; /* handle to the device */
3303 @END
3306 /* Create a device */
3307 @REQ(create_device)
3308 unsigned int access; /* wanted access rights */
3309 unsigned int attributes; /* object attributes */
3310 obj_handle_t rootdir; /* root directory */
3311 client_ptr_t user_ptr; /* opaque ptr for use by client */
3312 obj_handle_t manager; /* device manager */
3313 VARARG(name,unicode_str); /* object name */
3314 @REPLY
3315 obj_handle_t handle; /* handle to the device */
3316 @END
3319 /* Delete a device */
3320 @REQ(delete_device)
3321 obj_handle_t handle; /* handle to the device */
3322 @END
3325 /* Retrieve the next pending device ioctl request */
3326 @REQ(get_next_device_request)
3327 obj_handle_t manager; /* handle to the device manager */
3328 obj_handle_t prev; /* handle to the previous ioctl */
3329 unsigned int status; /* status of the previous ioctl */
3330 VARARG(prev_data,bytes); /* output data of the previous ioctl */
3331 @REPLY
3332 obj_handle_t next; /* handle to the next ioctl */
3333 ioctl_code_t code; /* ioctl code */
3334 client_ptr_t user_ptr; /* opaque ptr for the device */
3335 process_id_t client_pid; /* pid of process calling ioctl */
3336 thread_id_t client_tid; /* tid of thread calling ioctl */
3337 data_size_t in_size; /* total needed input size */
3338 data_size_t out_size; /* needed output size */
3339 VARARG(next_data,bytes); /* input data of the next ioctl */
3340 @END
3343 /* Make the current process a system process */
3344 @REQ(make_process_system)
3345 @REPLY
3346 obj_handle_t event; /* event signaled when all user processes have exited */
3347 @END
3350 /* Get detailed fixed-size information about a token */
3351 @REQ(get_token_statistics)
3352 obj_handle_t handle; /* handle to the object */
3353 @REPLY
3354 luid_t token_id; /* locally-unique identifier of the token */
3355 luid_t modified_id; /* locally-unique identifier of the modified version of the token */
3356 int primary; /* is the token primary or impersonation? */
3357 int impersonation_level; /* level of impersonation */
3358 int group_count; /* the number of groups the token is a member of */
3359 int privilege_count; /* the number of privileges the token has */
3360 @END
3363 /* Create I/O completion port */
3364 @REQ(create_completion)
3365 unsigned int access; /* desired access to a port */
3366 unsigned int attributes; /* object attributes */
3367 unsigned int concurrent; /* max number of concurrent active threads */
3368 obj_handle_t rootdir; /* root directory */
3369 VARARG(filename,string); /* port name */
3370 @REPLY
3371 obj_handle_t handle; /* port handle */
3372 @END
3375 /* Open I/O completion port */
3376 @REQ(open_completion)
3377 unsigned int access; /* desired access to a port */
3378 unsigned int attributes; /* object attributes */
3379 obj_handle_t rootdir; /* root directory */
3380 VARARG(filename,string); /* port name */
3381 @REPLY
3382 obj_handle_t handle; /* port handle */
3383 @END
3386 /* add completion to completion port */
3387 @REQ(add_completion)
3388 obj_handle_t handle; /* port handle */
3389 apc_param_t ckey; /* completion key */
3390 apc_param_t cvalue; /* completion value */
3391 apc_param_t information; /* IO_STATUS_BLOCK Information */
3392 unsigned int status; /* completion result */
3393 @END
3396 /* get completion from completion port queue */
3397 @REQ(remove_completion)
3398 obj_handle_t handle; /* port handle */
3399 @REPLY
3400 apc_param_t ckey; /* completion key */
3401 apc_param_t cvalue; /* completion value */
3402 apc_param_t information; /* IO_STATUS_BLOCK Information */
3403 unsigned int status; /* completion result */
3404 @END
3407 /* get completion queue depth */
3408 @REQ(query_completion)
3409 obj_handle_t handle; /* port handle */
3410 @REPLY
3411 unsigned int depth; /* completion queue depth */
3412 @END
3415 /* associate object with completion port */
3416 @REQ(set_completion_info)
3417 obj_handle_t handle; /* object handle */
3418 apc_param_t ckey; /* completion key */
3419 obj_handle_t chandle; /* port handle */
3420 @END
3423 /* check for associated completion and push msg */
3424 @REQ(add_fd_completion)
3425 obj_handle_t handle; /* async' object */
3426 apc_param_t cvalue; /* completion value */
3427 apc_param_t information; /* IO_STATUS_BLOCK Information */
3428 unsigned int status; /* completion status */
3429 @END
3432 /* Retrieve layered info for a window */
3433 @REQ(get_window_layered_info)
3434 user_handle_t handle; /* handle to the window */
3435 @REPLY
3436 unsigned int color_key; /* color key */
3437 unsigned int alpha; /* alpha (0..255) */
3438 unsigned int flags; /* LWA_* flags */
3439 @END
3442 /* Set layered info for a window */
3443 @REQ(set_window_layered_info)
3444 user_handle_t handle; /* handle to the window */
3445 unsigned int color_key; /* color key */
3446 unsigned int alpha; /* alpha (0..255) */
3447 unsigned int flags; /* LWA_* flags */
3448 @END
3451 /* Allocate an arbitrary user handle */
3452 @REQ(alloc_user_handle)
3453 @REPLY
3454 user_handle_t handle; /* allocated handle */
3455 @END
3458 /* Free an arbitrary user handle */
3459 @REQ(free_user_handle)
3460 user_handle_t handle; /* handle to free*/
3461 @END
3464 /* Set/get the current cursor */
3465 @REQ(set_cursor)
3466 unsigned int flags; /* flags for fields to set (see below) */
3467 user_handle_t handle; /* handle to the cursor */
3468 int show_count; /* show count increment/decrement */
3469 int x; /* cursor position */
3470 int y;
3471 rectangle_t clip; /* cursor clip rectangle */
3472 unsigned int clip_msg; /* message to post on cursor clip changes */
3473 @REPLY
3474 user_handle_t prev_handle; /* previous handle */
3475 int prev_count; /* previous show count */
3476 int prev_x; /* previous position */
3477 int prev_y;
3478 int new_x; /* new position */
3479 int new_y;
3480 rectangle_t new_clip; /* new clip rectangle */
3481 unsigned int last_change; /* time of last position change */
3482 @END
3483 #define SET_CURSOR_HANDLE 0x01
3484 #define SET_CURSOR_COUNT 0x02
3485 #define SET_CURSOR_POS 0x04
3486 #define SET_CURSOR_CLIP 0x08
3487 #define SET_CURSOR_NOCLIP 0x10
3490 /* Modify the list of registered rawinput devices */
3491 @REQ(update_rawinput_devices)
3492 VARARG(devices,rawinput_devices);
3493 @END
3496 /* Retrieve the suspended context of a thread */
3497 @REQ(get_suspend_context)
3498 @REPLY
3499 VARARG(context,context); /* thread context */
3500 @END
3503 /* Store the suspend context of a thread */
3504 @REQ(set_suspend_context)
3505 VARARG(context,context); /* thread context */
3506 @END