winecfg: Simplify code a bit.
[wine/hacks.git] / server / protocol.def
blob55aef19084179bf0442dfbc90f65fdbc3c9a773f
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 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 struct request_header
36 int req; /* request code */
37 size_t request_size; /* request variable part size */
38 size_t reply_size; /* reply variable part maximum size */
41 struct reply_header
43 unsigned int error; /* error result */
44 size_t reply_size; /* reply variable part size */
47 /* placeholder structure for the maximum allowed request size */
48 /* this is used to construct the generic_request union */
49 struct request_max_size
51 int pad[16]; /* the max request size is 16 ints */
54 typedef void *obj_handle_t;
55 typedef void *user_handle_t;
56 typedef unsigned short atom_t;
57 typedef unsigned int process_id_t;
58 typedef unsigned int thread_id_t;
60 #define FIRST_USER_HANDLE 0x0020 /* first possible value for low word of user handle */
61 #define LAST_USER_HANDLE 0xffef /* last possible value for low word of user handle */
64 /* definitions of the event data depending on the event code */
65 struct debug_event_exception
67 EXCEPTION_RECORD record; /* exception record */
68 int first; /* first chance exception? */
70 struct debug_event_create_thread
72 obj_handle_t handle; /* handle to the new thread */
73 void *teb; /* thread teb (in debugged process address space) */
74 void *start; /* thread startup routine */
76 struct debug_event_create_process
78 obj_handle_t file; /* handle to the process exe file */
79 obj_handle_t process; /* handle to the new process */
80 obj_handle_t thread; /* handle to the new thread */
81 void *base; /* base of executable image */
82 int dbg_offset; /* offset of debug info in file */
83 int dbg_size; /* size of debug info */
84 void *teb; /* thread teb (in debugged process address space) */
85 void *start; /* thread startup routine */
86 void *name; /* image name (optional) */
87 int unicode; /* is it Unicode? */
89 struct debug_event_exit
91 int exit_code; /* thread or process exit code */
93 struct debug_event_load_dll
95 obj_handle_t handle; /* file handle for the dll */
96 void *base; /* base address of the dll */
97 int dbg_offset; /* offset of debug info in file */
98 int dbg_size; /* size of debug info */
99 void *name; /* image name (optional) */
100 int unicode; /* is it Unicode? */
102 struct debug_event_unload_dll
104 void *base; /* base address of the dll */
106 struct debug_event_output_string
108 void *string; /* string to display (in debugged process address space) */
109 int unicode; /* is it Unicode? */
110 int length; /* string length */
112 struct debug_event_rip_info
114 int error; /* ??? */
115 int type; /* ??? */
117 union debug_event_data
119 struct debug_event_exception exception;
120 struct debug_event_create_thread create_thread;
121 struct debug_event_create_process create_process;
122 struct debug_event_exit exit;
123 struct debug_event_load_dll load_dll;
124 struct debug_event_unload_dll unload_dll;
125 struct debug_event_output_string output_string;
126 struct debug_event_rip_info rip_info;
129 /* debug event data */
130 typedef struct
132 int code; /* event code */
133 union debug_event_data info; /* event information */
134 } debug_event_t;
136 /* structure used in sending an fd from client to server */
137 struct send_fd
139 thread_id_t tid; /* thread id */
140 int fd; /* file descriptor on client-side */
143 /* structure sent by the server on the wait fifo */
144 struct wake_up_reply
146 void *cookie; /* magic cookie that was passed in select_request */
147 int signaled; /* wait result */
150 /* structure for absolute timeouts */
151 typedef struct
153 int sec; /* seconds since Unix epoch */
154 int usec; /* microseconds */
155 } abs_time_t;
157 /* structure returned in the list of window properties */
158 typedef struct
160 atom_t atom; /* property atom */
161 short string; /* was atom a string originally? */
162 obj_handle_t handle; /* handle stored in property */
163 } property_data_t;
165 /* structure to specify window rectangles */
166 typedef struct
168 int left;
169 int top;
170 int right;
171 int bottom;
172 } rectangle_t;
174 /* structure for console char/attribute info */
175 typedef struct
177 WCHAR ch;
178 unsigned short attr;
179 } char_info_t;
181 #define MAX_ACL_LEN 65535
183 struct security_descriptor
185 unsigned int control; /* SE_ flags */
186 size_t owner_len;
187 size_t group_len;
188 size_t sacl_len;
189 size_t dacl_len;
190 /* VARARGS(owner,SID); */
191 /* VARARGS(group,SID); */
192 /* VARARGS(sacl,ACL); */
193 /* VARARGS(dacl,ACL); */
196 /****************************************************************/
197 /* Request declarations */
199 /* Create a new process from the context of the parent */
200 @REQ(new_process)
201 int inherit_all; /* inherit all handles from parent */
202 unsigned int create_flags; /* creation flags */
203 int unix_pid; /* Unix pid of new process */
204 obj_handle_t exe_file; /* file handle for main exe */
205 obj_handle_t hstdin; /* handle for stdin */
206 obj_handle_t hstdout; /* handle for stdout */
207 obj_handle_t hstderr; /* handle for stderr */
208 VARARG(info,startup_info); /* startup information */
209 VARARG(env,unicode_str); /* environment for new process */
210 @REPLY
211 obj_handle_t info; /* new process info handle */
212 @END
215 /* Retrieve information about a newly started process */
216 @REQ(get_new_process_info)
217 obj_handle_t info; /* info handle returned from new_process_request */
218 unsigned int process_access; /* access rights for process object */
219 unsigned int process_attr; /* attributes for process object */
220 unsigned int thread_access; /* access rights for thread object */
221 unsigned int thread_attr; /* attributes for thread object */
222 @REPLY
223 process_id_t pid; /* process id */
224 obj_handle_t phandle; /* process handle (in the current process) */
225 thread_id_t tid; /* thread id */
226 obj_handle_t thandle; /* thread handle (in the current process) */
227 int success; /* did the process start successfully? */
228 @END
231 /* Create a new thread from the context of the parent */
232 @REQ(new_thread)
233 unsigned int access; /* wanted access rights */
234 unsigned int attributes; /* object attributes */
235 int suspend; /* new thread should be suspended on creation */
236 int request_fd; /* fd for request pipe */
237 @REPLY
238 thread_id_t tid; /* thread id */
239 obj_handle_t handle; /* thread handle (in the current process) */
240 @END
243 /* Retrieve the new process startup info */
244 @REQ(get_startup_info)
245 @REPLY
246 unsigned int create_flags; /* creation flags */
247 obj_handle_t exe_file; /* file handle for main exe */
248 obj_handle_t hstdin; /* handle for stdin */
249 obj_handle_t hstdout; /* handle for stdout */
250 obj_handle_t hstderr; /* handle for stderr */
251 VARARG(info,startup_info); /* startup information */
252 VARARG(env,unicode_str); /* environment */
253 @END
256 /* Signal the end of the process initialization */
257 @REQ(init_process_done)
258 void* module; /* main module base address */
259 size_t module_size; /* main module size */
260 void* entry; /* process entry point */
261 void* name; /* ptr to ptr to name (in process addr space) */
262 obj_handle_t exe_file; /* file handle for main exe */
263 int gui; /* is it a GUI process? */
264 VARARG(filename,unicode_str); /* file name of main exe */
265 @END
268 /* Initialize a thread; called from the child after fork()/clone() */
269 @REQ(init_thread)
270 int unix_pid; /* Unix pid of new thread */
271 int unix_tid; /* Unix tid of new thread */
272 void* teb; /* TEB of new thread (in thread address space) */
273 void* peb; /* address of PEB (in thread address space) */
274 void* entry; /* thread entry point (in thread address space) */
275 void* ldt_copy; /* address of LDT copy (in thread address space) */
276 int reply_fd; /* fd for reply pipe */
277 int wait_fd; /* fd for blocking calls pipe */
278 int debug_level; /* new debug level */
279 @REPLY
280 process_id_t pid; /* process id of the new thread's process */
281 thread_id_t tid; /* thread id of the new thread */
282 size_t info_size; /* total size of startup info */
283 time_t server_start; /* server start time */
284 int version; /* protocol version */
285 @END
288 /* Terminate a process */
289 @REQ(terminate_process)
290 obj_handle_t handle; /* process handle to terminate */
291 int exit_code; /* process exit code */
292 @REPLY
293 int self; /* suicide? */
294 @END
297 /* Terminate a thread */
298 @REQ(terminate_thread)
299 obj_handle_t handle; /* thread handle to terminate */
300 int exit_code; /* thread exit code */
301 @REPLY
302 int self; /* suicide? */
303 int last; /* last thread in this process? */
304 @END
307 /* Retrieve information about a process */
308 @REQ(get_process_info)
309 obj_handle_t handle; /* process handle */
310 @REPLY
311 process_id_t pid; /* server process id */
312 process_id_t ppid; /* server process id of parent */
313 int exit_code; /* process exit code */
314 int priority; /* priority class */
315 int affinity; /* process affinity mask */
316 void* peb; /* PEB address in process address space */
317 @END
320 /* Set a process informations */
321 @REQ(set_process_info)
322 obj_handle_t handle; /* process handle */
323 int mask; /* setting mask (see below) */
324 int priority; /* priority class */
325 int affinity; /* affinity mask */
326 @END
327 #define SET_PROCESS_INFO_PRIORITY 0x01
328 #define SET_PROCESS_INFO_AFFINITY 0x02
331 /* Retrieve information about a thread */
332 @REQ(get_thread_info)
333 obj_handle_t handle; /* thread handle */
334 thread_id_t tid_in; /* thread id (optional) */
335 @REPLY
336 process_id_t pid; /* server process id */
337 thread_id_t tid; /* server thread id */
338 void* teb; /* thread teb pointer */
339 int exit_code; /* thread exit code */
340 int priority; /* thread priority level */
341 int affinity; /* thread affinity mask */
342 time_t creation_time; /* thread creation time */
343 time_t exit_time; /* thread exit time */
344 @END
347 /* Set a thread informations */
348 @REQ(set_thread_info)
349 obj_handle_t handle; /* thread handle */
350 int mask; /* setting mask (see below) */
351 int priority; /* priority class */
352 int affinity; /* affinity mask */
353 obj_handle_t token; /* impersonation token */
354 @END
355 #define SET_THREAD_INFO_PRIORITY 0x01
356 #define SET_THREAD_INFO_AFFINITY 0x02
357 #define SET_THREAD_INFO_TOKEN 0x04
360 /* Retrieve information about a module */
361 @REQ(get_dll_info)
362 obj_handle_t handle; /* process handle */
363 void* base_address; /* base address of module */
364 @REPLY
365 size_t size; /* module size */
366 void* entry_point;
367 VARARG(filename,unicode_str); /* file name of module */
368 @END
371 /* Suspend a thread */
372 @REQ(suspend_thread)
373 obj_handle_t handle; /* thread handle */
374 @REPLY
375 int count; /* new suspend count */
376 @END
379 /* Resume a thread */
380 @REQ(resume_thread)
381 obj_handle_t handle; /* thread handle */
382 @REPLY
383 int count; /* new suspend count */
384 @END
387 /* Notify the server that a dll has been loaded */
388 @REQ(load_dll)
389 obj_handle_t handle; /* file handle */
390 void* base; /* base address */
391 size_t size; /* dll size */
392 int dbg_offset; /* debug info offset */
393 int dbg_size; /* debug info size */
394 void* name; /* ptr to ptr to name (in process addr space) */
395 VARARG(filename,unicode_str); /* file name of dll */
396 @END
399 /* Notify the server that a dll is being unloaded */
400 @REQ(unload_dll)
401 void* base; /* base address */
402 @END
405 /* Queue an APC for a thread */
406 @REQ(queue_apc)
407 obj_handle_t handle; /* thread handle */
408 int user; /* user or system apc? */
409 void* func; /* function to call */
410 void* arg1; /* params for function to call */
411 void* arg2;
412 void* arg3;
413 @END
416 /* Get next APC to call */
417 @REQ(get_apc)
418 int alertable; /* is thread alertable? */
419 @REPLY
420 void* func; /* function to call */
421 int type; /* function type */
422 void* arg1; /* function arguments */
423 void* arg2;
424 void* arg3;
425 @END
426 enum apc_type { APC_NONE, APC_USER, APC_TIMER, APC_ASYNC_IO };
429 /* Close a handle for the current process */
430 @REQ(close_handle)
431 obj_handle_t handle; /* handle to close */
432 @REPLY
433 int fd; /* associated fd to close */
434 @END
437 /* Set a handle information */
438 @REQ(set_handle_info)
439 obj_handle_t handle; /* handle we are interested in */
440 int flags; /* new handle flags */
441 int mask; /* mask for flags to set */
442 @REPLY
443 int old_flags; /* old flag value */
444 @END
447 /* Duplicate a handle */
448 @REQ(dup_handle)
449 obj_handle_t src_process; /* src process handle */
450 obj_handle_t src_handle; /* src handle to duplicate */
451 obj_handle_t dst_process; /* dst process handle */
452 unsigned int access; /* wanted access rights */
453 unsigned int attributes; /* object attributes */
454 unsigned int options; /* duplicate options (see below) */
455 @REPLY
456 obj_handle_t handle; /* duplicated handle in dst process */
457 int fd; /* associated fd to close */
458 @END
459 #define DUP_HANDLE_CLOSE_SOURCE DUPLICATE_CLOSE_SOURCE
460 #define DUP_HANDLE_SAME_ACCESS DUPLICATE_SAME_ACCESS
461 #define DUP_HANDLE_MAKE_GLOBAL 0x80000000 /* Not a Windows flag */
464 /* Open a handle to a process */
465 @REQ(open_process)
466 process_id_t pid; /* process id to open */
467 unsigned int access; /* wanted access rights */
468 unsigned int attributes; /* object attributes */
469 @REPLY
470 obj_handle_t handle; /* handle to the process */
471 @END
474 /* Open a handle to a thread */
475 @REQ(open_thread)
476 thread_id_t tid; /* thread id to open */
477 unsigned int access; /* wanted access rights */
478 unsigned int attributes; /* object attributes */
479 @REPLY
480 obj_handle_t handle; /* handle to the thread */
481 @END
484 /* Wait for handles */
485 @REQ(select)
486 int flags; /* wait flags (see below) */
487 void* cookie; /* magic cookie to return to client */
488 obj_handle_t signal; /* object to signal (0 if none) */
489 abs_time_t timeout; /* absolute timeout */
490 VARARG(handles,handles); /* handles to select on */
491 @END
492 #define SELECT_ALL 1
493 #define SELECT_ALERTABLE 2
494 #define SELECT_INTERRUPTIBLE 4
495 #define SELECT_TIMEOUT 8
498 /* Create an event */
499 @REQ(create_event)
500 unsigned int access; /* wanted access rights */
501 unsigned int attributes; /* object attributes */
502 obj_handle_t rootdir; /* root directory */
503 int manual_reset; /* manual reset event */
504 int initial_state; /* initial state of the event */
505 VARARG(name,unicode_str); /* object name */
506 @REPLY
507 obj_handle_t handle; /* handle to the event */
508 @END
510 /* Event operation */
511 @REQ(event_op)
512 obj_handle_t handle; /* handle to event */
513 int op; /* event operation (see below) */
514 @END
515 enum event_op { PULSE_EVENT, SET_EVENT, RESET_EVENT };
518 /* Open an event */
519 @REQ(open_event)
520 unsigned int access; /* wanted access rights */
521 unsigned int attributes; /* object attributes */
522 obj_handle_t rootdir; /* root directory */
523 VARARG(name,unicode_str); /* object name */
524 @REPLY
525 obj_handle_t handle; /* handle to the event */
526 @END
529 /* Create a mutex */
530 @REQ(create_mutex)
531 unsigned int access; /* wanted access rights */
532 unsigned int attributes; /* object attributes */
533 obj_handle_t rootdir; /* root directory */
534 int owned; /* initially owned? */
535 VARARG(name,unicode_str); /* object name */
536 @REPLY
537 obj_handle_t handle; /* handle to the mutex */
538 @END
541 /* Release a mutex */
542 @REQ(release_mutex)
543 obj_handle_t handle; /* handle to the mutex */
544 @REPLY
545 unsigned int prev_count; /* value of internal counter, before release */
546 @END
549 /* Open a mutex */
550 @REQ(open_mutex)
551 unsigned int access; /* wanted access rights */
552 unsigned int attributes; /* object attributes */
553 obj_handle_t rootdir; /* root directory */
554 VARARG(name,unicode_str); /* object name */
555 @REPLY
556 obj_handle_t handle; /* handle to the mutex */
557 @END
560 /* Create a semaphore */
561 @REQ(create_semaphore)
562 unsigned int access; /* wanted access rights */
563 unsigned int attributes; /* object attributes */
564 obj_handle_t rootdir; /* root directory */
565 unsigned int initial; /* initial count */
566 unsigned int max; /* maximum count */
567 VARARG(name,unicode_str); /* object name */
568 @REPLY
569 obj_handle_t handle; /* handle to the semaphore */
570 @END
573 /* Release a semaphore */
574 @REQ(release_semaphore)
575 obj_handle_t handle; /* handle to the semaphore */
576 unsigned int count; /* count to add to semaphore */
577 @REPLY
578 unsigned int prev_count; /* previous semaphore count */
579 @END
582 /* Open a semaphore */
583 @REQ(open_semaphore)
584 unsigned int access; /* wanted access rights */
585 unsigned int attributes; /* object attributes */
586 obj_handle_t rootdir; /* root directory */
587 VARARG(name,unicode_str); /* object name */
588 @REPLY
589 obj_handle_t handle; /* handle to the semaphore */
590 @END
593 /* Create a file */
594 @REQ(create_file)
595 unsigned int access; /* wanted access rights */
596 unsigned int attributes; /* object attributes */
597 unsigned int sharing; /* sharing flags */
598 int create; /* file create action */
599 unsigned int options; /* file options */
600 unsigned int attrs; /* file attributes for creation */
601 VARARG(filename,string); /* file name */
602 @REPLY
603 obj_handle_t handle; /* handle to the file */
604 @END
607 /* Open a file object */
608 @REQ(open_file_object)
609 unsigned int access; /* wanted access rights */
610 unsigned int attributes; /* open attributes */
611 obj_handle_t rootdir; /* root directory */
612 unsigned int sharing; /* sharing flags */
613 VARARG(filename,unicode_str); /* file name */
614 @REPLY
615 obj_handle_t handle; /* handle to the file */
616 @END
619 /* Allocate a file handle for a Unix fd */
620 @REQ(alloc_file_handle)
621 unsigned int access; /* wanted access rights */
622 unsigned int attributes; /* object attributes */
623 int fd; /* file descriptor on the client side */
624 @REPLY
625 obj_handle_t handle; /* handle to the file */
626 @END
629 /* Get a Unix fd to access a file */
630 @REQ(get_handle_fd)
631 obj_handle_t handle; /* handle to the file */
632 unsigned int access; /* wanted access rights */
633 @REPLY
634 int fd; /* file descriptor */
635 int removable; /* is device removable? (-1 if unknown) */
636 int flags; /* file read/write flags (see below) */
637 @END
638 #define FD_FLAG_OVERLAPPED 0x01 /* fd opened in overlapped mode */
639 #define FD_FLAG_TIMEOUT 0x02 /* read/write is synchronous */
640 #define FD_FLAG_RECV_SHUTDOWN 0x04
641 #define FD_FLAG_SEND_SHUTDOWN 0x08
642 #define FD_FLAG_AVAILABLE 0x10 /* in overlap read/write operation,
643 * only handle available data (don't wait) */
645 /* Set the cached file descriptor of a handle */
646 @REQ(set_handle_fd)
647 obj_handle_t handle; /* handle we are interested in */
648 int fd; /* file descriptor */
649 int removable; /* is device removable? (-1 if unknown) */
650 @REPLY
651 int cur_fd; /* current file descriptor */
652 @END
655 /* Flush a file buffers */
656 @REQ(flush_file)
657 obj_handle_t handle; /* handle to the file */
658 @REPLY
659 obj_handle_t event; /* event set when finished */
660 @END
663 /* Lock a region of a file */
664 @REQ(lock_file)
665 obj_handle_t handle; /* handle to the file */
666 unsigned int offset_low; /* offset of start of lock */
667 unsigned int offset_high; /* offset of start of lock */
668 unsigned int count_low; /* count of bytes to lock */
669 unsigned int count_high; /* count of bytes to lock */
670 int shared; /* shared or exclusive lock? */
671 int wait; /* do we want to wait? */
672 @REPLY
673 obj_handle_t handle; /* handle to wait on */
674 int overlapped; /* is it an overlapped I/O handle? */
675 @END
678 /* Unlock a region of a file */
679 @REQ(unlock_file)
680 obj_handle_t handle; /* handle to the file */
681 unsigned int offset_low; /* offset of start of unlock */
682 unsigned int offset_high; /* offset of start of unlock */
683 unsigned int count_low; /* count of bytes to unlock */
684 unsigned int count_high; /* count of bytes to unlock */
685 @END
688 /* Get ready to unmount a Unix device */
689 @REQ(unmount_device)
690 obj_handle_t handle; /* handle to a file on the device */
691 @END
694 /* Create a socket */
695 @REQ(create_socket)
696 unsigned int access; /* wanted access rights */
697 unsigned int attributes; /* object attributes */
698 int family; /* family, see socket manpage */
699 int type; /* type, see socket manpage */
700 int protocol; /* protocol, see socket manpage */
701 unsigned int flags; /* socket flags */
702 @REPLY
703 obj_handle_t handle; /* handle to the new socket */
704 @END
707 /* Accept a socket */
708 @REQ(accept_socket)
709 obj_handle_t lhandle; /* handle to the listening socket */
710 unsigned int access; /* wanted access rights */
711 unsigned int attributes; /* object attributes */
712 @REPLY
713 obj_handle_t handle; /* handle to the new socket */
714 @END
717 /* Set socket event parameters */
718 @REQ(set_socket_event)
719 obj_handle_t handle; /* handle to the socket */
720 unsigned int mask; /* event mask */
721 obj_handle_t event; /* event object */
722 user_handle_t window; /* window to send the message to */
723 unsigned int msg; /* message to send */
724 @END
727 /* Get socket event parameters */
728 @REQ(get_socket_event)
729 obj_handle_t handle; /* handle to the socket */
730 int service; /* clear pending? */
731 obj_handle_t c_event; /* event to clear */
732 @REPLY
733 unsigned int mask; /* event mask */
734 unsigned int pmask; /* pending events */
735 unsigned int state; /* status bits */
736 VARARG(errors,ints); /* event errors */
737 @END
740 /* Reenable pending socket events */
741 @REQ(enable_socket_event)
742 obj_handle_t handle; /* handle to the socket */
743 unsigned int mask; /* events to re-enable */
744 unsigned int sstate; /* status bits to set */
745 unsigned int cstate; /* status bits to clear */
746 @END
748 @REQ(set_socket_deferred)
749 obj_handle_t handle; /* handle to the socket */
750 obj_handle_t deferred; /* handle to the socket for which accept() is deferred */
751 @END
753 /* Allocate a console (only used by a console renderer) */
754 @REQ(alloc_console)
755 unsigned int access; /* wanted access rights */
756 unsigned int attributes; /* object attributes */
757 process_id_t pid; /* pid of process which shall be attached to the console */
758 @REPLY
759 obj_handle_t handle_in; /* handle to console input */
760 obj_handle_t event; /* handle to renderer events change notification */
761 @END
764 /* Free the console of the current process */
765 @REQ(free_console)
766 @END
769 #define CONSOLE_RENDERER_NONE_EVENT 0x00
770 #define CONSOLE_RENDERER_TITLE_EVENT 0x01
771 #define CONSOLE_RENDERER_ACTIVE_SB_EVENT 0x02
772 #define CONSOLE_RENDERER_SB_RESIZE_EVENT 0x03
773 #define CONSOLE_RENDERER_UPDATE_EVENT 0x04
774 #define CONSOLE_RENDERER_CURSOR_POS_EVENT 0x05
775 #define CONSOLE_RENDERER_CURSOR_GEOM_EVENT 0x06
776 #define CONSOLE_RENDERER_DISPLAY_EVENT 0x07
777 #define CONSOLE_RENDERER_EXIT_EVENT 0x08
778 struct console_renderer_event
780 short event;
781 union
783 struct update
785 short top;
786 short bottom;
787 } update;
788 struct resize
790 short width;
791 short height;
792 } resize;
793 struct cursor_pos
795 short x;
796 short y;
797 } cursor_pos;
798 struct cursor_geom
800 short visible;
801 short size;
802 } cursor_geom;
803 struct display
805 short left;
806 short top;
807 short width;
808 short height;
809 } display;
810 } u;
813 /* retrieve console events for the renderer */
814 @REQ(get_console_renderer_events)
815 obj_handle_t handle; /* handle to console input events */
816 @REPLY
817 VARARG(data,bytes); /* the various console_renderer_events */
818 @END
821 /* Open a handle to the process console */
822 @REQ(open_console)
823 int from; /* 0 (resp 1) input (resp output) of current process console */
824 /* otherwise console_in handle to get active screen buffer? */
825 unsigned int access; /* wanted access rights */
826 unsigned int attributes; /* object attributes */
827 int share; /* share mask (only for output handles) */
828 @REPLY
829 obj_handle_t handle; /* handle to the console */
830 @END
833 /* Get the input queue wait event */
834 @REQ(get_console_wait_event)
835 @REPLY
836 obj_handle_t handle;
837 @END
839 /* Get a console mode (input or output) */
840 @REQ(get_console_mode)
841 obj_handle_t handle; /* handle to the console */
842 @REPLY
843 int mode; /* console mode */
844 @END
847 /* Set a console mode (input or output) */
848 @REQ(set_console_mode)
849 obj_handle_t handle; /* handle to the console */
850 int mode; /* console mode */
851 @END
854 /* Set info about a console (input only) */
855 @REQ(set_console_input_info)
856 obj_handle_t handle; /* handle to console input, or 0 for process' console */
857 int mask; /* setting mask (see below) */
858 obj_handle_t active_sb; /* active screen buffer */
859 int history_mode; /* whether we duplicate lines in history */
860 int history_size; /* number of lines in history */
861 int edition_mode; /* index to the edition mode flavors */
862 VARARG(title,unicode_str); /* console title */
863 @END
864 #define SET_CONSOLE_INPUT_INFO_ACTIVE_SB 0x01
865 #define SET_CONSOLE_INPUT_INFO_TITLE 0x02
866 #define SET_CONSOLE_INPUT_INFO_HISTORY_MODE 0x04
867 #define SET_CONSOLE_INPUT_INFO_HISTORY_SIZE 0x08
868 #define SET_CONSOLE_INPUT_INFO_EDITION_MODE 0x10
871 /* Get info about a console (input only) */
872 @REQ(get_console_input_info)
873 obj_handle_t handle; /* handle to console input, or 0 for process' console */
874 @REPLY
875 int history_mode; /* whether we duplicate lines in history */
876 int history_size; /* number of lines in history */
877 int history_index; /* number of used lines in history */
878 int edition_mode; /* index to the edition mode flavors */
879 VARARG(title,unicode_str); /* console title */
880 @END
883 /* appends a string to console's history */
884 @REQ(append_console_input_history)
885 obj_handle_t handle; /* handle to console input, or 0 for process' console */
886 VARARG(line,unicode_str); /* line to add */
887 @END
890 /* appends a string to console's history */
891 @REQ(get_console_input_history)
892 obj_handle_t handle; /* handle to console input, or 0 for process' console */
893 int index; /* index to get line from */
894 @REPLY
895 int total; /* total length of line in Unicode chars */
896 VARARG(line,unicode_str); /* line to add */
897 @END
900 /* creates a new screen buffer on process' console */
901 @REQ(create_console_output)
902 obj_handle_t handle_in; /* handle to console input, or 0 for process' console */
903 unsigned int access; /* wanted access rights */
904 unsigned int attributes; /* object attributes */
905 unsigned int share; /* sharing credentials */
906 @REPLY
907 obj_handle_t handle_out; /* handle to the screen buffer */
908 @END
911 /* Set info about a console (output only) */
912 @REQ(set_console_output_info)
913 obj_handle_t handle; /* handle to the console */
914 int mask; /* setting mask (see below) */
915 short int cursor_size; /* size of cursor (percentage filled) */
916 short int cursor_visible;/* cursor visibility flag */
917 short int cursor_x; /* position of cursor (x, y) */
918 short int cursor_y;
919 short int width; /* width of the screen buffer */
920 short int height; /* height of the screen buffer */
921 short int attr; /* default attribute */
922 short int win_left; /* window actually displayed by renderer */
923 short int win_top; /* the rect area is expressed withing the */
924 short int win_right; /* boundaries of the screen buffer */
925 short int win_bottom;
926 short int max_width; /* maximum size (width x height) for the window */
927 short int max_height;
928 @END
929 #define SET_CONSOLE_OUTPUT_INFO_CURSOR_GEOM 0x01
930 #define SET_CONSOLE_OUTPUT_INFO_CURSOR_POS 0x02
931 #define SET_CONSOLE_OUTPUT_INFO_SIZE 0x04
932 #define SET_CONSOLE_OUTPUT_INFO_ATTR 0x08
933 #define SET_CONSOLE_OUTPUT_INFO_DISPLAY_WINDOW 0x10
934 #define SET_CONSOLE_OUTPUT_INFO_MAX_SIZE 0x20
937 /* Get info about a console (output only) */
938 @REQ(get_console_output_info)
939 obj_handle_t handle; /* handle to the console */
940 @REPLY
941 short int cursor_size; /* size of cursor (percentage filled) */
942 short int cursor_visible;/* cursor visibility flag */
943 short int cursor_x; /* position of cursor (x, y) */
944 short int cursor_y;
945 short int width; /* width of the screen buffer */
946 short int height; /* height of the screen buffer */
947 short int attr; /* default attribute */
948 short int win_left; /* window actually displayed by renderer */
949 short int win_top; /* the rect area is expressed withing the */
950 short int win_right; /* boundaries of the screen buffer */
951 short int win_bottom;
952 short int max_width; /* maximum size (width x height) for the window */
953 short int max_height;
954 @END
956 /* Add input records to a console input queue */
957 @REQ(write_console_input)
958 obj_handle_t handle; /* handle to the console input */
959 VARARG(rec,input_records); /* input records */
960 @REPLY
961 int written; /* number of records written */
962 @END
965 /* Fetch input records from a console input queue */
966 @REQ(read_console_input)
967 obj_handle_t handle; /* handle to the console input */
968 int flush; /* flush the retrieved records from the queue? */
969 @REPLY
970 int read; /* number of records read */
971 VARARG(rec,input_records); /* input records */
972 @END
975 /* write data (chars and/or attributes) in a screen buffer */
976 @REQ(write_console_output)
977 obj_handle_t handle; /* handle to the console output */
978 int x; /* position where to start writing */
979 int y;
980 int mode; /* char info (see below) */
981 int wrap; /* wrap around at end of line? */
982 VARARG(data,bytes); /* info to write */
983 @REPLY
984 int written; /* number of char infos actually written */
985 int width; /* width of screen buffer */
986 int height; /* height of screen buffer */
987 @END
988 enum char_info_mode
990 CHAR_INFO_MODE_TEXT, /* characters only */
991 CHAR_INFO_MODE_ATTR, /* attributes only */
992 CHAR_INFO_MODE_TEXTATTR, /* both characters and attributes */
993 CHAR_INFO_MODE_TEXTSTDATTR /* characters but use standard attributes */
997 /* fill a screen buffer with constant data (chars and/or attributes) */
998 @REQ(fill_console_output)
999 obj_handle_t handle; /* handle to the console output */
1000 int x; /* position where to start writing */
1001 int y;
1002 int mode; /* char info mode */
1003 int count; /* number to write */
1004 int wrap; /* wrap around at end of line? */
1005 char_info_t data; /* data to write */
1006 @REPLY
1007 int written; /* number of char infos actually written */
1008 @END
1011 /* read data (chars and/or attributes) from a screen buffer */
1012 @REQ(read_console_output)
1013 obj_handle_t handle; /* handle to the console output */
1014 int x; /* position (x,y) where to start reading */
1015 int y;
1016 int mode; /* char info mode */
1017 int wrap; /* wrap around at end of line? */
1018 @REPLY
1019 int width; /* width of screen buffer */
1020 int height; /* height of screen buffer */
1021 VARARG(data,bytes);
1022 @END
1025 /* move a rect (of data) in screen buffer content */
1026 @REQ(move_console_output)
1027 obj_handle_t handle; /* handle to the console output */
1028 short int x_src; /* position (x, y) of rect to start moving from */
1029 short int y_src;
1030 short int x_dst; /* position (x, y) of rect to move to */
1031 short int y_dst;
1032 short int w; /* size of the rect (width, height) to move */
1033 short int h;
1034 @END
1037 /* Sends a signal to a process group */
1038 @REQ(send_console_signal)
1039 int signal; /* the signal to send */
1040 process_id_t group_id; /* the group to send the signal to */
1041 @END
1044 /* Create a change notification */
1045 @REQ(create_change_notification)
1046 unsigned int access; /* wanted access rights */
1047 unsigned int attributes; /* object attributes */
1048 obj_handle_t handle; /* handle to the directory */
1049 int subtree; /* watch all the subtree */
1050 unsigned int filter; /* notification filter */
1051 @REPLY
1052 obj_handle_t handle; /* handle to the change notification */
1053 @END
1056 /* Move to the next change notification */
1057 @REQ(next_change_notification)
1058 obj_handle_t handle; /* handle to the change notification */
1059 @END
1061 /* Create a file mapping */
1062 @REQ(create_mapping)
1063 unsigned int access; /* wanted access rights */
1064 unsigned int attributes; /* object attributes */
1065 obj_handle_t rootdir; /* root directory */
1066 int size_high; /* mapping size */
1067 int size_low; /* mapping size */
1068 int protect; /* protection flags (see below) */
1069 obj_handle_t file_handle; /* file handle */
1070 VARARG(name,unicode_str); /* object name */
1071 @REPLY
1072 obj_handle_t handle; /* handle to the mapping */
1073 @END
1074 /* protection flags */
1075 #define VPROT_READ 0x01
1076 #define VPROT_WRITE 0x02
1077 #define VPROT_EXEC 0x04
1078 #define VPROT_WRITECOPY 0x08
1079 #define VPROT_GUARD 0x10
1080 #define VPROT_NOCACHE 0x20
1081 #define VPROT_COMMITTED 0x40
1082 #define VPROT_IMAGE 0x80
1085 /* Open a mapping */
1086 @REQ(open_mapping)
1087 unsigned int access; /* wanted access rights */
1088 unsigned int attributes; /* object attributes */
1089 obj_handle_t rootdir; /* root directory */
1090 VARARG(name,unicode_str); /* object name */
1091 @REPLY
1092 obj_handle_t handle; /* handle to the mapping */
1093 @END
1096 /* Get information about a file mapping */
1097 @REQ(get_mapping_info)
1098 obj_handle_t handle; /* handle to the mapping */
1099 @REPLY
1100 int size_high; /* mapping size */
1101 int size_low; /* mapping size */
1102 int protect; /* protection flags */
1103 int header_size; /* header size (for VPROT_IMAGE mapping) */
1104 void* base; /* default base addr (for VPROT_IMAGE mapping) */
1105 obj_handle_t shared_file; /* shared mapping file handle */
1106 int shared_size; /* shared mapping size */
1107 @END
1110 #define SNAP_HEAPLIST 0x00000001
1111 #define SNAP_PROCESS 0x00000002
1112 #define SNAP_THREAD 0x00000004
1113 #define SNAP_MODULE 0x00000008
1114 /* Create a snapshot */
1115 @REQ(create_snapshot)
1116 unsigned int attributes; /* object attributes */
1117 int flags; /* snapshot flags (SNAP_*) */
1118 process_id_t pid; /* process id */
1119 @REPLY
1120 obj_handle_t handle; /* handle to the snapshot */
1121 @END
1124 /* Get the next process from a snapshot */
1125 @REQ(next_process)
1126 obj_handle_t handle; /* handle to the snapshot */
1127 int reset; /* reset snapshot position? */
1128 @REPLY
1129 int count; /* process usage count */
1130 process_id_t pid; /* process id */
1131 process_id_t ppid; /* parent process id */
1132 void* heap; /* heap base */
1133 void* module; /* main module */
1134 int threads; /* number of threads */
1135 int priority; /* process priority */
1136 int handles; /* number of handles */
1137 VARARG(filename,unicode_str); /* file name of main exe */
1138 @END
1141 /* Get the next thread from a snapshot */
1142 @REQ(next_thread)
1143 obj_handle_t handle; /* handle to the snapshot */
1144 int reset; /* reset snapshot position? */
1145 @REPLY
1146 int count; /* thread usage count */
1147 process_id_t pid; /* process id */
1148 thread_id_t tid; /* thread id */
1149 int base_pri; /* base priority */
1150 int delta_pri; /* delta priority */
1151 @END
1154 /* Get the next module from a snapshot */
1155 @REQ(next_module)
1156 obj_handle_t handle; /* handle to the snapshot */
1157 int reset; /* reset snapshot position? */
1158 @REPLY
1159 process_id_t pid; /* process id */
1160 void* base; /* module base address */
1161 size_t size; /* module size */
1162 VARARG(filename,unicode_str); /* file name of module */
1163 @END
1166 /* Wait for a debug event */
1167 @REQ(wait_debug_event)
1168 int get_handle; /* should we alloc a handle for waiting? */
1169 @REPLY
1170 process_id_t pid; /* process id */
1171 thread_id_t tid; /* thread id */
1172 obj_handle_t wait; /* wait handle if no event ready */
1173 VARARG(event,debug_event); /* debug event data */
1174 @END
1177 /* Queue an exception event */
1178 @REQ(queue_exception_event)
1179 int first; /* first chance exception? */
1180 VARARG(record,exc_event); /* thread context followed by exception record */
1181 @REPLY
1182 obj_handle_t handle; /* handle to the queued event */
1183 @END
1186 /* Retrieve the status of an exception event */
1187 @REQ(get_exception_status)
1188 obj_handle_t handle; /* handle to the queued event */
1189 @REPLY
1190 VARARG(context,context); /* modified thread context */
1191 @END
1194 /* Send an output string to the debugger */
1195 @REQ(output_debug_string)
1196 void* string; /* string to display (in debugged process address space) */
1197 int unicode; /* is it Unicode? */
1198 int length; /* string length */
1199 @END
1202 /* Continue a debug event */
1203 @REQ(continue_debug_event)
1204 process_id_t pid; /* process id to continue */
1205 thread_id_t tid; /* thread id to continue */
1206 int status; /* continuation status */
1207 @END
1210 /* Start/stop debugging an existing process */
1211 @REQ(debug_process)
1212 process_id_t pid; /* id of the process to debug */
1213 int attach; /* 1=attaching / 0=detaching from the process */
1214 @END
1217 /* Simulate a breakpoint in a process */
1218 @REQ(debug_break)
1219 obj_handle_t handle; /* process handle */
1220 @REPLY
1221 int self; /* was it the caller itself? */
1222 @END
1225 /* Set debugger kill on exit flag */
1226 @REQ(set_debugger_kill_on_exit)
1227 int kill_on_exit; /* 0=detach/1=kill debuggee when debugger dies */
1228 @END
1231 /* Read data from a process address space */
1232 @REQ(read_process_memory)
1233 obj_handle_t handle; /* process handle */
1234 void* addr; /* addr to read from */
1235 @REPLY
1236 VARARG(data,bytes); /* result data */
1237 @END
1240 /* Write data to a process address space */
1241 @REQ(write_process_memory)
1242 obj_handle_t handle; /* process handle */
1243 void* addr; /* addr to write to (must be int-aligned) */
1244 unsigned int first_mask; /* mask for first word */
1245 unsigned int last_mask; /* mask for last word */
1246 VARARG(data,bytes); /* data to write */
1247 @END
1250 /* Create a registry key */
1251 @REQ(create_key)
1252 obj_handle_t parent; /* handle to the parent key */
1253 unsigned int access; /* desired access rights */
1254 unsigned int attributes; /* object attributes */
1255 unsigned int options; /* creation options */
1256 time_t modif; /* last modification time */
1257 size_t namelen; /* length of key name in bytes */
1258 VARARG(name,unicode_str,namelen); /* key name */
1259 VARARG(class,unicode_str); /* class name */
1260 @REPLY
1261 obj_handle_t hkey; /* handle to the created key */
1262 int created; /* has it been newly created? */
1263 @END
1265 /* Open a registry key */
1266 @REQ(open_key)
1267 obj_handle_t parent; /* handle to the parent key */
1268 unsigned int access; /* desired access rights */
1269 unsigned int attributes; /* object attributes */
1270 VARARG(name,unicode_str); /* key name */
1271 @REPLY
1272 obj_handle_t hkey; /* handle to the open key */
1273 @END
1276 /* Delete a registry key */
1277 @REQ(delete_key)
1278 obj_handle_t hkey; /* handle to the key */
1279 @END
1282 /* Flush a registry key */
1283 @REQ(flush_key)
1284 obj_handle_t hkey; /* handle to the key */
1285 @END
1288 /* Enumerate registry subkeys */
1289 @REQ(enum_key)
1290 obj_handle_t hkey; /* handle to registry key */
1291 int index; /* index of subkey (or -1 for current key) */
1292 int info_class; /* requested information class */
1293 @REPLY
1294 int subkeys; /* number of subkeys */
1295 int max_subkey; /* longest subkey name */
1296 int max_class; /* longest class name */
1297 int values; /* number of values */
1298 int max_value; /* longest value name */
1299 int max_data; /* longest value data */
1300 time_t modif; /* last modification time */
1301 size_t total; /* total length needed for full name and class */
1302 size_t namelen; /* length of key name in bytes */
1303 VARARG(name,unicode_str,namelen); /* key name */
1304 VARARG(class,unicode_str); /* class name */
1305 @END
1308 /* Set a value of a registry key */
1309 @REQ(set_key_value)
1310 obj_handle_t hkey; /* handle to registry key */
1311 int type; /* value type */
1312 size_t namelen; /* length of value name in bytes */
1313 VARARG(name,unicode_str,namelen); /* value name */
1314 VARARG(data,bytes); /* value data */
1315 @END
1318 /* Retrieve the value of a registry key */
1319 @REQ(get_key_value)
1320 obj_handle_t hkey; /* handle to registry key */
1321 VARARG(name,unicode_str); /* value name */
1322 @REPLY
1323 int type; /* value type */
1324 size_t total; /* total length needed for data */
1325 VARARG(data,bytes); /* value data */
1326 @END
1329 /* Enumerate a value of a registry key */
1330 @REQ(enum_key_value)
1331 obj_handle_t hkey; /* handle to registry key */
1332 int index; /* value index */
1333 int info_class; /* requested information class */
1334 @REPLY
1335 int type; /* value type */
1336 size_t total; /* total length needed for full name and data */
1337 size_t namelen; /* length of value name in bytes */
1338 VARARG(name,unicode_str,namelen); /* value name */
1339 VARARG(data,bytes); /* value data */
1340 @END
1343 /* Delete a value of a registry key */
1344 @REQ(delete_key_value)
1345 obj_handle_t hkey; /* handle to registry key */
1346 VARARG(name,unicode_str); /* value name */
1347 @END
1350 /* Load a registry branch from a file */
1351 @REQ(load_registry)
1352 obj_handle_t hkey; /* root key to load to */
1353 obj_handle_t file; /* file to load from */
1354 VARARG(name,unicode_str); /* subkey name */
1355 @END
1358 /* UnLoad a registry branch from a file */
1359 @REQ(unload_registry)
1360 obj_handle_t hkey; /* root key to unload to */
1361 @END
1364 /* Save a registry branch to a file */
1365 @REQ(save_registry)
1366 obj_handle_t hkey; /* key to save */
1367 obj_handle_t file; /* file to save to */
1368 @END
1371 /* Add a registry key change notification */
1372 @REQ(set_registry_notification)
1373 obj_handle_t hkey; /* key to watch for changes */
1374 obj_handle_t event; /* event to set */
1375 int subtree; /* should we watch the whole subtree? */
1376 unsigned int filter; /* things to watch */
1377 @END
1380 /* Create a waitable timer */
1381 @REQ(create_timer)
1382 unsigned int access; /* wanted access rights */
1383 unsigned int attributes; /* object attributes */
1384 obj_handle_t rootdir; /* root directory */
1385 int manual; /* manual reset */
1386 VARARG(name,unicode_str); /* object name */
1387 @REPLY
1388 obj_handle_t handle; /* handle to the timer */
1389 @END
1392 /* Open a waitable timer */
1393 @REQ(open_timer)
1394 unsigned int access; /* wanted access rights */
1395 unsigned int attributes; /* object attributes */
1396 obj_handle_t rootdir; /* root directory */
1397 VARARG(name,unicode_str); /* object name */
1398 @REPLY
1399 obj_handle_t handle; /* handle to the timer */
1400 @END
1402 /* Set a waitable timer */
1403 @REQ(set_timer)
1404 obj_handle_t handle; /* handle to the timer */
1405 abs_time_t expire; /* next expiration absolute time */
1406 int period; /* timer period in ms */
1407 void* callback; /* callback function */
1408 void* arg; /* callback argument */
1409 @REPLY
1410 int signaled; /* was the timer signaled before this call ? */
1411 @END
1413 /* Cancel a waitable timer */
1414 @REQ(cancel_timer)
1415 obj_handle_t handle; /* handle to the timer */
1416 @REPLY
1417 int signaled; /* was the timer signaled before this calltime ? */
1418 @END
1420 /* Get information on a waitable timer */
1421 @REQ(get_timer_info)
1422 obj_handle_t handle; /* handle to the timer */
1423 @REPLY
1424 abs_time_t when; /* absolute time when the timer next expires */
1425 int signaled; /* is the timer signaled? */
1426 @END
1429 /* Retrieve the current context of a thread */
1430 @REQ(get_thread_context)
1431 obj_handle_t handle; /* thread handle */
1432 unsigned int flags; /* context flags */
1433 int suspend; /* if getting context during suspend */
1434 @REPLY
1435 VARARG(context,context); /* thread context */
1436 @END
1439 /* Set the current context of a thread */
1440 @REQ(set_thread_context)
1441 obj_handle_t handle; /* thread handle */
1442 unsigned int flags; /* context flags */
1443 int suspend; /* if setting context during suspend */
1444 VARARG(context,context); /* thread context */
1445 @REPLY
1446 int self; /* was it a handle to the current thread? */
1447 @END
1450 /* Fetch a selector entry for a thread */
1451 @REQ(get_selector_entry)
1452 obj_handle_t handle; /* thread handle */
1453 int entry; /* LDT entry */
1454 @REPLY
1455 unsigned int base; /* selector base */
1456 unsigned int limit; /* selector limit */
1457 unsigned char flags; /* selector flags */
1458 @END
1461 /* Add an atom */
1462 @REQ(add_atom)
1463 obj_handle_t table; /* which table to add atom to */
1464 VARARG(name,unicode_str); /* atom name */
1465 @REPLY
1466 atom_t atom; /* resulting atom */
1467 @END
1470 /* Delete an atom */
1471 @REQ(delete_atom)
1472 obj_handle_t table; /* which table to delete atom from */
1473 atom_t atom; /* atom handle */
1474 @END
1477 /* Find an atom */
1478 @REQ(find_atom)
1479 obj_handle_t table; /* which table to find atom from */
1480 VARARG(name,unicode_str); /* atom name */
1481 @REPLY
1482 atom_t atom; /* atom handle */
1483 @END
1486 /* Get information about an atom */
1487 @REQ(get_atom_information)
1488 obj_handle_t table; /* which table to find atom from */
1489 atom_t atom; /* atom handle */
1490 @REPLY
1491 int count; /* atom lock count */
1492 int pinned; /* whether the atom has been pinned */
1493 size_t total; /* actual length of atom name */
1494 VARARG(name,unicode_str); /* atom name */
1495 @END
1498 /* Set information about an atom */
1499 @REQ(set_atom_information)
1500 obj_handle_t table; /* which table to find atom from */
1501 atom_t atom; /* atom handle */
1502 int pinned; /* whether to bump atom information */
1503 @END
1506 /* Empty an atom table */
1507 @REQ(empty_atom_table)
1508 obj_handle_t table; /* which table to find atom from */
1509 int if_pinned; /* whether to delete pinned atoms */
1510 @END
1513 /* Init an atom table */
1514 @REQ(init_atom_table)
1515 int entries; /* number of entries (only for local) */
1516 @REPLY
1517 obj_handle_t table; /* handle to the atom table */
1518 @END
1521 /* Get the message queue of the current thread */
1522 @REQ(get_msg_queue)
1523 @REPLY
1524 obj_handle_t handle; /* handle to the queue */
1525 @END
1528 /* Set the current message queue wakeup mask */
1529 @REQ(set_queue_mask)
1530 unsigned int wake_mask; /* wakeup bits mask */
1531 unsigned int changed_mask; /* changed bits mask */
1532 int skip_wait; /* will we skip waiting if signaled? */
1533 @REPLY
1534 unsigned int wake_bits; /* current wake bits */
1535 unsigned int changed_bits; /* current changed bits */
1536 @END
1539 /* Get the current message queue status */
1540 @REQ(get_queue_status)
1541 int clear; /* should we clear the change bits? */
1542 @REPLY
1543 unsigned int wake_bits; /* wake bits */
1544 unsigned int changed_bits; /* changed bits since last time */
1545 @END
1548 /* Wait for a process to start waiting on input */
1549 @REQ(wait_input_idle)
1550 obj_handle_t handle; /* process handle */
1551 int timeout; /* timeout */
1552 @REPLY
1553 obj_handle_t event; /* handle to idle event */
1554 @END
1557 /* Send a message to a thread queue */
1558 @REQ(send_message)
1559 thread_id_t id; /* thread id */
1560 int type; /* message type (see below) */
1561 int flags; /* message flags (see below) */
1562 user_handle_t win; /* window handle */
1563 unsigned int msg; /* message code */
1564 unsigned int wparam; /* parameters */
1565 unsigned int lparam; /* parameters */
1566 int x; /* x position */
1567 int y; /* y position */
1568 unsigned int time; /* message time */
1569 unsigned int info; /* extra info */
1570 int timeout; /* timeout for reply */
1571 void* callback; /* callback address */
1572 VARARG(data,bytes); /* message data for sent messages */
1573 @END
1575 enum message_type
1577 MSG_ASCII, /* Ascii message (from SendMessageA) */
1578 MSG_UNICODE, /* Unicode message (from SendMessageW) */
1579 MSG_NOTIFY, /* notify message (from SendNotifyMessageW), always Unicode */
1580 MSG_CALLBACK, /* callback message (from SendMessageCallbackW), always Unicode */
1581 MSG_CALLBACK_RESULT,/* result of a callback message */
1582 MSG_OTHER_PROCESS, /* sent from other process, may include vararg data, always Unicode */
1583 MSG_POSTED, /* posted message (from PostMessageW), always Unicode */
1584 MSG_HARDWARE, /* hardware message */
1585 MSG_WINEVENT /* winevent message */
1587 #define SEND_MSG_ABORT_IF_HUNG 0x01
1590 /* Get a message from the current queue */
1591 @REQ(get_message)
1592 int flags; /* see below */
1593 user_handle_t get_win; /* window handle to get */
1594 unsigned int get_first; /* first message code to get */
1595 unsigned int get_last; /* last message code to get */
1596 unsigned int hw_id; /* id of the previous hardware message (or 0) */
1597 @REPLY
1598 int type; /* message type */
1599 user_handle_t win; /* window handle */
1600 unsigned int msg; /* message code */
1601 unsigned int wparam; /* parameters (callback function for MSG_CALLBACK_RESULT) */
1602 unsigned int lparam; /* parameters (result for MSG_CALLBACK_RESULT) */
1603 int x; /* x position */
1604 int y; /* y position */
1605 user_handle_t hook; /* winevent hook handle */
1606 void* hook_proc; /* winevent hook proc address */
1607 unsigned int time; /* message time */
1608 unsigned int info; /* extra info (callback argument for MSG_CALLBACK_RESULT) */
1609 unsigned int hw_id; /* id if hardware message */
1610 unsigned int active_hooks; /* active hooks bitmap */
1611 size_t total; /* total size of extra data */
1612 VARARG(data,bytes); /* message data for sent messages */
1613 @END
1614 #define GET_MSG_REMOVE 1 /* remove the message */
1615 #define GET_MSG_SENT_ONLY 2 /* only get sent messages */
1617 /* Reply to a sent message */
1618 @REQ(reply_message)
1619 unsigned int result; /* message result */
1620 int remove; /* should we remove the message? */
1621 VARARG(data,bytes); /* message data for sent messages */
1622 @END
1625 /* Accept the current hardware message */
1626 @REQ(accept_hardware_message)
1627 unsigned int hw_id; /* id of the hardware message */
1628 int remove; /* should we remove the message? */
1629 user_handle_t new_win; /* new destination window for current message */
1630 @END
1633 /* Retrieve the reply for the last message sent */
1634 @REQ(get_message_reply)
1635 int cancel; /* cancel message if not ready? */
1636 @REPLY
1637 unsigned int result; /* message result */
1638 VARARG(data,bytes); /* message data for sent messages */
1639 @END
1642 /* Set a window timer */
1643 @REQ(set_win_timer)
1644 user_handle_t win; /* window handle */
1645 unsigned int msg; /* message to post */
1646 unsigned int id; /* timer id */
1647 unsigned int rate; /* timer rate in ms */
1648 unsigned int lparam; /* message lparam (callback proc) */
1649 @REPLY
1650 unsigned int id; /* timer id */
1651 @END
1654 /* Kill a window timer */
1655 @REQ(kill_win_timer)
1656 user_handle_t win; /* window handle */
1657 unsigned int msg; /* message to post */
1658 unsigned int id; /* timer id */
1659 @END
1662 /* Retrieve info about a serial port */
1663 @REQ(get_serial_info)
1664 obj_handle_t handle; /* handle to comm port */
1665 @REPLY
1666 unsigned int readinterval;
1667 unsigned int readconst;
1668 unsigned int readmult;
1669 unsigned int writeconst;
1670 unsigned int writemult;
1671 unsigned int eventmask;
1672 unsigned int commerror;
1673 @END
1676 /* Set info about a serial port */
1677 @REQ(set_serial_info)
1678 obj_handle_t handle; /* handle to comm port */
1679 int flags; /* bitmask to set values (see below) */
1680 unsigned int readinterval;
1681 unsigned int readconst;
1682 unsigned int readmult;
1683 unsigned int writeconst;
1684 unsigned int writemult;
1685 unsigned int eventmask;
1686 unsigned int commerror;
1687 @END
1688 #define SERIALINFO_SET_TIMEOUTS 0x01
1689 #define SERIALINFO_SET_MASK 0x02
1690 #define SERIALINFO_SET_ERROR 0x04
1693 /* Create an async I/O */
1694 @REQ(register_async)
1695 obj_handle_t handle; /* handle to comm port, socket or file */
1696 int type; /* type of queue to look after */
1697 void* io_apc; /* APC routine to queue upon end of async */
1698 void* io_sb; /* I/O status block (unique across all async on this handle) */
1699 void* io_user; /* data to pass back to caller */
1700 int count; /* count - usually # of bytes to be read/written */
1701 @END
1702 #define ASYNC_TYPE_READ 0x01
1703 #define ASYNC_TYPE_WRITE 0x02
1704 #define ASYNC_TYPE_WAIT 0x03
1707 /* Cancel all async op on a fd */
1708 @REQ(cancel_async)
1709 obj_handle_t handle; /* handle to comm port, socket or file */
1710 @END
1713 /* Create a named pipe */
1714 @REQ(create_named_pipe)
1715 unsigned int access;
1716 unsigned int attributes; /* object attributes */
1717 obj_handle_t rootdir; /* root directory */
1718 unsigned int options;
1719 unsigned int flags;
1720 unsigned int maxinstances;
1721 unsigned int outsize;
1722 unsigned int insize;
1723 unsigned int timeout;
1724 VARARG(name,unicode_str); /* pipe name */
1725 @REPLY
1726 obj_handle_t handle; /* handle to the pipe */
1727 @END
1729 /* flags in create_named_pipe and get_named_pipe_info */
1730 #define NAMED_PIPE_MESSAGE_STREAM_WRITE 0x0001
1731 #define NAMED_PIPE_MESSAGE_STREAM_READ 0x0002
1732 #define NAMED_PIPE_NONBLOCKING_MODE 0x0004
1735 /* Open an existing named pipe */
1736 @REQ(open_named_pipe)
1737 unsigned int access;
1738 unsigned int attributes; /* object attributes */
1739 obj_handle_t rootdir; /* root directory */
1740 unsigned int flags; /* file flags */
1741 VARARG(name,unicode_str); /* pipe name */
1742 @REPLY
1743 obj_handle_t handle; /* handle to the pipe */
1744 @END
1747 /* Connect to a named pipe */
1748 @REQ(connect_named_pipe)
1749 obj_handle_t handle;
1750 obj_handle_t event;
1751 void* func;
1752 @END
1755 /* Wait for a named pipe */
1756 @REQ(wait_named_pipe)
1757 obj_handle_t handle;
1758 unsigned int timeout;
1759 obj_handle_t event;
1760 void* func;
1761 VARARG(name,unicode_str); /* pipe name */
1762 @END
1765 /* Disconnect a named pipe */
1766 @REQ(disconnect_named_pipe)
1767 obj_handle_t handle;
1768 @REPLY
1769 int fd; /* associated fd to close */
1770 @END
1773 @REQ(get_named_pipe_info)
1774 obj_handle_t handle;
1775 @REPLY
1776 unsigned int flags;
1777 unsigned int maxinstances;
1778 unsigned int outsize;
1779 unsigned int insize;
1780 @END
1783 /* Create a window */
1784 @REQ(create_window)
1785 user_handle_t parent; /* parent window */
1786 user_handle_t owner; /* owner window */
1787 atom_t atom; /* class atom */
1788 void* instance; /* module instance */
1789 @REPLY
1790 user_handle_t handle; /* created window */
1791 int extra; /* number of extra bytes */
1792 void* class_ptr; /* pointer to class in client address space */
1793 @END
1796 /* Destroy a window */
1797 @REQ(destroy_window)
1798 user_handle_t handle; /* handle to the window */
1799 @END
1802 /* Retrieve the desktop window for the current thread */
1803 @REQ(get_desktop_window)
1804 @REPLY
1805 user_handle_t handle; /* handle to the desktop window */
1806 @END
1809 /* Set a window owner */
1810 @REQ(set_window_owner)
1811 user_handle_t handle; /* handle to the window */
1812 user_handle_t owner; /* new owner */
1813 @REPLY
1814 user_handle_t full_owner; /* full handle of new owner */
1815 user_handle_t prev_owner; /* full handle of previous owner */
1816 @END
1819 /* Get information from a window handle */
1820 @REQ(get_window_info)
1821 user_handle_t handle; /* handle to the window */
1822 @REPLY
1823 user_handle_t full_handle; /* full 32-bit handle */
1824 user_handle_t last_active; /* last active popup */
1825 process_id_t pid; /* process owning the window */
1826 thread_id_t tid; /* thread owning the window */
1827 atom_t atom; /* class atom */
1828 int is_unicode; /* ANSI or unicode */
1829 @END
1832 /* Set some information in a window */
1833 @REQ(set_window_info)
1834 user_handle_t handle; /* handle to the window */
1835 unsigned int flags; /* flags for fields to set (see below) */
1836 unsigned int style; /* window style */
1837 unsigned int ex_style; /* window extended style */
1838 unsigned int id; /* window id */
1839 void* instance; /* creator instance */
1840 int is_unicode; /* ANSI or unicode */
1841 void* user_data; /* user-specific data */
1842 int extra_offset; /* offset to set in extra bytes */
1843 size_t extra_size; /* size to set in extra bytes */
1844 unsigned int extra_value; /* value to set in extra bytes */
1845 @REPLY
1846 unsigned int old_style; /* old window style */
1847 unsigned int old_ex_style; /* old window extended style */
1848 unsigned int old_id; /* old window id */
1849 void* old_instance; /* old creator instance */
1850 void* old_user_data; /* old user-specific data */
1851 unsigned int old_extra_value; /* old value in extra bytes */
1852 @END
1853 #define SET_WIN_STYLE 0x01
1854 #define SET_WIN_EXSTYLE 0x02
1855 #define SET_WIN_ID 0x04
1856 #define SET_WIN_INSTANCE 0x08
1857 #define SET_WIN_USERDATA 0x10
1858 #define SET_WIN_EXTRA 0x20
1859 #define SET_WIN_UNICODE 0x40
1862 /* Set the parent of a window */
1863 @REQ(set_parent)
1864 user_handle_t handle; /* handle to the window */
1865 user_handle_t parent; /* handle to the parent */
1866 @REPLY
1867 user_handle_t old_parent; /* old parent window */
1868 user_handle_t full_parent; /* full handle of new parent */
1869 @END
1872 /* Get a list of the window parents, up to the root of the tree */
1873 @REQ(get_window_parents)
1874 user_handle_t handle; /* handle to the window */
1875 @REPLY
1876 int count; /* total count of parents */
1877 VARARG(parents,user_handles); /* parent handles */
1878 @END
1881 /* Get a list of the window children */
1882 @REQ(get_window_children)
1883 user_handle_t parent; /* parent window */
1884 atom_t atom; /* class atom for the listed children */
1885 thread_id_t tid; /* thread owning the listed children */
1886 @REPLY
1887 int count; /* total count of children */
1888 VARARG(children,user_handles); /* children handles */
1889 @END
1892 /* Get a list of the window children that contain a given point */
1893 @REQ(get_window_children_from_point)
1894 user_handle_t parent; /* parent window */
1895 int x; /* point in parent coordinates */
1896 int y;
1897 @REPLY
1898 int count; /* total count of children */
1899 VARARG(children,user_handles); /* children handles */
1900 @END
1903 /* Get window tree information from a window handle */
1904 @REQ(get_window_tree)
1905 user_handle_t handle; /* handle to the window */
1906 @REPLY
1907 user_handle_t parent; /* parent window */
1908 user_handle_t owner; /* owner window */
1909 user_handle_t next_sibling; /* next sibling in Z-order */
1910 user_handle_t prev_sibling; /* prev sibling in Z-order */
1911 user_handle_t first_sibling; /* first sibling in Z-order */
1912 user_handle_t last_sibling; /* last sibling in Z-order */
1913 user_handle_t first_child; /* first child */
1914 user_handle_t last_child; /* last child */
1915 @END
1917 /* Set the position and Z order of a window */
1918 @REQ(set_window_pos)
1919 user_handle_t handle; /* handle to the window */
1920 user_handle_t previous; /* previous window in Z order */
1921 unsigned int flags; /* SWP_* flags */
1922 rectangle_t window; /* window rectangle */
1923 rectangle_t client; /* client rectangle */
1924 VARARG(valid,rectangles); /* valid rectangles from WM_NCCALCSIZE */
1925 @REPLY
1926 unsigned int new_style; /* new window style */
1927 @END
1930 /* Get the window and client rectangles of a window */
1931 @REQ(get_window_rectangles)
1932 user_handle_t handle; /* handle to the window */
1933 @REPLY
1934 rectangle_t window; /* window rectangle */
1935 rectangle_t visible; /* visible part of the window rectangle */
1936 rectangle_t client; /* client rectangle */
1937 @END
1940 /* Get the window text */
1941 @REQ(get_window_text)
1942 user_handle_t handle; /* handle to the window */
1943 @REPLY
1944 VARARG(text,unicode_str); /* window text */
1945 @END
1948 /* Set the window text */
1949 @REQ(set_window_text)
1950 user_handle_t handle; /* handle to the window */
1951 VARARG(text,unicode_str); /* window text */
1952 @END
1955 /* Get the coordinates offset between two windows */
1956 @REQ(get_windows_offset)
1957 user_handle_t from; /* handle to the first window */
1958 user_handle_t to; /* handle to the second window */
1959 @REPLY
1960 int x; /* x coordinate offset */
1961 int y; /* y coordinate offset */
1962 @END
1965 /* Get the visible region of a window */
1966 @REQ(get_visible_region)
1967 user_handle_t window; /* handle to the window */
1968 unsigned int flags; /* DCX flags */
1969 @REPLY
1970 user_handle_t top_win; /* top window to clip against */
1971 int top_org_x; /* top window visible rect origin in screen coords */
1972 int top_org_y;
1973 int win_org_x; /* window rect origin in screen coords */
1974 int win_org_y;
1975 size_t total_size; /* total size of the resulting region */
1976 VARARG(region,rectangles); /* list of rectangles for the region (in screen coords) */
1977 @END
1980 /* Get the window region */
1981 @REQ(get_window_region)
1982 user_handle_t window; /* handle to the window */
1983 @REPLY
1984 size_t total_size; /* total size of the resulting region */
1985 VARARG(region,rectangles); /* list of rectangles for the region */
1986 @END
1989 /* Set the window region */
1990 @REQ(set_window_region)
1991 user_handle_t window; /* handle to the window */
1992 VARARG(region,rectangles); /* list of rectangles for the region */
1993 @END
1996 /* Get the window update region */
1997 @REQ(get_update_region)
1998 user_handle_t window; /* handle to the window */
1999 user_handle_t from_child; /* child to start searching from */
2000 unsigned int flags; /* update flags (see below) */
2001 @REPLY
2002 user_handle_t child; /* child to repaint (or window itself) */
2003 unsigned int flags; /* resulting update flags (see below) */
2004 size_t total_size; /* total size of the resulting region */
2005 VARARG(region,rectangles); /* list of rectangles for the region */
2006 @END
2007 #define UPDATE_NONCLIENT 0x01 /* get region for repainting non-client area */
2008 #define UPDATE_ERASE 0x02 /* get region for erasing client area */
2009 #define UPDATE_PAINT 0x04 /* get region for painting client area */
2010 #define UPDATE_INTERNALPAINT 0x08 /* get region if internal paint is pending */
2011 #define UPDATE_ALLCHILDREN 0x10 /* force repaint of all children */
2012 #define UPDATE_NOCHILDREN 0x20 /* don't try to repaint any children */
2013 #define UPDATE_NOREGION 0x40 /* don't return a region, only the flags */
2016 /* Update the z order of a window so that a given rectangle is fully visible */
2017 @REQ(update_window_zorder)
2018 user_handle_t window; /* handle to the window */
2019 rectangle_t rect; /* rectangle that must be visible */
2020 @END
2023 /* Mark parts of a window as needing a redraw */
2024 @REQ(redraw_window)
2025 user_handle_t window; /* handle to the window */
2026 unsigned int flags; /* RDW_* flags */
2027 VARARG(region,rectangles); /* list of rectangles for the region */
2028 @END
2031 /* Set a window property */
2032 @REQ(set_window_property)
2033 user_handle_t window; /* handle to the window */
2034 atom_t atom; /* property atom (if no name specified) */
2035 obj_handle_t handle; /* handle to store */
2036 VARARG(name,unicode_str); /* property name */
2037 @END
2040 /* Remove a window property */
2041 @REQ(remove_window_property)
2042 user_handle_t window; /* handle to the window */
2043 atom_t atom; /* property atom (if no name specified) */
2044 VARARG(name,unicode_str); /* property name */
2045 @REPLY
2046 obj_handle_t handle; /* handle stored in property */
2047 @END
2050 /* Get a window property */
2051 @REQ(get_window_property)
2052 user_handle_t window; /* handle to the window */
2053 atom_t atom; /* property atom (if no name specified) */
2054 VARARG(name,unicode_str); /* property name */
2055 @REPLY
2056 obj_handle_t handle; /* handle stored in property */
2057 @END
2060 /* Get the list of properties of a window */
2061 @REQ(get_window_properties)
2062 user_handle_t window; /* handle to the window */
2063 @REPLY
2064 int total; /* total number of properties */
2065 VARARG(props,properties); /* list of properties */
2066 @END
2069 /* Create a window station */
2070 @REQ(create_winstation)
2071 unsigned int flags; /* window station flags */
2072 unsigned int access; /* wanted access rights */
2073 unsigned int attributes; /* object attributes */
2074 VARARG(name,unicode_str); /* object name */
2075 @REPLY
2076 obj_handle_t handle; /* handle to the window station */
2077 @END
2080 /* Open a handle to a window station */
2081 @REQ(open_winstation)
2082 unsigned int access; /* wanted access rights */
2083 unsigned int attributes; /* object attributes */
2084 VARARG(name,unicode_str); /* object name */
2085 @REPLY
2086 obj_handle_t handle; /* handle to the window station */
2087 @END
2090 /* Close a window station */
2091 @REQ(close_winstation)
2092 obj_handle_t handle; /* handle to the window station */
2093 @END
2096 /* Get the process current window station */
2097 @REQ(get_process_winstation)
2098 @REPLY
2099 obj_handle_t handle; /* handle to the window station */
2100 @END
2103 /* Set the process current window station */
2104 @REQ(set_process_winstation)
2105 obj_handle_t handle; /* handle to the window station */
2106 @END
2109 /* Create a desktop */
2110 @REQ(create_desktop)
2111 unsigned int flags; /* desktop flags */
2112 unsigned int access; /* wanted access rights */
2113 unsigned int attributes; /* object attributes */
2114 VARARG(name,unicode_str); /* object name */
2115 @REPLY
2116 obj_handle_t handle; /* handle to the desktop */
2117 @END
2120 /* Open a handle to a desktop */
2121 @REQ(open_desktop)
2122 unsigned int flags; /* desktop flags */
2123 unsigned int access; /* wanted access rights */
2124 unsigned int attributes; /* object attributes */
2125 VARARG(name,unicode_str); /* object name */
2126 @REPLY
2127 obj_handle_t handle; /* handle to the desktop */
2128 @END
2131 /* Close a desktop */
2132 @REQ(close_desktop)
2133 obj_handle_t handle; /* handle to the desktop */
2134 @END
2137 /* Get the thread current desktop */
2138 @REQ(get_thread_desktop)
2139 thread_id_t tid; /* thread id */
2140 @REPLY
2141 obj_handle_t handle; /* handle to the desktop */
2142 @END
2145 /* Set the thread current desktop */
2146 @REQ(set_thread_desktop)
2147 obj_handle_t handle; /* handle to the desktop */
2148 @END
2151 /* Get/set information about a user object (window station or desktop) */
2152 @REQ(set_user_object_info)
2153 obj_handle_t handle; /* handle to the object */
2154 unsigned int flags; /* information to set */
2155 unsigned int obj_flags; /* new object flags */
2156 @REPLY
2157 int is_desktop; /* is object a desktop? */
2158 unsigned int old_obj_flags; /* old object flags */
2159 VARARG(name,unicode_str); /* object name */
2160 @END
2161 #define SET_USER_OBJECT_FLAGS 1
2164 /* Attach (or detach) thread inputs */
2165 @REQ(attach_thread_input)
2166 thread_id_t tid_from; /* thread to be attached */
2167 thread_id_t tid_to; /* thread to which tid_from should be attached */
2168 int attach; /* is it an attach? */
2169 @END
2172 /* Get input data for a given thread */
2173 @REQ(get_thread_input)
2174 thread_id_t tid; /* id of thread */
2175 @REPLY
2176 user_handle_t focus; /* handle to the focus window */
2177 user_handle_t capture; /* handle to the capture window */
2178 user_handle_t active; /* handle to the active window */
2179 user_handle_t foreground; /* handle to the global foreground window */
2180 user_handle_t menu_owner; /* handle to the menu owner */
2181 user_handle_t move_size; /* handle to the moving/resizing window */
2182 user_handle_t caret; /* handle to the caret window */
2183 rectangle_t rect; /* caret rectangle */
2184 @END
2187 /* Get the time of the last input event */
2188 @REQ(get_last_input_time)
2189 @REPLY
2190 unsigned int time;
2191 @END
2194 /* Retrieve queue keyboard state for a given thread */
2195 @REQ(get_key_state)
2196 thread_id_t tid; /* id of thread */
2197 int key; /* optional key code or -1 */
2198 @REPLY
2199 unsigned char state; /* state of specified key */
2200 VARARG(keystate,bytes); /* state array for all the keys */
2201 @END
2203 /* Set queue keyboard state for a given thread */
2204 @REQ(set_key_state)
2205 thread_id_t tid; /* id of thread */
2206 VARARG(keystate,bytes); /* state array for all the keys */
2207 @END
2209 /* Set the system foreground window */
2210 @REQ(set_foreground_window)
2211 user_handle_t handle; /* handle to the foreground window */
2212 @REPLY
2213 user_handle_t previous; /* handle to the previous foreground window */
2214 int send_msg_old; /* whether we have to send a msg to the old window */
2215 int send_msg_new; /* whether we have to send a msg to the new window */
2216 @END
2218 /* Set the current thread focus window */
2219 @REQ(set_focus_window)
2220 user_handle_t handle; /* handle to the focus window */
2221 @REPLY
2222 user_handle_t previous; /* handle to the previous focus window */
2223 @END
2225 /* Set the current thread active window */
2226 @REQ(set_active_window)
2227 user_handle_t handle; /* handle to the active window */
2228 @REPLY
2229 user_handle_t previous; /* handle to the previous active window */
2230 @END
2232 /* Set the current thread capture window */
2233 @REQ(set_capture_window)
2234 user_handle_t handle; /* handle to the capture window */
2235 unsigned int flags; /* capture flags (see below) */
2236 @REPLY
2237 user_handle_t previous; /* handle to the previous capture window */
2238 user_handle_t full_handle; /* full 32-bit handle of new capture window */
2239 @END
2240 #define CAPTURE_MENU 0x01 /* capture is for a menu */
2241 #define CAPTURE_MOVESIZE 0x02 /* capture is for moving/resizing */
2244 /* Set the current thread caret window */
2245 @REQ(set_caret_window)
2246 user_handle_t handle; /* handle to the caret window */
2247 int width; /* caret width */
2248 int height; /* caret height */
2249 @REPLY
2250 user_handle_t previous; /* handle to the previous caret window */
2251 rectangle_t old_rect; /* previous caret rectangle */
2252 int old_hide; /* previous hide count */
2253 int old_state; /* previous caret state (1=on, 0=off) */
2254 @END
2257 /* Set the current thread caret information */
2258 @REQ(set_caret_info)
2259 unsigned int flags; /* caret flags (see below) */
2260 user_handle_t handle; /* handle to the caret window */
2261 int x; /* caret x position */
2262 int y; /* caret y position */
2263 int hide; /* increment for hide count (can be negative to show it) */
2264 int state; /* caret state (1=on, 0=off, -1=toggle current state) */
2265 @REPLY
2266 user_handle_t full_handle; /* handle to the current caret window */
2267 rectangle_t old_rect; /* previous caret rectangle */
2268 int old_hide; /* previous hide count */
2269 int old_state; /* previous caret state (1=on, 0=off) */
2270 @END
2271 #define SET_CARET_POS 0x01 /* set the caret position from x,y */
2272 #define SET_CARET_HIDE 0x02 /* increment the caret hide count */
2273 #define SET_CARET_STATE 0x04 /* set the caret on/off state */
2276 /* Set a window hook */
2277 @REQ(set_hook)
2278 int id; /* id of the hook */
2279 process_id_t pid; /* id of process to set the hook into */
2280 thread_id_t tid; /* id of thread to set the hook into */
2281 int event_min;
2282 int event_max;
2283 int flags;
2284 void* proc; /* hook procedure */
2285 int unicode; /* is it a unicode hook? */
2286 VARARG(module,unicode_str); /* module name */
2287 @REPLY
2288 user_handle_t handle; /* handle to the hook */
2289 unsigned int active_hooks; /* active hooks bitmap */
2290 @END
2293 /* Remove a window hook */
2294 @REQ(remove_hook)
2295 user_handle_t handle; /* handle to the hook */
2296 int id; /* id of the hook if handle is 0 */
2297 void* proc; /* hook procedure if handle is 0 */
2298 @REPLY
2299 unsigned int active_hooks; /* active hooks bitmap */
2300 @END
2303 /* Start calling a hook chain */
2304 @REQ(start_hook_chain)
2305 int id; /* id of the hook */
2306 int event; /* signalled event */
2307 user_handle_t window; /* handle to the event window */
2308 int object_id; /* object id for out of context winevent */
2309 int child_id; /* child id for out of context winevent */
2310 @REPLY
2311 user_handle_t handle; /* handle to the next hook */
2312 process_id_t pid; /* process id for low-level keyboard/mouse hooks */
2313 thread_id_t tid; /* thread id for low-level keyboard/mouse hooks */
2314 void* proc; /* hook procedure */
2315 int unicode; /* is it a unicode hook? */
2316 unsigned int active_hooks; /* active hooks bitmap */
2317 VARARG(module,unicode_str); /* module name */
2318 @END
2321 /* Finished calling a hook chain */
2322 @REQ(finish_hook_chain)
2323 int id; /* id of the hook */
2324 @END
2327 /* Get the next hook to call */
2328 @REQ(get_next_hook)
2329 user_handle_t handle; /* handle to the current hook */
2330 int event; /* signalled event */
2331 user_handle_t window; /* handle to the event window */
2332 int object_id; /* object id for out of context winevent */
2333 int child_id; /* child id for out of context winevent */
2334 @REPLY
2335 user_handle_t next; /* handle to the next hook */
2336 int id; /* id of the next hook */
2337 process_id_t pid; /* process id for low-level keyboard/mouse hooks */
2338 thread_id_t tid; /* thread id for low-level keyboard/mouse hooks */
2339 void* proc; /* next hook procedure */
2340 int prev_unicode; /* was the previous a unicode hook? */
2341 int next_unicode; /* is the next a unicode hook? */
2342 VARARG(module,unicode_str); /* module name */
2343 @END
2346 /* Create a window class */
2347 @REQ(create_class)
2348 int local; /* is it a local class? */
2349 atom_t atom; /* class atom */
2350 unsigned int style; /* class style */
2351 void* instance; /* module instance */
2352 int extra; /* number of extra class bytes */
2353 int win_extra; /* number of window extra bytes */
2354 void* client_ptr; /* pointer to class in client address space */
2355 @END
2358 /* Destroy a window class */
2359 @REQ(destroy_class)
2360 atom_t atom; /* class atom */
2361 void* instance; /* module instance */
2362 @REPLY
2363 void* client_ptr; /* pointer to class in client address space */
2364 @END
2367 /* Set some information in a class */
2368 @REQ(set_class_info)
2369 user_handle_t window; /* handle to the window */
2370 unsigned int flags; /* flags for info to set (see below) */
2371 atom_t atom; /* class atom */
2372 unsigned int style; /* class style */
2373 int win_extra; /* number of window extra bytes */
2374 void* instance; /* module instance */
2375 int extra_offset; /* offset to set in extra bytes */
2376 size_t extra_size; /* size to set in extra bytes */
2377 unsigned int extra_value; /* value to set in extra bytes */
2378 @REPLY
2379 atom_t old_atom; /* previous class atom */
2380 unsigned int old_style; /* previous class style */
2381 int old_extra; /* previous number of class extra bytes */
2382 int old_win_extra; /* previous number of window extra bytes */
2383 void* old_instance; /* previous module instance */
2384 unsigned int old_extra_value; /* old value in extra bytes */
2385 @END
2386 #define SET_CLASS_ATOM 0x0001
2387 #define SET_CLASS_STYLE 0x0002
2388 #define SET_CLASS_WINEXTRA 0x0004
2389 #define SET_CLASS_INSTANCE 0x0008
2390 #define SET_CLASS_EXTRA 0x0010
2393 /* Set/get clipboard information */
2394 @REQ(set_clipboard_info)
2395 unsigned int flags; /* flags for fields to set (see below) */
2396 user_handle_t clipboard; /* clipboard window */
2397 user_handle_t owner; /* clipboard owner */
2398 user_handle_t viewer; /* first clipboard viewer */
2399 unsigned int seqno; /* change sequence number */
2400 @REPLY
2401 unsigned int flags; /* status flags (see below) */
2402 user_handle_t old_clipboard; /* old clipboard window */
2403 user_handle_t old_owner; /* old clipboard owner */
2404 user_handle_t old_viewer; /* old clipboard viewer */
2405 unsigned int seqno; /* current sequence number */
2406 @END
2408 #define SET_CB_OPEN 0x001
2409 #define SET_CB_OWNER 0x002
2410 #define SET_CB_VIEWER 0x004
2411 #define SET_CB_SEQNO 0x008
2412 #define SET_CB_RELOWNER 0x010
2413 #define SET_CB_CLOSE 0x020
2414 #define CB_OPEN 0x040
2415 #define CB_OWNER 0x080
2416 #define CB_PROCESS 0x100
2419 /* Open a security token */
2420 @REQ(open_token)
2421 obj_handle_t handle; /* handle to the thread or process */
2422 unsigned int access; /* access rights to the new token */
2423 unsigned int attributes;/* object attributes */
2424 unsigned int flags; /* flags (see below) */
2425 @REPLY
2426 obj_handle_t token; /* handle to the token */
2427 @END
2428 #define OPEN_TOKEN_THREAD 1
2429 #define OPEN_TOKEN_AS_SELF 2
2432 /* Set/get the global windows */
2433 @REQ(set_global_windows)
2434 unsigned int flags; /* flags for fields to set (see below) */
2435 user_handle_t shell_window; /* handle to the new shell window */
2436 user_handle_t shell_listview; /* handle to the new shell listview window */
2437 user_handle_t progman_window; /* handle to the new program manager window */
2438 user_handle_t taskman_window; /* handle to the new task manager window */
2439 @REPLY
2440 user_handle_t old_shell_window; /* handle to the shell window */
2441 user_handle_t old_shell_listview; /* handle to the shell listview window */
2442 user_handle_t old_progman_window; /* handle to the new program manager window */
2443 user_handle_t old_taskman_window; /* handle to the new task manager window */
2444 @END
2445 #define SET_GLOBAL_SHELL_WINDOWS 0x01 /* set both main shell and listview windows */
2446 #define SET_GLOBAL_PROGMAN_WINDOW 0x02
2447 #define SET_GLOBAL_TASKMAN_WINDOW 0x04
2449 /* Adjust the privileges held by a token */
2450 @REQ(adjust_token_privileges)
2451 obj_handle_t handle; /* handle to the token */
2452 int disable_all; /* disable all privileges? */
2453 int get_modified_state; /* get modified privileges? */
2454 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges to enable/disable/remove */
2455 @REPLY
2456 unsigned int len; /* total length in bytes required to store token privileges */
2457 VARARG(privileges,LUID_AND_ATTRIBUTES); /* modified privileges */
2458 @END
2460 /* Retrieves the set of privileges held by or available to a token */
2461 @REQ(get_token_privileges)
2462 obj_handle_t handle; /* handle to the token */
2463 @REPLY
2464 unsigned int len; /* total length in bytes required to store token privileges */
2465 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges held by or available to a token */
2466 @END
2468 /* Check the token has the required privileges */
2469 @REQ(check_token_privileges)
2470 obj_handle_t handle; /* handle to the token */
2471 int all_required; /* are all the privileges required for the check to succeed? */
2472 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges to check */
2473 @REPLY
2474 int has_privileges; /* does the token have the required privileges? */
2475 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges held by or available to a token */
2476 @END
2478 @REQ(duplicate_token)
2479 obj_handle_t handle; /* handle to the token to duplicate */
2480 unsigned int access; /* access rights to the new token */
2481 unsigned int attributes; /* object attributes */
2482 int primary; /* is the new token to be a primary one? */
2483 int impersonation_level; /* impersonation level of the new token */
2484 @REPLY
2485 obj_handle_t new_handle; /* duplicated handle */
2486 @END
2488 @REQ(access_check)
2489 obj_handle_t handle; /* handle to the token */
2490 unsigned int desired_access; /* desired access to the object */
2491 unsigned int mapping_read; /* mapping from generic read to specific rights */
2492 unsigned int mapping_write; /* mapping from generic write to specific rights */
2493 unsigned int mapping_execute; /* mapping from generic execute to specific rights */
2494 unsigned int mapping_all; /* mapping from generic all to specific rights */
2495 VARARG(sd,security_descriptor); /* security descriptor to check */
2496 @REPLY
2497 unsigned int access_granted; /* access rights actually granted */
2498 unsigned int access_status; /* was access granted? */
2499 unsigned int privileges_len; /* length needed to store privileges */
2500 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges used during access check */
2501 @END
2503 @REQ(get_token_user)
2504 obj_handle_t handle; /* handle to the token */
2505 @REPLY
2506 size_t user_len; /* length needed to store user */
2507 VARARG(user,SID); /* sid of the user the token represents */
2508 @END
2510 /* Create a mailslot */
2511 @REQ(create_mailslot)
2512 unsigned int access; /* wanted access rights */
2513 unsigned int attributes; /* object attributes */
2514 obj_handle_t rootdir; /* root directory */
2515 unsigned int max_msgsize;
2516 int read_timeout;
2517 VARARG(name,unicode_str); /* mailslot name */
2518 @REPLY
2519 obj_handle_t handle; /* handle to the mailslot */
2520 @END
2523 /* Open an existing mailslot */
2524 @REQ(open_mailslot)
2525 unsigned int access;
2526 unsigned int attributes; /* object attributes */
2527 obj_handle_t rootdir; /* root directory */
2528 unsigned int sharing; /* sharing mode */
2529 VARARG(name,unicode_str); /* mailslot name */
2530 @REPLY
2531 obj_handle_t handle; /* handle to the mailslot */
2532 @END
2535 /* Set mailslot information */
2536 @REQ(set_mailslot_info)
2537 obj_handle_t handle; /* handle to the mailslot */
2538 unsigned int flags;
2539 int read_timeout;
2540 @REPLY
2541 unsigned int max_msgsize;
2542 int read_timeout;
2543 unsigned int msg_count;
2544 unsigned int next_msgsize;
2545 @END
2546 #define MAILSLOT_SET_READ_TIMEOUT 1
2549 /* Create a directory object */
2550 @REQ(create_directory)
2551 unsigned int access; /* access flags */
2552 unsigned int attributes; /* object attributes */
2553 obj_handle_t rootdir; /* root directory */
2554 VARARG(directory_name,unicode_str); /* Directory name */
2555 @REPLY
2556 obj_handle_t handle; /* handle to the directory */
2557 @END
2560 /* Open a directory object */
2561 @REQ(open_directory)
2562 unsigned int access; /* access flags */
2563 unsigned int attributes; /* object attributes */
2564 obj_handle_t rootdir; /* root directory */
2565 VARARG(directory_name,unicode_str); /* Directory name */
2566 @REPLY
2567 obj_handle_t handle; /* handle to the directory */
2568 @END
2571 /* Create a symbolic link object */
2572 @REQ(create_symlink)
2573 unsigned int access; /* access flags */
2574 unsigned int attributes; /* object attributes */
2575 obj_handle_t rootdir; /* root directory */
2576 size_t name_len; /* length of the symlink name in bytes */
2577 VARARG(name,unicode_str,name_len); /* symlink name */
2578 VARARG(target_name,unicode_str); /* target name */
2579 @REPLY
2580 obj_handle_t handle; /* handle to the symlink */
2581 @END
2584 /* Open a symbolic link object */
2585 @REQ(open_symlink)
2586 unsigned int access; /* access flags */
2587 unsigned int attributes; /* object attributes */
2588 obj_handle_t rootdir; /* root directory */
2589 VARARG(name,unicode_str); /* symlink name */
2590 @REPLY
2591 obj_handle_t handle; /* handle to the symlink */
2592 @END
2595 /* Query a symbolic link object */
2596 @REQ(query_symlink)
2597 obj_handle_t handle; /* handle to the symlink */
2598 @REPLY
2599 VARARG(target_name,unicode_str); /* target name */
2600 @END