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