version: Add a VerQueryValue test, make it mostly pass under Wine.
[wine/dibdrv.git] / server / protocol.def
blob629c82b83d16390dde1de235cd17ab8e597c9778
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 void *obj_handle_t;
35 typedef void *user_handle_t;
36 typedef unsigned short atom_t;
37 typedef unsigned int process_id_t;
38 typedef unsigned int thread_id_t;
39 typedef unsigned int data_size_t;
41 struct request_header
43 int req; /* request code */
44 data_size_t request_size; /* request variable part size */
45 data_size_t reply_size; /* reply variable part maximum size */
48 struct reply_header
50 unsigned int error; /* error result */
51 data_size_t reply_size; /* reply variable part size */
54 /* placeholder structure for the maximum allowed request size */
55 /* this is used to construct the generic_request union */
56 struct request_max_size
58 int pad[16]; /* the max request size is 16 ints */
61 #define FIRST_USER_HANDLE 0x0020 /* first possible value for low word of user handle */
62 #define LAST_USER_HANDLE 0xffef /* last possible value for low word of user handle */
65 /* definitions of the event data depending on the event code */
66 struct debug_event_exception
68 EXCEPTION_RECORD record; /* exception record */
69 int first; /* first chance exception? */
71 struct debug_event_create_thread
73 obj_handle_t handle; /* handle to the new thread */
74 void *teb; /* thread teb (in debugged process address space) */
75 void *start; /* thread startup routine */
77 struct debug_event_create_process
79 obj_handle_t file; /* handle to the process exe file */
80 obj_handle_t process; /* handle to the new process */
81 obj_handle_t thread; /* handle to the new thread */
82 void *base; /* base of executable image */
83 int dbg_offset; /* offset of debug info in file */
84 int dbg_size; /* size of debug info */
85 void *teb; /* thread teb (in debugged process address space) */
86 void *start; /* thread startup routine */
87 void *name; /* image name (optional) */
88 int unicode; /* is it Unicode? */
90 struct debug_event_exit
92 int exit_code; /* thread or process exit code */
94 struct debug_event_load_dll
96 obj_handle_t handle; /* file handle for the dll */
97 void *base; /* base address of the dll */
98 int dbg_offset; /* offset of debug info in file */
99 int dbg_size; /* size of debug info */
100 void *name; /* image name (optional) */
101 int unicode; /* is it Unicode? */
103 struct debug_event_unload_dll
105 void *base; /* base address of the dll */
107 struct debug_event_output_string
109 void *string; /* string to display (in debugged process address space) */
110 int unicode; /* is it Unicode? */
111 int length; /* string length */
113 struct debug_event_rip_info
115 int error; /* ??? */
116 int type; /* ??? */
118 union debug_event_data
120 struct debug_event_exception exception;
121 struct debug_event_create_thread create_thread;
122 struct debug_event_create_process create_process;
123 struct debug_event_exit exit;
124 struct debug_event_load_dll load_dll;
125 struct debug_event_unload_dll unload_dll;
126 struct debug_event_output_string output_string;
127 struct debug_event_rip_info rip_info;
130 /* debug event data */
131 typedef struct
133 int code; /* event code */
134 union debug_event_data info; /* event information */
135 } debug_event_t;
137 /* structure used in sending an fd from client to server */
138 struct send_fd
140 thread_id_t tid; /* thread id */
141 int fd; /* file descriptor on client-side */
144 /* structure sent by the server on the wait fifo */
145 struct wake_up_reply
147 void *cookie; /* magic cookie that was passed in select_request */
148 int signaled; /* wait result */
151 /* structure for absolute timeouts */
152 typedef struct
154 int sec; /* seconds since Unix epoch */
155 int usec; /* microseconds */
156 } abs_time_t;
158 /* structure returned in the list of window properties */
159 typedef struct
161 atom_t atom; /* property atom */
162 short string; /* was atom a string originally? */
163 obj_handle_t handle; /* handle stored in property */
164 } property_data_t;
166 /* structure to specify window rectangles */
167 typedef struct
169 int left;
170 int top;
171 int right;
172 int bottom;
173 } rectangle_t;
175 /* structure for parameters of async I/O calls */
176 typedef struct
178 void *callback; /* client-side callback to call upon end of async */
179 void *iosb; /* I/O status block in client addr space */
180 void *arg; /* opaque user data to pass to callback */
181 void *apc; /* user apc to call */
182 void *apc_arg; /* argument for user apc */
183 obj_handle_t event; /* event to signal when done */
184 } async_data_t;
186 /* structures for extra message data */
188 struct callback_msg_data
190 void *callback; /* callback function */
191 unsigned long data; /* user data for callback */
192 unsigned long result; /* message result */
195 struct winevent_msg_data
197 user_handle_t hook; /* hook handle */
198 thread_id_t tid; /* thread id */
199 void *hook_proc; /* hook proc address */
200 /* followed by module name if any */
203 typedef union
205 unsigned char bytes[1]; /* raw data for sent messages */
206 struct callback_msg_data callback;
207 struct winevent_msg_data winevent;
208 } message_data_t;
210 /* structure for console char/attribute info */
211 typedef struct
213 WCHAR ch;
214 unsigned short attr;
215 } char_info_t;
217 typedef struct
219 unsigned int low_part;
220 int high_part;
221 } luid_t;
223 #define MAX_ACL_LEN 65535
225 struct security_descriptor
227 unsigned int control; /* SE_ flags */
228 data_size_t owner_len;
229 data_size_t group_len;
230 data_size_t sacl_len;
231 data_size_t dacl_len;
232 /* VARARGS(owner,SID); */
233 /* VARARGS(group,SID); */
234 /* VARARGS(sacl,ACL); */
235 /* VARARGS(dacl,ACL); */
238 struct token_groups
240 unsigned int count;
241 /* unsigned int attributes[count]; */
242 /* VARARGS(sids,SID); */
245 enum apc_type
247 APC_NONE,
248 APC_USER,
249 APC_TIMER,
250 APC_ASYNC_IO,
251 APC_VIRTUAL_ALLOC,
252 APC_VIRTUAL_FREE,
253 APC_VIRTUAL_QUERY,
254 APC_VIRTUAL_PROTECT,
255 APC_VIRTUAL_FLUSH,
256 APC_VIRTUAL_LOCK,
257 APC_VIRTUAL_UNLOCK,
258 APC_MAP_VIEW,
259 APC_UNMAP_VIEW,
260 APC_CREATE_THREAD
263 typedef union
265 enum apc_type type;
266 struct
268 enum apc_type type; /* APC_USER */
269 void (__stdcall *func)(unsigned long,unsigned long,unsigned long);
270 unsigned long args[3]; /* arguments for user function */
271 } user;
272 struct
274 enum apc_type type; /* APC_TIMER */
275 void (__stdcall *func)(void*, unsigned int, unsigned int);
276 abs_time_t time; /* absolute time of expiration */
277 void *arg; /* user argument */
278 } timer;
279 struct
281 enum apc_type type; /* APC_ASYNC_IO */
282 unsigned int (*func)(void*, void*, unsigned int);
283 void *user; /* user pointer */
284 void *sb; /* status block */
285 unsigned int status; /* I/O status */
286 } async_io;
287 struct
289 enum apc_type type; /* APC_VIRTUAL_ALLOC */
290 void *addr; /* requested address */
291 unsigned long size; /* allocation size */
292 unsigned int zero_bits; /* allocation alignment */
293 unsigned int op_type; /* type of operation */
294 unsigned int prot; /* memory protection flags */
295 } virtual_alloc;
296 struct
298 enum apc_type type; /* APC_VIRTUAL_FREE */
299 void *addr; /* requested address */
300 unsigned long size; /* allocation size */
301 unsigned int op_type; /* type of operation */
302 } virtual_free;
303 struct
305 enum apc_type type; /* APC_VIRTUAL_QUERY */
306 const void *addr; /* requested address */
307 } virtual_query;
308 struct
310 enum apc_type type; /* APC_VIRTUAL_PROTECT */
311 void *addr; /* requested address */
312 unsigned long size; /* requested address */
313 unsigned int prot; /* new protection flags */
314 } virtual_protect;
315 struct
317 enum apc_type type; /* APC_VIRTUAL_FLUSH */
318 const void *addr; /* requested address */
319 unsigned long size; /* requested address */
320 } virtual_flush;
321 struct
323 enum apc_type type; /* APC_VIRTUAL_LOCK */
324 void *addr; /* requested address */
325 unsigned long size; /* requested address */
326 } virtual_lock;
327 struct
329 enum apc_type type; /* APC_VIRTUAL_UNLOCK */
330 void *addr; /* requested address */
331 unsigned long size; /* requested address */
332 } virtual_unlock;
333 struct
335 enum apc_type type; /* APC_MAP_VIEW */
336 obj_handle_t handle; /* mapping handle */
337 void *addr; /* requested address */
338 unsigned long size; /* allocation size */
339 unsigned int offset_low;/* file offset */
340 unsigned int offset_high;
341 unsigned int zero_bits; /* allocation alignment */
342 unsigned int alloc_type;/* allocation type */
343 unsigned int prot; /* memory protection flags */
344 } map_view;
345 struct
347 enum apc_type type; /* APC_UNMAP_VIEW */
348 void *addr; /* view address */
349 } unmap_view;
350 struct
352 enum apc_type type; /* APC_CREATE_THREAD */
353 void (__stdcall *func)(void*); /* start function */
354 void *arg; /* argument for start function */
355 unsigned long reserve; /* reserve size for thread stack */
356 unsigned long commit; /* commit size for thread stack */
357 int suspend; /* suspended thread? */
358 } create_thread;
359 } apc_call_t;
361 typedef union
363 enum apc_type type;
364 struct
366 enum apc_type type; /* APC_ASYNC_IO */
367 unsigned int status; /* new status of async operation */
368 } async_io;
369 struct
371 enum apc_type type; /* APC_VIRTUAL_ALLOC */
372 unsigned int status; /* status returned by call */
373 void *addr; /* resulting address */
374 unsigned long size; /* resulting size */
375 } virtual_alloc;
376 struct
378 enum apc_type type; /* APC_VIRTUAL_FREE */
379 unsigned int status; /* status returned by call */
380 void *addr; /* resulting address */
381 unsigned long size; /* resulting size */
382 } virtual_free;
383 struct
385 enum apc_type type; /* APC_VIRTUAL_QUERY */
386 unsigned int status; /* status returned by call */
387 void *base; /* resulting base address */
388 void *alloc_base;/* resulting allocation base */
389 unsigned long size; /* resulting region size */
390 unsigned int state; /* resulting region state */
391 unsigned int prot; /* resulting region protection */
392 unsigned int alloc_prot;/* resulting allocation protection */
393 unsigned int alloc_type;/* resulting region allocation type */
394 } virtual_query;
395 struct
397 enum apc_type type; /* APC_VIRTUAL_PROTECT */
398 unsigned int status; /* status returned by call */
399 void *addr; /* resulting address */
400 unsigned long size; /* resulting size */
401 unsigned int prot; /* old protection flags */
402 } virtual_protect;
403 struct
405 enum apc_type type; /* APC_VIRTUAL_FLUSH */
406 unsigned int status; /* status returned by call */
407 const void *addr; /* resulting address */
408 unsigned long size; /* resulting size */
409 } virtual_flush;
410 struct
412 enum apc_type type; /* APC_VIRTUAL_LOCK */
413 unsigned int status; /* status returned by call */
414 void *addr; /* resulting address */
415 unsigned long size; /* resulting size */
416 } virtual_lock;
417 struct
419 enum apc_type type; /* APC_VIRTUAL_UNLOCK */
420 unsigned int status; /* status returned by call */
421 void *addr; /* resulting address */
422 unsigned long size; /* resulting size */
423 } virtual_unlock;
424 struct
426 enum apc_type type; /* APC_MAP_VIEW */
427 unsigned int status; /* status returned by call */
428 void *addr; /* resulting address */
429 unsigned long size; /* resulting size */
430 } map_view;
431 struct
433 enum apc_type type; /* APC_MAP_VIEW */
434 unsigned int status; /* status returned by call */
435 } unmap_view;
436 struct
438 enum apc_type type; /* APC_CREATE_THREAD */
439 unsigned int status; /* status returned by call */
440 thread_id_t tid; /* thread id */
441 obj_handle_t handle; /* handle to new thread */
442 } create_thread;
443 } apc_result_t;
445 /****************************************************************/
446 /* Request declarations */
448 /* Create a new process from the context of the parent */
449 @REQ(new_process)
450 int inherit_all; /* inherit all handles from parent */
451 unsigned int create_flags; /* creation flags */
452 int socket_fd; /* file descriptor for process socket */
453 obj_handle_t exe_file; /* file handle for main exe */
454 obj_handle_t hstdin; /* handle for stdin */
455 obj_handle_t hstdout; /* handle for stdout */
456 obj_handle_t hstderr; /* handle for stderr */
457 unsigned int process_access; /* access rights for process object */
458 unsigned int process_attr; /* attributes for process object */
459 unsigned int thread_access; /* access rights for thread object */
460 unsigned int thread_attr; /* attributes for thread object */
461 VARARG(info,startup_info); /* startup information */
462 VARARG(env,unicode_str); /* environment for new process */
463 @REPLY
464 obj_handle_t info; /* new process info handle */
465 process_id_t pid; /* process id */
466 obj_handle_t phandle; /* process handle (in the current process) */
467 thread_id_t tid; /* thread id */
468 obj_handle_t thandle; /* thread handle (in the current process) */
469 @END
472 /* Retrieve information about a newly started process */
473 @REQ(get_new_process_info)
474 obj_handle_t info; /* info handle returned from new_process_request */
475 @REPLY
476 int success; /* did the process start successfully? */
477 int exit_code; /* process exit code if failed */
478 @END
481 /* Create a new thread from the context of the parent */
482 @REQ(new_thread)
483 unsigned int access; /* wanted access rights */
484 unsigned int attributes; /* object attributes */
485 int suspend; /* new thread should be suspended on creation */
486 int request_fd; /* fd for request pipe */
487 @REPLY
488 thread_id_t tid; /* thread id */
489 obj_handle_t handle; /* thread handle (in the current process) */
490 @END
493 /* Retrieve the new process startup info */
494 @REQ(get_startup_info)
495 @REPLY
496 obj_handle_t exe_file; /* file handle for main exe */
497 obj_handle_t hstdin; /* handle for stdin */
498 obj_handle_t hstdout; /* handle for stdout */
499 obj_handle_t hstderr; /* handle for stderr */
500 VARARG(info,startup_info); /* startup information */
501 VARARG(env,unicode_str); /* environment */
502 @END
505 /* Signal the end of the process initialization */
506 @REQ(init_process_done)
507 void* module; /* main module base address */
508 void* entry; /* process entry point */
509 int gui; /* is it a GUI process? */
510 @END
513 /* Initialize a thread; called from the child after fork()/clone() */
514 @REQ(init_thread)
515 int unix_pid; /* Unix pid of new thread */
516 int unix_tid; /* Unix tid of new thread */
517 int debug_level; /* new debug level */
518 void* teb; /* TEB of new thread (in thread address space) */
519 void* peb; /* address of PEB (in thread address space) */
520 void* entry; /* thread entry point (in thread address space) */
521 void* ldt_copy; /* address of LDT copy (in thread address space) */
522 int reply_fd; /* fd for reply pipe */
523 int wait_fd; /* fd for blocking calls pipe */
524 @REPLY
525 process_id_t pid; /* process id of the new thread's process */
526 thread_id_t tid; /* thread id of the new thread */
527 data_size_t info_size; /* total size of startup info */
528 abs_time_t server_start; /* server start time */
529 int version; /* protocol version */
530 @END
533 /* Terminate a process */
534 @REQ(terminate_process)
535 obj_handle_t handle; /* process handle to terminate */
536 int exit_code; /* process exit code */
537 @REPLY
538 int self; /* suicide? */
539 @END
542 /* Terminate a thread */
543 @REQ(terminate_thread)
544 obj_handle_t handle; /* thread handle to terminate */
545 int exit_code; /* thread exit code */
546 @REPLY
547 int self; /* suicide? */
548 int last; /* last thread in this process? */
549 @END
552 /* Retrieve information about a process */
553 @REQ(get_process_info)
554 obj_handle_t handle; /* process handle */
555 @REPLY
556 process_id_t pid; /* server process id */
557 process_id_t ppid; /* server process id of parent */
558 int exit_code; /* process exit code */
559 int priority; /* priority class */
560 int affinity; /* process affinity mask */
561 void* peb; /* PEB address in process address space */
562 abs_time_t start_time; /* process start time */
563 abs_time_t end_time; /* process end time */
564 @END
567 /* Set a process informations */
568 @REQ(set_process_info)
569 obj_handle_t handle; /* process handle */
570 int mask; /* setting mask (see below) */
571 int priority; /* priority class */
572 int affinity; /* affinity mask */
573 @END
574 #define SET_PROCESS_INFO_PRIORITY 0x01
575 #define SET_PROCESS_INFO_AFFINITY 0x02
578 /* Retrieve information about a thread */
579 @REQ(get_thread_info)
580 obj_handle_t handle; /* thread handle */
581 thread_id_t tid_in; /* thread id (optional) */
582 @REPLY
583 process_id_t pid; /* server process id */
584 thread_id_t tid; /* server thread id */
585 void* teb; /* thread teb pointer */
586 int exit_code; /* thread exit code */
587 int priority; /* thread priority level */
588 int affinity; /* thread affinity mask */
589 abs_time_t creation_time; /* thread creation time */
590 abs_time_t exit_time; /* thread exit time */
591 int last; /* last thread in process */
592 @END
595 /* Set a thread informations */
596 @REQ(set_thread_info)
597 obj_handle_t handle; /* thread handle */
598 int mask; /* setting mask (see below) */
599 int priority; /* priority class */
600 int affinity; /* affinity mask */
601 obj_handle_t token; /* impersonation token */
602 @END
603 #define SET_THREAD_INFO_PRIORITY 0x01
604 #define SET_THREAD_INFO_AFFINITY 0x02
605 #define SET_THREAD_INFO_TOKEN 0x04
608 /* Retrieve information about a module */
609 @REQ(get_dll_info)
610 obj_handle_t handle; /* process handle */
611 void* base_address; /* base address of module */
612 @REPLY
613 size_t size; /* module size */
614 void* entry_point;
615 VARARG(filename,unicode_str); /* file name of module */
616 @END
619 /* Suspend a thread */
620 @REQ(suspend_thread)
621 obj_handle_t handle; /* thread handle */
622 @REPLY
623 int count; /* new suspend count */
624 @END
627 /* Resume a thread */
628 @REQ(resume_thread)
629 obj_handle_t handle; /* thread handle */
630 @REPLY
631 int count; /* new suspend count */
632 @END
635 /* Notify the server that a dll has been loaded */
636 @REQ(load_dll)
637 obj_handle_t handle; /* file handle */
638 void* base; /* base address */
639 size_t size; /* dll size */
640 int dbg_offset; /* debug info offset */
641 int dbg_size; /* debug info size */
642 void* name; /* ptr to ptr to name (in process addr space) */
643 VARARG(filename,unicode_str); /* file name of dll */
644 @END
647 /* Notify the server that a dll is being unloaded */
648 @REQ(unload_dll)
649 void* base; /* base address */
650 @END
653 /* Queue an APC for a thread or process */
654 @REQ(queue_apc)
655 obj_handle_t thread; /* thread handle */
656 obj_handle_t process; /* process handle */
657 apc_call_t call; /* call arguments */
658 @REPLY
659 obj_handle_t handle; /* APC handle */
660 int self; /* run APC in caller itself? */
661 @END
664 /* Get next APC to call */
665 @REQ(get_apc)
666 int alertable; /* is thread alertable? */
667 obj_handle_t prev; /* handle to previous APC */
668 apc_result_t result; /* result of previous APC */
669 @REPLY
670 obj_handle_t handle; /* handle to APC */
671 apc_call_t call; /* call arguments */
672 @END
675 /* Get the result of an APC call */
676 @REQ(get_apc_result)
677 obj_handle_t handle; /* handle to the APC */
678 @REPLY
679 apc_result_t result; /* result of the APC */
680 @END
683 /* Close a handle for the current process */
684 @REQ(close_handle)
685 obj_handle_t handle; /* handle to close */
686 @END
689 /* Set a handle information */
690 @REQ(set_handle_info)
691 obj_handle_t handle; /* handle we are interested in */
692 int flags; /* new handle flags */
693 int mask; /* mask for flags to set */
694 @REPLY
695 int old_flags; /* old flag value */
696 @END
699 /* Duplicate a handle */
700 @REQ(dup_handle)
701 obj_handle_t src_process; /* src process handle */
702 obj_handle_t src_handle; /* src handle to duplicate */
703 obj_handle_t dst_process; /* dst process handle */
704 unsigned int access; /* wanted access rights */
705 unsigned int attributes; /* object attributes */
706 unsigned int options; /* duplicate options (see below) */
707 @REPLY
708 obj_handle_t handle; /* duplicated handle in dst process */
709 int self; /* is the source the current process? */
710 int closed; /* whether the source handle has been closed */
711 @END
712 #define DUP_HANDLE_CLOSE_SOURCE DUPLICATE_CLOSE_SOURCE
713 #define DUP_HANDLE_SAME_ACCESS DUPLICATE_SAME_ACCESS
714 #define DUP_HANDLE_MAKE_GLOBAL 0x80000000 /* Not a Windows flag */
717 /* Open a handle to a process */
718 @REQ(open_process)
719 process_id_t pid; /* process id to open */
720 unsigned int access; /* wanted access rights */
721 unsigned int attributes; /* object attributes */
722 @REPLY
723 obj_handle_t handle; /* handle to the process */
724 @END
727 /* Open a handle to a thread */
728 @REQ(open_thread)
729 thread_id_t tid; /* thread id to open */
730 unsigned int access; /* wanted access rights */
731 unsigned int attributes; /* object attributes */
732 @REPLY
733 obj_handle_t handle; /* handle to the thread */
734 @END
737 /* Wait for handles */
738 @REQ(select)
739 int flags; /* wait flags (see below) */
740 void* cookie; /* magic cookie to return to client */
741 obj_handle_t signal; /* object to signal (0 if none) */
742 abs_time_t timeout; /* absolute timeout */
743 VARARG(handles,handles); /* handles to select on */
744 @END
745 #define SELECT_ALL 1
746 #define SELECT_ALERTABLE 2
747 #define SELECT_INTERRUPTIBLE 4
748 #define SELECT_TIMEOUT 8
751 /* Create an event */
752 @REQ(create_event)
753 unsigned int access; /* wanted access rights */
754 unsigned int attributes; /* object attributes */
755 obj_handle_t rootdir; /* root directory */
756 int manual_reset; /* manual reset event */
757 int initial_state; /* initial state of the event */
758 VARARG(name,unicode_str); /* object name */
759 @REPLY
760 obj_handle_t handle; /* handle to the event */
761 @END
763 /* Event operation */
764 @REQ(event_op)
765 obj_handle_t handle; /* handle to event */
766 int op; /* event operation (see below) */
767 @END
768 enum event_op { PULSE_EVENT, SET_EVENT, RESET_EVENT };
771 /* Open an event */
772 @REQ(open_event)
773 unsigned int access; /* wanted access rights */
774 unsigned int attributes; /* object attributes */
775 obj_handle_t rootdir; /* root directory */
776 VARARG(name,unicode_str); /* object name */
777 @REPLY
778 obj_handle_t handle; /* handle to the event */
779 @END
782 /* Create a mutex */
783 @REQ(create_mutex)
784 unsigned int access; /* wanted access rights */
785 unsigned int attributes; /* object attributes */
786 obj_handle_t rootdir; /* root directory */
787 int owned; /* initially owned? */
788 VARARG(name,unicode_str); /* object name */
789 @REPLY
790 obj_handle_t handle; /* handle to the mutex */
791 @END
794 /* Release a mutex */
795 @REQ(release_mutex)
796 obj_handle_t handle; /* handle to the mutex */
797 @REPLY
798 unsigned int prev_count; /* value of internal counter, before release */
799 @END
802 /* Open a mutex */
803 @REQ(open_mutex)
804 unsigned int access; /* wanted access rights */
805 unsigned int attributes; /* object attributes */
806 obj_handle_t rootdir; /* root directory */
807 VARARG(name,unicode_str); /* object name */
808 @REPLY
809 obj_handle_t handle; /* handle to the mutex */
810 @END
813 /* Create a semaphore */
814 @REQ(create_semaphore)
815 unsigned int access; /* wanted access rights */
816 unsigned int attributes; /* object attributes */
817 obj_handle_t rootdir; /* root directory */
818 unsigned int initial; /* initial count */
819 unsigned int max; /* maximum count */
820 VARARG(name,unicode_str); /* object name */
821 @REPLY
822 obj_handle_t handle; /* handle to the semaphore */
823 @END
826 /* Release a semaphore */
827 @REQ(release_semaphore)
828 obj_handle_t handle; /* handle to the semaphore */
829 unsigned int count; /* count to add to semaphore */
830 @REPLY
831 unsigned int prev_count; /* previous semaphore count */
832 @END
835 /* Open a semaphore */
836 @REQ(open_semaphore)
837 unsigned int access; /* wanted access rights */
838 unsigned int attributes; /* object attributes */
839 obj_handle_t rootdir; /* root directory */
840 VARARG(name,unicode_str); /* object name */
841 @REPLY
842 obj_handle_t handle; /* handle to the semaphore */
843 @END
846 /* Create a file */
847 @REQ(create_file)
848 unsigned int access; /* wanted access rights */
849 unsigned int attributes; /* object attributes */
850 unsigned int sharing; /* sharing flags */
851 int create; /* file create action */
852 unsigned int options; /* file options */
853 unsigned int attrs; /* file attributes for creation */
854 VARARG(filename,string); /* file name */
855 @REPLY
856 obj_handle_t handle; /* handle to the file */
857 @END
860 /* Open a file object */
861 @REQ(open_file_object)
862 unsigned int access; /* wanted access rights */
863 unsigned int attributes; /* open attributes */
864 obj_handle_t rootdir; /* root directory */
865 unsigned int sharing; /* sharing flags */
866 unsigned int options; /* file options */
867 VARARG(filename,unicode_str); /* file name */
868 @REPLY
869 obj_handle_t handle; /* handle to the file */
870 @END
873 /* Allocate a file handle for a Unix fd */
874 @REQ(alloc_file_handle)
875 unsigned int access; /* wanted access rights */
876 unsigned int attributes; /* object attributes */
877 int fd; /* file descriptor on the client side */
878 @REPLY
879 obj_handle_t handle; /* handle to the file */
880 @END
883 /* Get a Unix fd to access a file */
884 @REQ(get_handle_fd)
885 obj_handle_t handle; /* handle to the file */
886 @REPLY
887 int type; /* file type (see below) */
888 int removable; /* is file removable? */
889 unsigned int access; /* file access rights */
890 unsigned int options; /* file open options */
891 @END
892 enum server_fd_type
894 FD_TYPE_INVALID, /* invalid file (no associated fd) */
895 FD_TYPE_FILE, /* regular file */
896 FD_TYPE_DIR, /* directory */
897 FD_TYPE_SOCKET, /* socket */
898 FD_TYPE_SERIAL, /* serial port */
899 FD_TYPE_PIPE, /* named pipe */
900 FD_TYPE_MAILSLOT, /* mailslot */
901 FD_TYPE_DEVICE, /* Windows device file */
902 FD_TYPE_NB_TYPES
906 /* Flush a file buffers */
907 @REQ(flush_file)
908 obj_handle_t handle; /* handle to the file */
909 @REPLY
910 obj_handle_t event; /* event set when finished */
911 @END
914 /* Lock a region of a file */
915 @REQ(lock_file)
916 obj_handle_t handle; /* handle to the file */
917 unsigned int offset_low; /* offset of start of lock */
918 unsigned int offset_high; /* offset of start of lock */
919 unsigned int count_low; /* count of bytes to lock */
920 unsigned int count_high; /* count of bytes to lock */
921 int shared; /* shared or exclusive lock? */
922 int wait; /* do we want to wait? */
923 @REPLY
924 obj_handle_t handle; /* handle to wait on */
925 int overlapped; /* is it an overlapped I/O handle? */
926 @END
929 /* Unlock a region of a file */
930 @REQ(unlock_file)
931 obj_handle_t handle; /* handle to the file */
932 unsigned int offset_low; /* offset of start of unlock */
933 unsigned int offset_high; /* offset of start of unlock */
934 unsigned int count_low; /* count of bytes to unlock */
935 unsigned int count_high; /* count of bytes to unlock */
936 @END
939 /* Create a socket */
940 @REQ(create_socket)
941 unsigned int access; /* wanted access rights */
942 unsigned int attributes; /* object attributes */
943 int family; /* family, see socket manpage */
944 int type; /* type, see socket manpage */
945 int protocol; /* protocol, see socket manpage */
946 unsigned int flags; /* socket flags */
947 @REPLY
948 obj_handle_t handle; /* handle to the new socket */
949 @END
952 /* Accept a socket */
953 @REQ(accept_socket)
954 obj_handle_t lhandle; /* handle to the listening socket */
955 unsigned int access; /* wanted access rights */
956 unsigned int attributes; /* object attributes */
957 @REPLY
958 obj_handle_t handle; /* handle to the new socket */
959 @END
962 /* Set socket event parameters */
963 @REQ(set_socket_event)
964 obj_handle_t handle; /* handle to the socket */
965 unsigned int mask; /* event mask */
966 obj_handle_t event; /* event object */
967 user_handle_t window; /* window to send the message to */
968 unsigned int msg; /* message to send */
969 @END
972 /* Get socket event parameters */
973 @REQ(get_socket_event)
974 obj_handle_t handle; /* handle to the socket */
975 int service; /* clear pending? */
976 obj_handle_t c_event; /* event to clear */
977 @REPLY
978 unsigned int mask; /* event mask */
979 unsigned int pmask; /* pending events */
980 unsigned int state; /* status bits */
981 VARARG(errors,ints); /* event errors */
982 @END
985 /* Reenable pending socket events */
986 @REQ(enable_socket_event)
987 obj_handle_t handle; /* handle to the socket */
988 unsigned int mask; /* events to re-enable */
989 unsigned int sstate; /* status bits to set */
990 unsigned int cstate; /* status bits to clear */
991 @END
993 @REQ(set_socket_deferred)
994 obj_handle_t handle; /* handle to the socket */
995 obj_handle_t deferred; /* handle to the socket for which accept() is deferred */
996 @END
998 /* Allocate a console (only used by a console renderer) */
999 @REQ(alloc_console)
1000 unsigned int access; /* wanted access rights */
1001 unsigned int attributes; /* object attributes */
1002 process_id_t pid; /* pid of process which shall be attached to the console */
1003 @REPLY
1004 obj_handle_t handle_in; /* handle to console input */
1005 obj_handle_t event; /* handle to renderer events change notification */
1006 @END
1009 /* Free the console of the current process */
1010 @REQ(free_console)
1011 @END
1014 #define CONSOLE_RENDERER_NONE_EVENT 0x00
1015 #define CONSOLE_RENDERER_TITLE_EVENT 0x01
1016 #define CONSOLE_RENDERER_ACTIVE_SB_EVENT 0x02
1017 #define CONSOLE_RENDERER_SB_RESIZE_EVENT 0x03
1018 #define CONSOLE_RENDERER_UPDATE_EVENT 0x04
1019 #define CONSOLE_RENDERER_CURSOR_POS_EVENT 0x05
1020 #define CONSOLE_RENDERER_CURSOR_GEOM_EVENT 0x06
1021 #define CONSOLE_RENDERER_DISPLAY_EVENT 0x07
1022 #define CONSOLE_RENDERER_EXIT_EVENT 0x08
1023 struct console_renderer_event
1025 short event;
1026 union
1028 struct update
1030 short top;
1031 short bottom;
1032 } update;
1033 struct resize
1035 short width;
1036 short height;
1037 } resize;
1038 struct cursor_pos
1040 short x;
1041 short y;
1042 } cursor_pos;
1043 struct cursor_geom
1045 short visible;
1046 short size;
1047 } cursor_geom;
1048 struct display
1050 short left;
1051 short top;
1052 short width;
1053 short height;
1054 } display;
1055 } u;
1058 /* retrieve console events for the renderer */
1059 @REQ(get_console_renderer_events)
1060 obj_handle_t handle; /* handle to console input events */
1061 @REPLY
1062 VARARG(data,bytes); /* the various console_renderer_events */
1063 @END
1066 /* Open a handle to the process console */
1067 @REQ(open_console)
1068 obj_handle_t from; /* 0 (resp 1) input (resp output) of current process console */
1069 /* otherwise console_in handle to get active screen buffer? */
1070 unsigned int access; /* wanted access rights */
1071 unsigned int attributes; /* object attributes */
1072 int share; /* share mask (only for output handles) */
1073 @REPLY
1074 obj_handle_t handle; /* handle to the console */
1075 @END
1078 /* Get the input queue wait event */
1079 @REQ(get_console_wait_event)
1080 @REPLY
1081 obj_handle_t handle;
1082 @END
1084 /* Get a console mode (input or output) */
1085 @REQ(get_console_mode)
1086 obj_handle_t handle; /* handle to the console */
1087 @REPLY
1088 int mode; /* console mode */
1089 @END
1092 /* Set a console mode (input or output) */
1093 @REQ(set_console_mode)
1094 obj_handle_t handle; /* handle to the console */
1095 int mode; /* console mode */
1096 @END
1099 /* Set info about a console (input only) */
1100 @REQ(set_console_input_info)
1101 obj_handle_t handle; /* handle to console input, or 0 for process' console */
1102 int mask; /* setting mask (see below) */
1103 obj_handle_t active_sb; /* active screen buffer */
1104 int history_mode; /* whether we duplicate lines in history */
1105 int history_size; /* number of lines in history */
1106 int edition_mode; /* index to the edition mode flavors */
1107 VARARG(title,unicode_str); /* console title */
1108 @END
1109 #define SET_CONSOLE_INPUT_INFO_ACTIVE_SB 0x01
1110 #define SET_CONSOLE_INPUT_INFO_TITLE 0x02
1111 #define SET_CONSOLE_INPUT_INFO_HISTORY_MODE 0x04
1112 #define SET_CONSOLE_INPUT_INFO_HISTORY_SIZE 0x08
1113 #define SET_CONSOLE_INPUT_INFO_EDITION_MODE 0x10
1116 /* Get info about a console (input only) */
1117 @REQ(get_console_input_info)
1118 obj_handle_t handle; /* handle to console input, or 0 for process' console */
1119 @REPLY
1120 int history_mode; /* whether we duplicate lines in history */
1121 int history_size; /* number of lines in history */
1122 int history_index; /* number of used lines in history */
1123 int edition_mode; /* index to the edition mode flavors */
1124 VARARG(title,unicode_str); /* console title */
1125 @END
1128 /* appends a string to console's history */
1129 @REQ(append_console_input_history)
1130 obj_handle_t handle; /* handle to console input, or 0 for process' console */
1131 VARARG(line,unicode_str); /* line to add */
1132 @END
1135 /* appends a string to console's history */
1136 @REQ(get_console_input_history)
1137 obj_handle_t handle; /* handle to console input, or 0 for process' console */
1138 int index; /* index to get line from */
1139 @REPLY
1140 int total; /* total length of line in Unicode chars */
1141 VARARG(line,unicode_str); /* line to add */
1142 @END
1145 /* creates a new screen buffer on process' console */
1146 @REQ(create_console_output)
1147 obj_handle_t handle_in; /* handle to console input, or 0 for process' console */
1148 unsigned int access; /* wanted access rights */
1149 unsigned int attributes; /* object attributes */
1150 unsigned int share; /* sharing credentials */
1151 @REPLY
1152 obj_handle_t handle_out; /* handle to the screen buffer */
1153 @END
1156 /* Set info about a console (output only) */
1157 @REQ(set_console_output_info)
1158 obj_handle_t handle; /* handle to the console */
1159 int mask; /* setting mask (see below) */
1160 short int cursor_size; /* size of cursor (percentage filled) */
1161 short int cursor_visible;/* cursor visibility flag */
1162 short int cursor_x; /* position of cursor (x, y) */
1163 short int cursor_y;
1164 short int width; /* width of the screen buffer */
1165 short int height; /* height of the screen buffer */
1166 short int attr; /* default attribute */
1167 short int win_left; /* window actually displayed by renderer */
1168 short int win_top; /* the rect area is expressed withing the */
1169 short int win_right; /* boundaries of the screen buffer */
1170 short int win_bottom;
1171 short int max_width; /* maximum size (width x height) for the window */
1172 short int max_height;
1173 @END
1174 #define SET_CONSOLE_OUTPUT_INFO_CURSOR_GEOM 0x01
1175 #define SET_CONSOLE_OUTPUT_INFO_CURSOR_POS 0x02
1176 #define SET_CONSOLE_OUTPUT_INFO_SIZE 0x04
1177 #define SET_CONSOLE_OUTPUT_INFO_ATTR 0x08
1178 #define SET_CONSOLE_OUTPUT_INFO_DISPLAY_WINDOW 0x10
1179 #define SET_CONSOLE_OUTPUT_INFO_MAX_SIZE 0x20
1182 /* Get info about a console (output only) */
1183 @REQ(get_console_output_info)
1184 obj_handle_t handle; /* handle to the console */
1185 @REPLY
1186 short int cursor_size; /* size of cursor (percentage filled) */
1187 short int cursor_visible;/* cursor visibility flag */
1188 short int cursor_x; /* position of cursor (x, y) */
1189 short int cursor_y;
1190 short int width; /* width of the screen buffer */
1191 short int height; /* height of the screen buffer */
1192 short int attr; /* default attribute */
1193 short int win_left; /* window actually displayed by renderer */
1194 short int win_top; /* the rect area is expressed withing the */
1195 short int win_right; /* boundaries of the screen buffer */
1196 short int win_bottom;
1197 short int max_width; /* maximum size (width x height) for the window */
1198 short int max_height;
1199 @END
1201 /* Add input records to a console input queue */
1202 @REQ(write_console_input)
1203 obj_handle_t handle; /* handle to the console input */
1204 VARARG(rec,input_records); /* input records */
1205 @REPLY
1206 int written; /* number of records written */
1207 @END
1210 /* Fetch input records from a console input queue */
1211 @REQ(read_console_input)
1212 obj_handle_t handle; /* handle to the console input */
1213 int flush; /* flush the retrieved records from the queue? */
1214 @REPLY
1215 int read; /* number of records read */
1216 VARARG(rec,input_records); /* input records */
1217 @END
1220 /* write data (chars and/or attributes) in a screen buffer */
1221 @REQ(write_console_output)
1222 obj_handle_t handle; /* handle to the console output */
1223 int x; /* position where to start writing */
1224 int y;
1225 int mode; /* char info (see below) */
1226 int wrap; /* wrap around at end of line? */
1227 VARARG(data,bytes); /* info to write */
1228 @REPLY
1229 int written; /* number of char infos actually written */
1230 int width; /* width of screen buffer */
1231 int height; /* height of screen buffer */
1232 @END
1233 enum char_info_mode
1235 CHAR_INFO_MODE_TEXT, /* characters only */
1236 CHAR_INFO_MODE_ATTR, /* attributes only */
1237 CHAR_INFO_MODE_TEXTATTR, /* both characters and attributes */
1238 CHAR_INFO_MODE_TEXTSTDATTR /* characters but use standard attributes */
1242 /* fill a screen buffer with constant data (chars and/or attributes) */
1243 @REQ(fill_console_output)
1244 obj_handle_t handle; /* handle to the console output */
1245 int x; /* position where to start writing */
1246 int y;
1247 int mode; /* char info mode */
1248 int count; /* number to write */
1249 int wrap; /* wrap around at end of line? */
1250 char_info_t data; /* data to write */
1251 @REPLY
1252 int written; /* number of char infos actually written */
1253 @END
1256 /* read data (chars and/or attributes) from a screen buffer */
1257 @REQ(read_console_output)
1258 obj_handle_t handle; /* handle to the console output */
1259 int x; /* position (x,y) where to start reading */
1260 int y;
1261 int mode; /* char info mode */
1262 int wrap; /* wrap around at end of line? */
1263 @REPLY
1264 int width; /* width of screen buffer */
1265 int height; /* height of screen buffer */
1266 VARARG(data,bytes);
1267 @END
1270 /* move a rect (of data) in screen buffer content */
1271 @REQ(move_console_output)
1272 obj_handle_t handle; /* handle to the console output */
1273 short int x_src; /* position (x, y) of rect to start moving from */
1274 short int y_src;
1275 short int x_dst; /* position (x, y) of rect to move to */
1276 short int y_dst;
1277 short int w; /* size of the rect (width, height) to move */
1278 short int h;
1279 @END
1282 /* Sends a signal to a process group */
1283 @REQ(send_console_signal)
1284 int signal; /* the signal to send */
1285 process_id_t group_id; /* the group to send the signal to */
1286 @END
1289 /* enable directory change notifications */
1290 @REQ(read_directory_changes)
1291 unsigned int filter; /* notification filter */
1292 obj_handle_t handle; /* handle to the directory */
1293 int subtree; /* watch the subtree? */
1294 int want_data; /* flag indicating whether change data should be collected */
1295 async_data_t async; /* async I/O parameters */
1296 @END
1299 @REQ(read_change)
1300 obj_handle_t handle;
1301 @REPLY
1302 int action; /* type of change */
1303 VARARG(name,string); /* name of directory entry that changed */
1304 @END
1307 /* Create a file mapping */
1308 @REQ(create_mapping)
1309 unsigned int access; /* wanted access rights */
1310 unsigned int attributes; /* object attributes */
1311 obj_handle_t rootdir; /* root directory */
1312 int size_high; /* mapping size */
1313 int size_low; /* mapping size */
1314 int protect; /* protection flags (see below) */
1315 obj_handle_t file_handle; /* file handle */
1316 VARARG(name,unicode_str); /* object name */
1317 @REPLY
1318 obj_handle_t handle; /* handle to the mapping */
1319 @END
1320 /* protection flags */
1321 #define VPROT_READ 0x01
1322 #define VPROT_WRITE 0x02
1323 #define VPROT_EXEC 0x04
1324 #define VPROT_WRITECOPY 0x08
1325 #define VPROT_GUARD 0x10
1326 #define VPROT_NOCACHE 0x20
1327 #define VPROT_COMMITTED 0x40
1328 #define VPROT_IMAGE 0x80
1331 /* Open a mapping */
1332 @REQ(open_mapping)
1333 unsigned int access; /* wanted access rights */
1334 unsigned int attributes; /* object attributes */
1335 obj_handle_t rootdir; /* root directory */
1336 VARARG(name,unicode_str); /* object name */
1337 @REPLY
1338 obj_handle_t handle; /* handle to the mapping */
1339 @END
1342 /* Get information about a file mapping */
1343 @REQ(get_mapping_info)
1344 obj_handle_t handle; /* handle to the mapping */
1345 @REPLY
1346 int size_high; /* mapping size */
1347 int size_low; /* mapping size */
1348 int protect; /* protection flags */
1349 int header_size; /* header size (for VPROT_IMAGE mapping) */
1350 void* base; /* default base addr (for VPROT_IMAGE mapping) */
1351 obj_handle_t mapping; /* duplicate mapping handle unless removable */
1352 obj_handle_t shared_file; /* shared mapping file handle */
1353 int shared_size; /* shared mapping size */
1354 @END
1357 #define SNAP_HEAPLIST 0x00000001
1358 #define SNAP_PROCESS 0x00000002
1359 #define SNAP_THREAD 0x00000004
1360 #define SNAP_MODULE 0x00000008
1361 /* Create a snapshot */
1362 @REQ(create_snapshot)
1363 unsigned int attributes; /* object attributes */
1364 int flags; /* snapshot flags (SNAP_*) */
1365 process_id_t pid; /* process id */
1366 @REPLY
1367 obj_handle_t handle; /* handle to the snapshot */
1368 @END
1371 /* Get the next process from a snapshot */
1372 @REQ(next_process)
1373 obj_handle_t handle; /* handle to the snapshot */
1374 int reset; /* reset snapshot position? */
1375 @REPLY
1376 int count; /* process usage count */
1377 process_id_t pid; /* process id */
1378 process_id_t ppid; /* parent process id */
1379 void* heap; /* heap base */
1380 void* module; /* main module */
1381 int threads; /* number of threads */
1382 int priority; /* process priority */
1383 int handles; /* number of handles */
1384 VARARG(filename,unicode_str); /* file name of main exe */
1385 @END
1388 /* Get the next thread from a snapshot */
1389 @REQ(next_thread)
1390 obj_handle_t handle; /* handle to the snapshot */
1391 int reset; /* reset snapshot position? */
1392 @REPLY
1393 int count; /* thread usage count */
1394 process_id_t pid; /* process id */
1395 thread_id_t tid; /* thread id */
1396 int base_pri; /* base priority */
1397 int delta_pri; /* delta priority */
1398 @END
1401 /* Get the next module from a snapshot */
1402 @REQ(next_module)
1403 obj_handle_t handle; /* handle to the snapshot */
1404 int reset; /* reset snapshot position? */
1405 @REPLY
1406 process_id_t pid; /* process id */
1407 void* base; /* module base address */
1408 size_t size; /* module size */
1409 VARARG(filename,unicode_str); /* file name of module */
1410 @END
1413 /* Wait for a debug event */
1414 @REQ(wait_debug_event)
1415 int get_handle; /* should we alloc a handle for waiting? */
1416 @REPLY
1417 process_id_t pid; /* process id */
1418 thread_id_t tid; /* thread id */
1419 obj_handle_t wait; /* wait handle if no event ready */
1420 VARARG(event,debug_event); /* debug event data */
1421 @END
1424 /* Queue an exception event */
1425 @REQ(queue_exception_event)
1426 int first; /* first chance exception? */
1427 VARARG(record,exc_event); /* thread context followed by exception record */
1428 @REPLY
1429 obj_handle_t handle; /* handle to the queued event */
1430 @END
1433 /* Retrieve the status of an exception event */
1434 @REQ(get_exception_status)
1435 obj_handle_t handle; /* handle to the queued event */
1436 @REPLY
1437 VARARG(context,context); /* modified thread context */
1438 @END
1441 /* Send an output string to the debugger */
1442 @REQ(output_debug_string)
1443 void* string; /* string to display (in debugged process address space) */
1444 int unicode; /* is it Unicode? */
1445 int length; /* string length */
1446 @END
1449 /* Continue a debug event */
1450 @REQ(continue_debug_event)
1451 process_id_t pid; /* process id to continue */
1452 thread_id_t tid; /* thread id to continue */
1453 int status; /* continuation status */
1454 @END
1457 /* Start/stop debugging an existing process */
1458 @REQ(debug_process)
1459 process_id_t pid; /* id of the process to debug */
1460 int attach; /* 1=attaching / 0=detaching from the process */
1461 @END
1464 /* Simulate a breakpoint in a process */
1465 @REQ(debug_break)
1466 obj_handle_t handle; /* process handle */
1467 @REPLY
1468 int self; /* was it the caller itself? */
1469 @END
1472 /* Set debugger kill on exit flag */
1473 @REQ(set_debugger_kill_on_exit)
1474 int kill_on_exit; /* 0=detach/1=kill debuggee when debugger dies */
1475 @END
1478 /* Read data from a process address space */
1479 @REQ(read_process_memory)
1480 obj_handle_t handle; /* process handle */
1481 void* addr; /* addr to read from */
1482 @REPLY
1483 VARARG(data,bytes); /* result data */
1484 @END
1487 /* Write data to a process address space */
1488 @REQ(write_process_memory)
1489 obj_handle_t handle; /* process handle */
1490 void* addr; /* addr to write to */
1491 VARARG(data,bytes); /* data to write */
1492 @END
1495 /* Create a registry key */
1496 @REQ(create_key)
1497 obj_handle_t parent; /* handle to the parent key */
1498 unsigned int access; /* desired access rights */
1499 unsigned int attributes; /* object attributes */
1500 unsigned int options; /* creation options */
1501 time_t modif; /* last modification time */
1502 data_size_t namelen; /* length of key name in bytes */
1503 VARARG(name,unicode_str,namelen); /* key name */
1504 VARARG(class,unicode_str); /* class name */
1505 @REPLY
1506 obj_handle_t hkey; /* handle to the created key */
1507 int created; /* has it been newly created? */
1508 @END
1510 /* Open a registry key */
1511 @REQ(open_key)
1512 obj_handle_t parent; /* handle to the parent key */
1513 unsigned int access; /* desired access rights */
1514 unsigned int attributes; /* object attributes */
1515 VARARG(name,unicode_str); /* key name */
1516 @REPLY
1517 obj_handle_t hkey; /* handle to the open key */
1518 @END
1521 /* Delete a registry key */
1522 @REQ(delete_key)
1523 obj_handle_t hkey; /* handle to the key */
1524 @END
1527 /* Flush a registry key */
1528 @REQ(flush_key)
1529 obj_handle_t hkey; /* handle to the key */
1530 @END
1533 /* Enumerate registry subkeys */
1534 @REQ(enum_key)
1535 obj_handle_t hkey; /* handle to registry key */
1536 int index; /* index of subkey (or -1 for current key) */
1537 int info_class; /* requested information class */
1538 @REPLY
1539 int subkeys; /* number of subkeys */
1540 int max_subkey; /* longest subkey name */
1541 int max_class; /* longest class name */
1542 int values; /* number of values */
1543 int max_value; /* longest value name */
1544 int max_data; /* longest value data */
1545 time_t modif; /* last modification time */
1546 data_size_t total; /* total length needed for full name and class */
1547 data_size_t namelen; /* length of key name in bytes */
1548 VARARG(name,unicode_str,namelen); /* key name */
1549 VARARG(class,unicode_str); /* class name */
1550 @END
1553 /* Set a value of a registry key */
1554 @REQ(set_key_value)
1555 obj_handle_t hkey; /* handle to registry key */
1556 int type; /* value type */
1557 data_size_t namelen; /* length of value name in bytes */
1558 VARARG(name,unicode_str,namelen); /* value name */
1559 VARARG(data,bytes); /* value data */
1560 @END
1563 /* Retrieve the value of a registry key */
1564 @REQ(get_key_value)
1565 obj_handle_t hkey; /* handle to registry key */
1566 VARARG(name,unicode_str); /* value name */
1567 @REPLY
1568 int type; /* value type */
1569 data_size_t total; /* total length needed for data */
1570 VARARG(data,bytes); /* value data */
1571 @END
1574 /* Enumerate a value of a registry key */
1575 @REQ(enum_key_value)
1576 obj_handle_t hkey; /* handle to registry key */
1577 int index; /* value index */
1578 int info_class; /* requested information class */
1579 @REPLY
1580 int type; /* value type */
1581 data_size_t total; /* total length needed for full name and data */
1582 data_size_t namelen; /* length of value name in bytes */
1583 VARARG(name,unicode_str,namelen); /* value name */
1584 VARARG(data,bytes); /* value data */
1585 @END
1588 /* Delete a value of a registry key */
1589 @REQ(delete_key_value)
1590 obj_handle_t hkey; /* handle to registry key */
1591 VARARG(name,unicode_str); /* value name */
1592 @END
1595 /* Load a registry branch from a file */
1596 @REQ(load_registry)
1597 obj_handle_t hkey; /* root key to load to */
1598 obj_handle_t file; /* file to load from */
1599 VARARG(name,unicode_str); /* subkey name */
1600 @END
1603 /* UnLoad a registry branch from a file */
1604 @REQ(unload_registry)
1605 obj_handle_t hkey; /* root key to unload to */
1606 @END
1609 /* Save a registry branch to a file */
1610 @REQ(save_registry)
1611 obj_handle_t hkey; /* key to save */
1612 obj_handle_t file; /* file to save to */
1613 @END
1616 /* Add a registry key change notification */
1617 @REQ(set_registry_notification)
1618 obj_handle_t hkey; /* key to watch for changes */
1619 obj_handle_t event; /* event to set */
1620 int subtree; /* should we watch the whole subtree? */
1621 unsigned int filter; /* things to watch */
1622 @END
1625 /* Create a waitable timer */
1626 @REQ(create_timer)
1627 unsigned int access; /* wanted access rights */
1628 unsigned int attributes; /* object attributes */
1629 obj_handle_t rootdir; /* root directory */
1630 int manual; /* manual reset */
1631 VARARG(name,unicode_str); /* object name */
1632 @REPLY
1633 obj_handle_t handle; /* handle to the timer */
1634 @END
1637 /* Open a waitable timer */
1638 @REQ(open_timer)
1639 unsigned int access; /* wanted access rights */
1640 unsigned int attributes; /* object attributes */
1641 obj_handle_t rootdir; /* root directory */
1642 VARARG(name,unicode_str); /* object name */
1643 @REPLY
1644 obj_handle_t handle; /* handle to the timer */
1645 @END
1647 /* Set a waitable timer */
1648 @REQ(set_timer)
1649 obj_handle_t handle; /* handle to the timer */
1650 abs_time_t expire; /* next expiration absolute time */
1651 int period; /* timer period in ms */
1652 void* callback; /* callback function */
1653 void* arg; /* callback argument */
1654 @REPLY
1655 int signaled; /* was the timer signaled before this call ? */
1656 @END
1658 /* Cancel a waitable timer */
1659 @REQ(cancel_timer)
1660 obj_handle_t handle; /* handle to the timer */
1661 @REPLY
1662 int signaled; /* was the timer signaled before this calltime ? */
1663 @END
1665 /* Get information on a waitable timer */
1666 @REQ(get_timer_info)
1667 obj_handle_t handle; /* handle to the timer */
1668 @REPLY
1669 abs_time_t when; /* absolute time when the timer next expires */
1670 int signaled; /* is the timer signaled? */
1671 @END
1674 /* Retrieve the current context of a thread */
1675 @REQ(get_thread_context)
1676 obj_handle_t handle; /* thread handle */
1677 unsigned int flags; /* context flags */
1678 int suspend; /* if getting context during suspend */
1679 @REPLY
1680 int self; /* was it a handle to the current thread? */
1681 VARARG(context,context); /* thread context */
1682 @END
1685 /* Set the current context of a thread */
1686 @REQ(set_thread_context)
1687 obj_handle_t handle; /* thread handle */
1688 unsigned int flags; /* context flags */
1689 int suspend; /* if setting context during suspend */
1690 VARARG(context,context); /* thread context */
1691 @REPLY
1692 int self; /* was it a handle to the current thread? */
1693 @END
1696 /* Fetch a selector entry for a thread */
1697 @REQ(get_selector_entry)
1698 obj_handle_t handle; /* thread handle */
1699 int entry; /* LDT entry */
1700 @REPLY
1701 unsigned int base; /* selector base */
1702 unsigned int limit; /* selector limit */
1703 unsigned char flags; /* selector flags */
1704 @END
1707 /* Add an atom */
1708 @REQ(add_atom)
1709 obj_handle_t table; /* which table to add atom to */
1710 VARARG(name,unicode_str); /* atom name */
1711 @REPLY
1712 atom_t atom; /* resulting atom */
1713 @END
1716 /* Delete an atom */
1717 @REQ(delete_atom)
1718 obj_handle_t table; /* which table to delete atom from */
1719 atom_t atom; /* atom handle */
1720 @END
1723 /* Find an atom */
1724 @REQ(find_atom)
1725 obj_handle_t table; /* which table to find atom from */
1726 VARARG(name,unicode_str); /* atom name */
1727 @REPLY
1728 atom_t atom; /* atom handle */
1729 @END
1732 /* Get information about an atom */
1733 @REQ(get_atom_information)
1734 obj_handle_t table; /* which table to find atom from */
1735 atom_t atom; /* atom handle */
1736 @REPLY
1737 int count; /* atom lock count */
1738 int pinned; /* whether the atom has been pinned */
1739 data_size_t total; /* actual length of atom name */
1740 VARARG(name,unicode_str); /* atom name */
1741 @END
1744 /* Set information about an atom */
1745 @REQ(set_atom_information)
1746 obj_handle_t table; /* which table to find atom from */
1747 atom_t atom; /* atom handle */
1748 int pinned; /* whether to bump atom information */
1749 @END
1752 /* Empty an atom table */
1753 @REQ(empty_atom_table)
1754 obj_handle_t table; /* which table to find atom from */
1755 int if_pinned; /* whether to delete pinned atoms */
1756 @END
1759 /* Init an atom table */
1760 @REQ(init_atom_table)
1761 int entries; /* number of entries (only for local) */
1762 @REPLY
1763 obj_handle_t table; /* handle to the atom table */
1764 @END
1767 /* Get the message queue of the current thread */
1768 @REQ(get_msg_queue)
1769 @REPLY
1770 obj_handle_t handle; /* handle to the queue */
1771 @END
1774 /* Set the file descriptor associated to the current thread queue */
1775 @REQ(set_queue_fd)
1776 obj_handle_t handle; /* handle to the file descriptor */
1777 @END
1780 /* Set the current message queue wakeup mask */
1781 @REQ(set_queue_mask)
1782 unsigned int wake_mask; /* wakeup bits mask */
1783 unsigned int changed_mask; /* changed bits mask */
1784 int skip_wait; /* will we skip waiting if signaled? */
1785 @REPLY
1786 unsigned int wake_bits; /* current wake bits */
1787 unsigned int changed_bits; /* current changed bits */
1788 @END
1791 /* Get the current message queue status */
1792 @REQ(get_queue_status)
1793 int clear; /* should we clear the change bits? */
1794 @REPLY
1795 unsigned int wake_bits; /* wake bits */
1796 unsigned int changed_bits; /* changed bits since last time */
1797 @END
1800 /* Retrieve the process idle event */
1801 @REQ(get_process_idle_event)
1802 obj_handle_t handle; /* process handle */
1803 @REPLY
1804 obj_handle_t event; /* handle to idle event */
1805 @END
1808 /* Send a message to a thread queue */
1809 @REQ(send_message)
1810 thread_id_t id; /* thread id */
1811 int type; /* message type (see below) */
1812 int flags; /* message flags (see below) */
1813 user_handle_t win; /* window handle */
1814 unsigned int msg; /* message code */
1815 unsigned long wparam; /* parameters */
1816 unsigned long lparam; /* parameters */
1817 int timeout; /* timeout for reply */
1818 VARARG(data,message_data); /* message data for sent messages */
1819 @END
1821 @REQ(post_quit_message)
1822 int exit_code; /* exit code to return */
1823 @END
1825 enum message_type
1827 MSG_ASCII, /* Ascii message (from SendMessageA) */
1828 MSG_UNICODE, /* Unicode message (from SendMessageW) */
1829 MSG_NOTIFY, /* notify message (from SendNotifyMessageW), always Unicode */
1830 MSG_CALLBACK, /* callback message (from SendMessageCallbackW), always Unicode */
1831 MSG_CALLBACK_RESULT,/* result of a callback message */
1832 MSG_OTHER_PROCESS, /* sent from other process, may include vararg data, always Unicode */
1833 MSG_POSTED, /* posted message (from PostMessageW), always Unicode */
1834 MSG_HARDWARE, /* hardware message */
1835 MSG_WINEVENT /* winevent message */
1837 #define SEND_MSG_ABORT_IF_HUNG 0x01
1840 /* Send a hardware message to a thread queue */
1841 @REQ(send_hardware_message)
1842 thread_id_t id; /* thread id */
1843 user_handle_t win; /* window handle */
1844 unsigned int msg; /* message code */
1845 unsigned int time; /* message time */
1846 unsigned long wparam; /* parameters */
1847 unsigned long lparam; /* parameters */
1848 unsigned long info; /* extra info */
1849 int x; /* x position */
1850 int y; /* y position */
1851 @END
1854 /* Get a message from the current queue */
1855 @REQ(get_message)
1856 unsigned int flags; /* PM_* flags */
1857 user_handle_t get_win; /* window handle to get */
1858 unsigned int get_first; /* first message code to get */
1859 unsigned int get_last; /* last message code to get */
1860 unsigned int hw_id; /* id of the previous hardware message (or 0) */
1861 @REPLY
1862 user_handle_t win; /* window handle */
1863 int type; /* message type */
1864 unsigned int msg; /* message code */
1865 unsigned long wparam; /* parameters */
1866 unsigned long lparam; /* parameters */
1867 unsigned long info; /* extra info */
1868 int x; /* x position */
1869 int y; /* y position */
1870 unsigned int time; /* message time */
1871 unsigned int hw_id; /* id if hardware message */
1872 unsigned int active_hooks; /* active hooks bitmap */
1873 data_size_t total; /* total size of extra data */
1874 VARARG(data,message_data); /* message data for sent messages */
1875 @END
1878 /* Reply to a sent message */
1879 @REQ(reply_message)
1880 unsigned int result; /* message result */
1881 int remove; /* should we remove the message? */
1882 VARARG(data,bytes); /* message data for sent messages */
1883 @END
1886 /* Accept the current hardware message */
1887 @REQ(accept_hardware_message)
1888 unsigned int hw_id; /* id of the hardware message */
1889 int remove; /* should we remove the message? */
1890 user_handle_t new_win; /* new destination window for current message */
1891 @END
1894 /* Retrieve the reply for the last message sent */
1895 @REQ(get_message_reply)
1896 int cancel; /* cancel message if not ready? */
1897 @REPLY
1898 unsigned int result; /* message result */
1899 VARARG(data,bytes); /* message data for sent messages */
1900 @END
1903 /* Set a window timer */
1904 @REQ(set_win_timer)
1905 user_handle_t win; /* window handle */
1906 unsigned int msg; /* message to post */
1907 unsigned int rate; /* timer rate in ms */
1908 unsigned long id; /* timer id */
1909 unsigned long lparam; /* message lparam (callback proc) */
1910 @REPLY
1911 unsigned long id; /* timer id */
1912 @END
1915 /* Kill a window timer */
1916 @REQ(kill_win_timer)
1917 user_handle_t win; /* window handle */
1918 unsigned int msg; /* message to post */
1919 unsigned long id; /* timer id */
1920 @END
1923 /* Retrieve info about a serial port */
1924 @REQ(get_serial_info)
1925 obj_handle_t handle; /* handle to comm port */
1926 @REPLY
1927 unsigned int readinterval;
1928 unsigned int readconst;
1929 unsigned int readmult;
1930 unsigned int writeconst;
1931 unsigned int writemult;
1932 unsigned int eventmask;
1933 @END
1936 /* Set info about a serial port */
1937 @REQ(set_serial_info)
1938 obj_handle_t handle; /* handle to comm port */
1939 int flags; /* bitmask to set values (see below) */
1940 unsigned int readinterval;
1941 unsigned int readconst;
1942 unsigned int readmult;
1943 unsigned int writeconst;
1944 unsigned int writemult;
1945 unsigned int eventmask;
1946 @END
1947 #define SERIALINFO_SET_TIMEOUTS 0x01
1948 #define SERIALINFO_SET_MASK 0x02
1951 /* Create an async I/O */
1952 @REQ(register_async)
1953 obj_handle_t handle; /* handle to comm port, socket or file */
1954 int type; /* type of queue to look after */
1955 int count; /* count - usually # of bytes to be read/written */
1956 async_data_t async; /* async I/O parameters */
1957 @END
1958 #define ASYNC_TYPE_READ 0x01
1959 #define ASYNC_TYPE_WRITE 0x02
1960 #define ASYNC_TYPE_WAIT 0x03
1963 /* Cancel all async op on a fd */
1964 @REQ(cancel_async)
1965 obj_handle_t handle; /* handle to comm port, socket or file */
1966 @END
1969 /* Perform an ioctl on a file */
1970 @REQ(ioctl)
1971 obj_handle_t handle; /* handle to the device */
1972 unsigned int code; /* ioctl code */
1973 async_data_t async; /* async I/O parameters */
1974 VARARG(in_data,bytes); /* ioctl input data */
1975 @REPLY
1976 VARARG(out_data,bytes); /* ioctl output data */
1977 @END
1980 /* Create a named pipe */
1981 @REQ(create_named_pipe)
1982 unsigned int access;
1983 unsigned int attributes; /* object attributes */
1984 obj_handle_t rootdir; /* root directory */
1985 unsigned int options;
1986 unsigned int flags;
1987 unsigned int maxinstances;
1988 unsigned int outsize;
1989 unsigned int insize;
1990 unsigned int timeout;
1991 VARARG(name,unicode_str); /* pipe name */
1992 @REPLY
1993 obj_handle_t handle; /* handle to the pipe */
1994 @END
1996 /* flags in create_named_pipe and get_named_pipe_info */
1997 #define NAMED_PIPE_MESSAGE_STREAM_WRITE 0x0001
1998 #define NAMED_PIPE_MESSAGE_STREAM_READ 0x0002
1999 #define NAMED_PIPE_NONBLOCKING_MODE 0x0004
2000 #define NAMED_PIPE_SERVER_END 0x8000
2002 /* Connect to a named pipe */
2003 @REQ(connect_named_pipe)
2004 obj_handle_t handle;
2005 async_data_t async; /* async I/O parameters */
2006 @END
2009 /* Wait for a named pipe */
2010 @REQ(wait_named_pipe)
2011 obj_handle_t handle;
2012 async_data_t async; /* async I/O parameters */
2013 unsigned int timeout;
2014 VARARG(name,unicode_str); /* pipe name */
2015 @END
2018 @REQ(get_named_pipe_info)
2019 obj_handle_t handle;
2020 @REPLY
2021 unsigned int flags;
2022 unsigned int maxinstances;
2023 unsigned int instances;
2024 unsigned int outsize;
2025 unsigned int insize;
2026 @END
2029 /* Create a window */
2030 @REQ(create_window)
2031 user_handle_t parent; /* parent window */
2032 user_handle_t owner; /* owner window */
2033 atom_t atom; /* class atom */
2034 void* instance; /* module instance */
2035 @REPLY
2036 user_handle_t handle; /* created window */
2037 user_handle_t parent; /* full handle of parent */
2038 user_handle_t owner; /* full handle of owner */
2039 int extra; /* number of extra bytes */
2040 void* class_ptr; /* pointer to class in client address space */
2041 @END
2044 /* Destroy a window */
2045 @REQ(destroy_window)
2046 user_handle_t handle; /* handle to the window */
2047 @END
2050 /* Retrieve the desktop window for the current thread */
2051 @REQ(get_desktop_window)
2052 int force; /* force creation if it doesn't exist */
2053 @REPLY
2054 user_handle_t handle; /* handle to the desktop window */
2055 @END
2058 /* Set a window owner */
2059 @REQ(set_window_owner)
2060 user_handle_t handle; /* handle to the window */
2061 user_handle_t owner; /* new owner */
2062 @REPLY
2063 user_handle_t full_owner; /* full handle of new owner */
2064 user_handle_t prev_owner; /* full handle of previous owner */
2065 @END
2068 /* Get information from a window handle */
2069 @REQ(get_window_info)
2070 user_handle_t handle; /* handle to the window */
2071 @REPLY
2072 user_handle_t full_handle; /* full 32-bit handle */
2073 user_handle_t last_active; /* last active popup */
2074 process_id_t pid; /* process owning the window */
2075 thread_id_t tid; /* thread owning the window */
2076 atom_t atom; /* class atom */
2077 int is_unicode; /* ANSI or unicode */
2078 @END
2081 /* Set some information in a window */
2082 @REQ(set_window_info)
2083 unsigned int flags; /* flags for fields to set (see below) */
2084 user_handle_t handle; /* handle to the window */
2085 unsigned int style; /* window style */
2086 unsigned int ex_style; /* window extended style */
2087 unsigned int id; /* window id */
2088 int is_unicode; /* ANSI or unicode */
2089 void* instance; /* creator instance */
2090 unsigned long user_data; /* user-specific data */
2091 int extra_offset; /* offset to set in extra bytes */
2092 data_size_t extra_size; /* size to set in extra bytes */
2093 unsigned long extra_value; /* value to set in extra bytes */
2094 @REPLY
2095 unsigned int old_style; /* old window style */
2096 unsigned int old_ex_style; /* old window extended style */
2097 unsigned int old_id; /* old window id */
2098 void* old_instance; /* old creator instance */
2099 unsigned long old_user_data; /* old user-specific data */
2100 unsigned long old_extra_value; /* old value in extra bytes */
2101 @END
2102 #define SET_WIN_STYLE 0x01
2103 #define SET_WIN_EXSTYLE 0x02
2104 #define SET_WIN_ID 0x04
2105 #define SET_WIN_INSTANCE 0x08
2106 #define SET_WIN_USERDATA 0x10
2107 #define SET_WIN_EXTRA 0x20
2108 #define SET_WIN_UNICODE 0x40
2111 /* Set the parent of a window */
2112 @REQ(set_parent)
2113 user_handle_t handle; /* handle to the window */
2114 user_handle_t parent; /* handle to the parent */
2115 @REPLY
2116 user_handle_t old_parent; /* old parent window */
2117 user_handle_t full_parent; /* full handle of new parent */
2118 @END
2121 /* Get a list of the window parents, up to the root of the tree */
2122 @REQ(get_window_parents)
2123 user_handle_t handle; /* handle to the window */
2124 @REPLY
2125 int count; /* total count of parents */
2126 VARARG(parents,user_handles); /* parent handles */
2127 @END
2130 /* Get a list of the window children */
2131 @REQ(get_window_children)
2132 user_handle_t parent; /* parent window */
2133 atom_t atom; /* class atom for the listed children */
2134 thread_id_t tid; /* thread owning the listed children */
2135 @REPLY
2136 int count; /* total count of children */
2137 VARARG(children,user_handles); /* children handles */
2138 @END
2141 /* Get a list of the window children that contain a given point */
2142 @REQ(get_window_children_from_point)
2143 user_handle_t parent; /* parent window */
2144 int x; /* point in parent coordinates */
2145 int y;
2146 @REPLY
2147 int count; /* total count of children */
2148 VARARG(children,user_handles); /* children handles */
2149 @END
2152 /* Get window tree information from a window handle */
2153 @REQ(get_window_tree)
2154 user_handle_t handle; /* handle to the window */
2155 @REPLY
2156 user_handle_t parent; /* parent window */
2157 user_handle_t owner; /* owner window */
2158 user_handle_t next_sibling; /* next sibling in Z-order */
2159 user_handle_t prev_sibling; /* prev sibling in Z-order */
2160 user_handle_t first_sibling; /* first sibling in Z-order */
2161 user_handle_t last_sibling; /* last sibling in Z-order */
2162 user_handle_t first_child; /* first child */
2163 user_handle_t last_child; /* last child */
2164 @END
2166 /* Set the position and Z order of a window */
2167 @REQ(set_window_pos)
2168 unsigned int flags; /* SWP_* flags */
2169 user_handle_t handle; /* handle to the window */
2170 user_handle_t previous; /* previous window in Z order */
2171 rectangle_t window; /* window rectangle */
2172 rectangle_t client; /* client rectangle */
2173 VARARG(valid,rectangles); /* valid rectangles from WM_NCCALCSIZE */
2174 @REPLY
2175 unsigned int new_style; /* new window style */
2176 @END
2179 /* Get the window and client rectangles of a window */
2180 @REQ(get_window_rectangles)
2181 user_handle_t handle; /* handle to the window */
2182 @REPLY
2183 rectangle_t window; /* window rectangle */
2184 rectangle_t visible; /* visible part of the window rectangle */
2185 rectangle_t client; /* client rectangle */
2186 @END
2189 /* Get the window text */
2190 @REQ(get_window_text)
2191 user_handle_t handle; /* handle to the window */
2192 @REPLY
2193 VARARG(text,unicode_str); /* window text */
2194 @END
2197 /* Set the window text */
2198 @REQ(set_window_text)
2199 user_handle_t handle; /* handle to the window */
2200 VARARG(text,unicode_str); /* window text */
2201 @END
2204 /* Get the coordinates offset between two windows */
2205 @REQ(get_windows_offset)
2206 user_handle_t from; /* handle to the first window */
2207 user_handle_t to; /* handle to the second window */
2208 @REPLY
2209 int x; /* x coordinate offset */
2210 int y; /* y coordinate offset */
2211 @END
2214 /* Get the visible region of a window */
2215 @REQ(get_visible_region)
2216 user_handle_t window; /* handle to the window */
2217 unsigned int flags; /* DCX flags */
2218 @REPLY
2219 user_handle_t top_win; /* top window to clip against */
2220 rectangle_t top_rect; /* top window visible rect with screen coords */
2221 rectangle_t win_rect; /* window rect in screen coords */
2222 data_size_t total_size; /* total size of the resulting region */
2223 VARARG(region,rectangles); /* list of rectangles for the region (in screen coords) */
2224 @END
2227 /* Get the window region */
2228 @REQ(get_window_region)
2229 user_handle_t window; /* handle to the window */
2230 @REPLY
2231 data_size_t total_size; /* total size of the resulting region */
2232 VARARG(region,rectangles); /* list of rectangles for the region */
2233 @END
2236 /* Set the window region */
2237 @REQ(set_window_region)
2238 user_handle_t window; /* handle to the window */
2239 int redraw; /* redraw the window? */
2240 VARARG(region,rectangles); /* list of rectangles for the region */
2241 @END
2244 /* Get the window update region */
2245 @REQ(get_update_region)
2246 user_handle_t window; /* handle to the window */
2247 user_handle_t from_child; /* child to start searching from */
2248 unsigned int flags; /* update flags (see below) */
2249 @REPLY
2250 user_handle_t child; /* child to repaint (or window itself) */
2251 unsigned int flags; /* resulting update flags (see below) */
2252 data_size_t total_size; /* total size of the resulting region */
2253 VARARG(region,rectangles); /* list of rectangles for the region */
2254 @END
2255 #define UPDATE_NONCLIENT 0x01 /* get region for repainting non-client area */
2256 #define UPDATE_ERASE 0x02 /* get region for erasing client area */
2257 #define UPDATE_PAINT 0x04 /* get region for painting client area */
2258 #define UPDATE_INTERNALPAINT 0x08 /* get region if internal paint is pending */
2259 #define UPDATE_ALLCHILDREN 0x10 /* force repaint of all children */
2260 #define UPDATE_NOCHILDREN 0x20 /* don't try to repaint any children */
2261 #define UPDATE_NOREGION 0x40 /* don't return a region, only the flags */
2264 /* Update the z order of a window so that a given rectangle is fully visible */
2265 @REQ(update_window_zorder)
2266 user_handle_t window; /* handle to the window */
2267 rectangle_t rect; /* rectangle that must be visible */
2268 @END
2271 /* Mark parts of a window as needing a redraw */
2272 @REQ(redraw_window)
2273 user_handle_t window; /* handle to the window */
2274 unsigned int flags; /* RDW_* flags */
2275 VARARG(region,rectangles); /* list of rectangles for the region */
2276 @END
2279 /* Set a window property */
2280 @REQ(set_window_property)
2281 user_handle_t window; /* handle to the window */
2282 atom_t atom; /* property atom (if no name specified) */
2283 obj_handle_t handle; /* handle to store */
2284 VARARG(name,unicode_str); /* property name */
2285 @END
2288 /* Remove a window property */
2289 @REQ(remove_window_property)
2290 user_handle_t window; /* handle to the window */
2291 atom_t atom; /* property atom (if no name specified) */
2292 VARARG(name,unicode_str); /* property name */
2293 @REPLY
2294 obj_handle_t handle; /* handle stored in property */
2295 @END
2298 /* Get a window property */
2299 @REQ(get_window_property)
2300 user_handle_t window; /* handle to the window */
2301 atom_t atom; /* property atom (if no name specified) */
2302 VARARG(name,unicode_str); /* property name */
2303 @REPLY
2304 obj_handle_t handle; /* handle stored in property */
2305 @END
2308 /* Get the list of properties of a window */
2309 @REQ(get_window_properties)
2310 user_handle_t window; /* handle to the window */
2311 @REPLY
2312 int total; /* total number of properties */
2313 VARARG(props,properties); /* list of properties */
2314 @END
2317 /* Create a window station */
2318 @REQ(create_winstation)
2319 unsigned int flags; /* window station flags */
2320 unsigned int access; /* wanted access rights */
2321 unsigned int attributes; /* object attributes */
2322 VARARG(name,unicode_str); /* object name */
2323 @REPLY
2324 obj_handle_t handle; /* handle to the window station */
2325 @END
2328 /* Open a handle to a window station */
2329 @REQ(open_winstation)
2330 unsigned int access; /* wanted access rights */
2331 unsigned int attributes; /* object attributes */
2332 VARARG(name,unicode_str); /* object name */
2333 @REPLY
2334 obj_handle_t handle; /* handle to the window station */
2335 @END
2338 /* Close a window station */
2339 @REQ(close_winstation)
2340 obj_handle_t handle; /* handle to the window station */
2341 @END
2344 /* Get the process current window station */
2345 @REQ(get_process_winstation)
2346 @REPLY
2347 obj_handle_t handle; /* handle to the window station */
2348 @END
2351 /* Set the process current window station */
2352 @REQ(set_process_winstation)
2353 obj_handle_t handle; /* handle to the window station */
2354 @END
2357 /* Create a desktop */
2358 @REQ(create_desktop)
2359 unsigned int flags; /* desktop flags */
2360 unsigned int access; /* wanted access rights */
2361 unsigned int attributes; /* object attributes */
2362 VARARG(name,unicode_str); /* object name */
2363 @REPLY
2364 obj_handle_t handle; /* handle to the desktop */
2365 @END
2368 /* Open a handle to a desktop */
2369 @REQ(open_desktop)
2370 unsigned int flags; /* desktop flags */
2371 unsigned int access; /* wanted access rights */
2372 unsigned int attributes; /* object attributes */
2373 VARARG(name,unicode_str); /* object name */
2374 @REPLY
2375 obj_handle_t handle; /* handle to the desktop */
2376 @END
2379 /* Close a desktop */
2380 @REQ(close_desktop)
2381 obj_handle_t handle; /* handle to the desktop */
2382 @END
2385 /* Get the thread current desktop */
2386 @REQ(get_thread_desktop)
2387 thread_id_t tid; /* thread id */
2388 @REPLY
2389 obj_handle_t handle; /* handle to the desktop */
2390 @END
2393 /* Set the thread current desktop */
2394 @REQ(set_thread_desktop)
2395 obj_handle_t handle; /* handle to the desktop */
2396 @END
2399 /* Get/set information about a user object (window station or desktop) */
2400 @REQ(set_user_object_info)
2401 obj_handle_t handle; /* handle to the object */
2402 unsigned int flags; /* information to set */
2403 unsigned int obj_flags; /* new object flags */
2404 @REPLY
2405 int is_desktop; /* is object a desktop? */
2406 unsigned int old_obj_flags; /* old object flags */
2407 VARARG(name,unicode_str); /* object name */
2408 @END
2409 #define SET_USER_OBJECT_FLAGS 1
2412 /* Attach (or detach) thread inputs */
2413 @REQ(attach_thread_input)
2414 thread_id_t tid_from; /* thread to be attached */
2415 thread_id_t tid_to; /* thread to which tid_from should be attached */
2416 int attach; /* is it an attach? */
2417 @END
2420 /* Get input data for a given thread */
2421 @REQ(get_thread_input)
2422 thread_id_t tid; /* id of thread */
2423 @REPLY
2424 user_handle_t focus; /* handle to the focus window */
2425 user_handle_t capture; /* handle to the capture window */
2426 user_handle_t active; /* handle to the active window */
2427 user_handle_t foreground; /* handle to the global foreground window */
2428 user_handle_t menu_owner; /* handle to the menu owner */
2429 user_handle_t move_size; /* handle to the moving/resizing window */
2430 user_handle_t caret; /* handle to the caret window */
2431 rectangle_t rect; /* caret rectangle */
2432 @END
2435 /* Get the time of the last input event */
2436 @REQ(get_last_input_time)
2437 @REPLY
2438 unsigned int time;
2439 @END
2442 /* Retrieve queue keyboard state for a given thread */
2443 @REQ(get_key_state)
2444 thread_id_t tid; /* id of thread */
2445 int key; /* optional key code or -1 */
2446 @REPLY
2447 unsigned char state; /* state of specified key */
2448 VARARG(keystate,bytes); /* state array for all the keys */
2449 @END
2451 /* Set queue keyboard state for a given thread */
2452 @REQ(set_key_state)
2453 thread_id_t tid; /* id of thread */
2454 VARARG(keystate,bytes); /* state array for all the keys */
2455 @END
2457 /* Set the system foreground window */
2458 @REQ(set_foreground_window)
2459 user_handle_t handle; /* handle to the foreground window */
2460 @REPLY
2461 user_handle_t previous; /* handle to the previous foreground window */
2462 int send_msg_old; /* whether we have to send a msg to the old window */
2463 int send_msg_new; /* whether we have to send a msg to the new window */
2464 @END
2466 /* Set the current thread focus window */
2467 @REQ(set_focus_window)
2468 user_handle_t handle; /* handle to the focus window */
2469 @REPLY
2470 user_handle_t previous; /* handle to the previous focus window */
2471 @END
2473 /* Set the current thread active window */
2474 @REQ(set_active_window)
2475 user_handle_t handle; /* handle to the active window */
2476 @REPLY
2477 user_handle_t previous; /* handle to the previous active window */
2478 @END
2480 /* Set the current thread capture window */
2481 @REQ(set_capture_window)
2482 user_handle_t handle; /* handle to the capture window */
2483 unsigned int flags; /* capture flags (see below) */
2484 @REPLY
2485 user_handle_t previous; /* handle to the previous capture window */
2486 user_handle_t full_handle; /* full 32-bit handle of new capture window */
2487 @END
2488 #define CAPTURE_MENU 0x01 /* capture is for a menu */
2489 #define CAPTURE_MOVESIZE 0x02 /* capture is for moving/resizing */
2492 /* Set the current thread caret window */
2493 @REQ(set_caret_window)
2494 user_handle_t handle; /* handle to the caret window */
2495 int width; /* caret width */
2496 int height; /* caret height */
2497 @REPLY
2498 user_handle_t previous; /* handle to the previous caret window */
2499 rectangle_t old_rect; /* previous caret rectangle */
2500 int old_hide; /* previous hide count */
2501 int old_state; /* previous caret state (1=on, 0=off) */
2502 @END
2505 /* Set the current thread caret information */
2506 @REQ(set_caret_info)
2507 unsigned int flags; /* caret flags (see below) */
2508 user_handle_t handle; /* handle to the caret window */
2509 int x; /* caret x position */
2510 int y; /* caret y position */
2511 int hide; /* increment for hide count (can be negative to show it) */
2512 int state; /* caret state (1=on, 0=off, -1=toggle current state) */
2513 @REPLY
2514 user_handle_t full_handle; /* handle to the current caret window */
2515 rectangle_t old_rect; /* previous caret rectangle */
2516 int old_hide; /* previous hide count */
2517 int old_state; /* previous caret state (1=on, 0=off) */
2518 @END
2519 #define SET_CARET_POS 0x01 /* set the caret position from x,y */
2520 #define SET_CARET_HIDE 0x02 /* increment the caret hide count */
2521 #define SET_CARET_STATE 0x04 /* set the caret on/off state */
2524 /* Set a window hook */
2525 @REQ(set_hook)
2526 int id; /* id of the hook */
2527 process_id_t pid; /* id of process to set the hook into */
2528 thread_id_t tid; /* id of thread to set the hook into */
2529 int event_min;
2530 int event_max;
2531 int flags;
2532 void* proc; /* hook procedure */
2533 int unicode; /* is it a unicode hook? */
2534 VARARG(module,unicode_str); /* module name */
2535 @REPLY
2536 user_handle_t handle; /* handle to the hook */
2537 unsigned int active_hooks; /* active hooks bitmap */
2538 @END
2541 /* Remove a window hook */
2542 @REQ(remove_hook)
2543 user_handle_t handle; /* handle to the hook */
2544 int id; /* id of the hook if handle is 0 */
2545 void* proc; /* hook procedure if handle is 0 */
2546 @REPLY
2547 unsigned int active_hooks; /* active hooks bitmap */
2548 @END
2551 /* Start calling a hook chain */
2552 @REQ(start_hook_chain)
2553 int id; /* id of the hook */
2554 int event; /* signalled event */
2555 user_handle_t window; /* handle to the event window */
2556 int object_id; /* object id for out of context winevent */
2557 int child_id; /* child id for out of context winevent */
2558 @REPLY
2559 user_handle_t handle; /* handle to the next hook */
2560 process_id_t pid; /* process id for low-level keyboard/mouse hooks */
2561 thread_id_t tid; /* thread id for low-level keyboard/mouse hooks */
2562 void* proc; /* hook procedure */
2563 int unicode; /* is it a unicode hook? */
2564 unsigned int active_hooks; /* active hooks bitmap */
2565 VARARG(module,unicode_str); /* module name */
2566 @END
2569 /* Finished calling a hook chain */
2570 @REQ(finish_hook_chain)
2571 int id; /* id of the hook */
2572 @END
2575 /* Get the hook information */
2576 @REQ(get_hook_info)
2577 user_handle_t handle; /* handle to the current hook */
2578 int get_next; /* do we want info about current or next hook? */
2579 int event; /* signalled event */
2580 user_handle_t window; /* handle to the event window */
2581 int object_id; /* object id for out of context winevent */
2582 int child_id; /* child id for out of context winevent */
2583 @REPLY
2584 user_handle_t handle; /* handle to the hook */
2585 int id; /* id of the hook */
2586 process_id_t pid; /* process id for low-level keyboard/mouse hooks */
2587 thread_id_t tid; /* thread id for low-level keyboard/mouse hooks */
2588 void* proc; /* hook procedure */
2589 int unicode; /* is it a unicode hook? */
2590 VARARG(module,unicode_str); /* module name */
2591 @END
2594 /* Create a window class */
2595 @REQ(create_class)
2596 int local; /* is it a local class? */
2597 atom_t atom; /* class atom */
2598 unsigned int style; /* class style */
2599 void* instance; /* module instance */
2600 int extra; /* number of extra class bytes */
2601 int win_extra; /* number of window extra bytes */
2602 void* client_ptr; /* pointer to class in client address space */
2603 @END
2606 /* Destroy a window class */
2607 @REQ(destroy_class)
2608 atom_t atom; /* class atom */
2609 void* instance; /* module instance */
2610 @REPLY
2611 void* client_ptr; /* pointer to class in client address space */
2612 @END
2615 /* Set some information in a class */
2616 @REQ(set_class_info)
2617 user_handle_t window; /* handle to the window */
2618 unsigned int flags; /* flags for info to set (see below) */
2619 atom_t atom; /* class atom */
2620 unsigned int style; /* class style */
2621 int win_extra; /* number of window extra bytes */
2622 void* instance; /* module instance */
2623 int extra_offset; /* offset to set in extra bytes */
2624 data_size_t extra_size; /* size to set in extra bytes */
2625 unsigned long extra_value; /* value to set in extra bytes */
2626 @REPLY
2627 atom_t old_atom; /* previous class atom */
2628 unsigned int old_style; /* previous class style */
2629 int old_extra; /* previous number of class extra bytes */
2630 int old_win_extra; /* previous number of window extra bytes */
2631 void* old_instance; /* previous module instance */
2632 unsigned long old_extra_value; /* old value in extra bytes */
2633 @END
2634 #define SET_CLASS_ATOM 0x0001
2635 #define SET_CLASS_STYLE 0x0002
2636 #define SET_CLASS_WINEXTRA 0x0004
2637 #define SET_CLASS_INSTANCE 0x0008
2638 #define SET_CLASS_EXTRA 0x0010
2641 /* Set/get clipboard information */
2642 @REQ(set_clipboard_info)
2643 unsigned int flags; /* flags for fields to set (see below) */
2644 user_handle_t clipboard; /* clipboard window */
2645 user_handle_t owner; /* clipboard owner */
2646 user_handle_t viewer; /* first clipboard viewer */
2647 unsigned int seqno; /* change sequence number */
2648 @REPLY
2649 unsigned int flags; /* status flags (see below) */
2650 user_handle_t old_clipboard; /* old clipboard window */
2651 user_handle_t old_owner; /* old clipboard owner */
2652 user_handle_t old_viewer; /* old clipboard viewer */
2653 unsigned int seqno; /* current sequence number */
2654 @END
2656 #define SET_CB_OPEN 0x001
2657 #define SET_CB_OWNER 0x002
2658 #define SET_CB_VIEWER 0x004
2659 #define SET_CB_SEQNO 0x008
2660 #define SET_CB_RELOWNER 0x010
2661 #define SET_CB_CLOSE 0x020
2662 #define CB_OPEN 0x040
2663 #define CB_OWNER 0x080
2664 #define CB_PROCESS 0x100
2667 /* Open a security token */
2668 @REQ(open_token)
2669 obj_handle_t handle; /* handle to the thread or process */
2670 unsigned int access; /* access rights to the new token */
2671 unsigned int attributes;/* object attributes */
2672 unsigned int flags; /* flags (see below) */
2673 @REPLY
2674 obj_handle_t token; /* handle to the token */
2675 @END
2676 #define OPEN_TOKEN_THREAD 1
2677 #define OPEN_TOKEN_AS_SELF 2
2680 /* Set/get the global windows */
2681 @REQ(set_global_windows)
2682 unsigned int flags; /* flags for fields to set (see below) */
2683 user_handle_t shell_window; /* handle to the new shell window */
2684 user_handle_t shell_listview; /* handle to the new shell listview window */
2685 user_handle_t progman_window; /* handle to the new program manager window */
2686 user_handle_t taskman_window; /* handle to the new task manager window */
2687 @REPLY
2688 user_handle_t old_shell_window; /* handle to the shell window */
2689 user_handle_t old_shell_listview; /* handle to the shell listview window */
2690 user_handle_t old_progman_window; /* handle to the new program manager window */
2691 user_handle_t old_taskman_window; /* handle to the new task manager window */
2692 @END
2693 #define SET_GLOBAL_SHELL_WINDOWS 0x01 /* set both main shell and listview windows */
2694 #define SET_GLOBAL_PROGMAN_WINDOW 0x02
2695 #define SET_GLOBAL_TASKMAN_WINDOW 0x04
2697 /* Adjust the privileges held by a token */
2698 @REQ(adjust_token_privileges)
2699 obj_handle_t handle; /* handle to the token */
2700 int disable_all; /* disable all privileges? */
2701 int get_modified_state; /* get modified privileges? */
2702 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges to enable/disable/remove */
2703 @REPLY
2704 unsigned int len; /* total length in bytes required to store token privileges */
2705 VARARG(privileges,LUID_AND_ATTRIBUTES); /* modified privileges */
2706 @END
2708 /* Retrieves the set of privileges held by or available to a token */
2709 @REQ(get_token_privileges)
2710 obj_handle_t handle; /* handle to the token */
2711 @REPLY
2712 unsigned int len; /* total length in bytes required to store token privileges */
2713 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges held by or available to a token */
2714 @END
2716 /* Check the token has the required privileges */
2717 @REQ(check_token_privileges)
2718 obj_handle_t handle; /* handle to the token */
2719 int all_required; /* are all the privileges required for the check to succeed? */
2720 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges to check */
2721 @REPLY
2722 int has_privileges; /* does the token have the required privileges? */
2723 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges held by or available to a token */
2724 @END
2726 @REQ(duplicate_token)
2727 obj_handle_t handle; /* handle to the token to duplicate */
2728 unsigned int access; /* access rights to the new token */
2729 unsigned int attributes; /* object attributes */
2730 int primary; /* is the new token to be a primary one? */
2731 int impersonation_level; /* impersonation level of the new token */
2732 @REPLY
2733 obj_handle_t new_handle; /* duplicated handle */
2734 @END
2736 @REQ(access_check)
2737 obj_handle_t handle; /* handle to the token */
2738 unsigned int desired_access; /* desired access to the object */
2739 unsigned int mapping_read; /* mapping from generic read to specific rights */
2740 unsigned int mapping_write; /* mapping from generic write to specific rights */
2741 unsigned int mapping_execute; /* mapping from generic execute to specific rights */
2742 unsigned int mapping_all; /* mapping from generic all to specific rights */
2743 VARARG(sd,security_descriptor); /* security descriptor to check */
2744 @REPLY
2745 unsigned int access_granted; /* access rights actually granted */
2746 unsigned int access_status; /* was access granted? */
2747 unsigned int privileges_len; /* length needed to store privileges */
2748 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges used during access check */
2749 @END
2751 @REQ(get_token_user)
2752 obj_handle_t handle; /* handle to the token */
2753 @REPLY
2754 data_size_t user_len; /* length needed to store user */
2755 VARARG(user,SID); /* sid of the user the token represents */
2756 @END
2758 @REQ(get_token_groups)
2759 obj_handle_t handle; /* handle to the token */
2760 @REPLY
2761 data_size_t user_len; /* length needed to store user */
2762 VARARG(user,token_groups); /* groups the token's user belongs to */
2763 @END
2765 @REQ(set_security_object)
2766 obj_handle_t handle; /* handle to the object */
2767 unsigned int security_info; /* which parts of security descriptor to set */
2768 VARARG(sd,security_descriptor); /* security descriptor to set */
2769 @END
2771 /* Create a mailslot */
2772 @REQ(create_mailslot)
2773 unsigned int access; /* wanted access rights */
2774 unsigned int attributes; /* object attributes */
2775 obj_handle_t rootdir; /* root directory */
2776 unsigned int max_msgsize;
2777 int read_timeout;
2778 VARARG(name,unicode_str); /* mailslot name */
2779 @REPLY
2780 obj_handle_t handle; /* handle to the mailslot */
2781 @END
2784 /* Set mailslot information */
2785 @REQ(set_mailslot_info)
2786 obj_handle_t handle; /* handle to the mailslot */
2787 unsigned int flags;
2788 int read_timeout;
2789 @REPLY
2790 unsigned int max_msgsize;
2791 int read_timeout;
2792 @END
2793 #define MAILSLOT_SET_READ_TIMEOUT 1
2796 /* Create a directory object */
2797 @REQ(create_directory)
2798 unsigned int access; /* access flags */
2799 unsigned int attributes; /* object attributes */
2800 obj_handle_t rootdir; /* root directory */
2801 VARARG(directory_name,unicode_str); /* Directory name */
2802 @REPLY
2803 obj_handle_t handle; /* handle to the directory */
2804 @END
2807 /* Open a directory object */
2808 @REQ(open_directory)
2809 unsigned int access; /* access flags */
2810 unsigned int attributes; /* object attributes */
2811 obj_handle_t rootdir; /* root directory */
2812 VARARG(directory_name,unicode_str); /* Directory name */
2813 @REPLY
2814 obj_handle_t handle; /* handle to the directory */
2815 @END
2818 /* Create a symbolic link object */
2819 @REQ(create_symlink)
2820 unsigned int access; /* access flags */
2821 unsigned int attributes; /* object attributes */
2822 obj_handle_t rootdir; /* root directory */
2823 data_size_t name_len; /* length of the symlink name in bytes */
2824 VARARG(name,unicode_str,name_len); /* symlink name */
2825 VARARG(target_name,unicode_str); /* target name */
2826 @REPLY
2827 obj_handle_t handle; /* handle to the symlink */
2828 @END
2831 /* Open a symbolic link object */
2832 @REQ(open_symlink)
2833 unsigned int access; /* access flags */
2834 unsigned int attributes; /* object attributes */
2835 obj_handle_t rootdir; /* root directory */
2836 VARARG(name,unicode_str); /* symlink name */
2837 @REPLY
2838 obj_handle_t handle; /* handle to the symlink */
2839 @END
2842 /* Query a symbolic link object */
2843 @REQ(query_symlink)
2844 obj_handle_t handle; /* handle to the symlink */
2845 @REPLY
2846 VARARG(target_name,unicode_str); /* target name */
2847 @END
2850 /* Query basic object information */
2851 @REQ(get_object_info)
2852 obj_handle_t handle; /* handle to the object */
2853 @REPLY
2854 unsigned int access; /* granted access mask */
2855 unsigned int ref_count; /* object ref count */
2856 @END
2858 /* Query the impersonation level of an impersonation token */
2859 @REQ(get_token_impersonation_level)
2860 obj_handle_t handle; /* handle to the object */
2861 @REPLY
2862 int impersonation_level; /* impersonation level of the impersonation token */
2863 @END
2865 /* Allocate a locally-unique identifier */
2866 @REQ(allocate_locally_unique_id)
2867 @REPLY
2868 luid_t luid;
2869 @END