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
*/
36 int req
; /* request code
*/
37 size_t request_size
; /* request variable part size
*/
38 size_t reply_size
; /* reply variable part maximum size
*/
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
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
*/
132 int code
; /* event code
*/
133 union debug_event_data info
; /* event information
*/
136 /* structure used in sending an fd from client to server
*/
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
*/
146 void
*cookie
; /* magic cookie that was passed in select_request
*/
147 int signaled
; /* wait result
*/
150 /* structure for absolute timeouts
*/
153 int sec
; /* seconds since Unix epoch
*/
154 int usec
; /* microseconds
*/
157 /* structure returned in the list of window properties
*/
160 atom_t atom
; /* property atom
*/
161 short string
; /* was atom a string originally?
*/
162 obj_handle_t handle
; /* handle stored in property
*/
165 /* structure to specify window rectangles
*/
174 /* structure for console char
/attribute info
*/
181 #define MAX_ACL_LEN
65535
183 struct security_descriptor
185 unsigned int control
; /* SE_ flags
*/
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
*/
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
*/
211 obj_handle_t info
; /* new process info handle
*/
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
*/
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?
*/
231 /* Create a new thread from the context of the parent
*/
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
*/
238 thread_id_t tid
; /* thread id
*/
239 obj_handle_t handle
; /* thread
handle (in the current process
) */
243 /* Retrieve the new process startup info
*/
244 @
REQ(get_startup_info
)
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
*/
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
*/
268 /* Initialize a thread
; called from the child after
fork()/clone() */
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
*/
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 */
288 /* Terminate a process */
289 @REQ(terminate_process)
290 obj_handle_t handle; /* process handle to terminate */
291 int exit_code; /* process exit code */
293 int self; /* suicide? */
297 /* Terminate a thread */
298 @REQ(terminate_thread)
299 obj_handle_t handle; /* thread handle to terminate */
300 int exit_code; /* thread exit code */
302 int self; /* suicide? */
303 int last; /* last thread in this process? */
307 /* Retrieve information about a process */
308 @REQ(get_process_info)
309 obj_handle_t handle; /* process handle */
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 */
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 */
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) */
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 */
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 */
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 */
362 obj_handle_t handle; /* process handle */
363 void* base_address; /* base address of module */
365 size_t size; /* module size */
367 VARARG(filename,unicode_str); /* file name of module */
371 /* Suspend a thread */
373 obj_handle_t handle; /* thread handle */
375 int count; /* new suspend count */
379 /* Resume a thread */
381 obj_handle_t handle; /* thread handle */
383 int count; /* new suspend count */
387 /* Notify the server that a dll has been loaded */
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 */
399 /* Notify the server that a dll is being unloaded */
401 void* base; /* base address */
405 /* Queue an APC for a thread */
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 */
416 /* Get next APC to call */
418 int alertable; /* is thread alertable? */
420 void* func; /* function to call */
421 int type; /* function type */
422 void* arg1; /* function arguments */
426 enum apc_type { APC_NONE, APC_USER, APC_TIMER, APC_ASYNC_IO };
429 /* Close a handle for the current process */
431 obj_handle_t handle; /* handle to close */
433 int fd; /* associated fd to close */
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 */
443 int old_flags; /* old flag value */
447 /* Duplicate a 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) */
456 obj_handle_t handle; /* duplicated handle in dst process */
457 int fd; /* associated fd to close */
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 */
466 process_id_t pid; /* process id to open */
467 unsigned int access; /* wanted access rights */
468 unsigned int attributes; /* object attributes */
470 obj_handle_t handle; /* handle to the process */
474 /* Open a handle to a thread */
476 thread_id_t tid; /* thread id to open */
477 unsigned int access; /* wanted access rights */
478 unsigned int attributes; /* object attributes */
480 obj_handle_t handle; /* handle to the thread */
484 /* Wait for handles */
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 */
493 #define SELECT_ALERTABLE 2
494 #define SELECT_INTERRUPTIBLE 4
495 #define SELECT_TIMEOUT 8
498 /* Create an 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 */
507 obj_handle_t handle; /* handle to the event */
510 /* Event operation */
512 obj_handle_t handle; /* handle to event */
513 int op; /* event operation (see below) */
515 enum event_op { PULSE_EVENT, SET_EVENT, RESET_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 */
525 obj_handle_t handle; /* handle to the event */
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 */
537 obj_handle_t handle; /* handle to the mutex */
541 /* Release a mutex */
543 obj_handle_t handle; /* handle to the mutex */
545 unsigned int prev_count; /* value of internal counter, before release */
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 */
556 obj_handle_t handle; /* handle to the mutex */
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 */
569 obj_handle_t handle; /* handle to the semaphore */
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 */
578 unsigned int prev_count; /* previous semaphore count */
582 /* Open a 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 */
589 obj_handle_t handle; /* handle to the semaphore */
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 */
603 obj_handle_t handle; /* handle to the file */
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 */
615 obj_handle_t handle; /* handle to the file */
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 */
625 obj_handle_t handle; /* handle to the file */
629 /* Get a Unix fd to access a file */
631 obj_handle_t handle; /* handle to the file */
632 unsigned int access; /* wanted access rights */
634 int fd; /* file descriptor */
635 int removable; /* is device removable? (-1 if unknown) */
636 int flags; /* file read/write flags (see below) */
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
*/
647 obj_handle_t handle
; /* handle we are interested in
*/
648 int fd
; /* file descriptor
*/
649 int removable
; /* is device removable?
(-1 if unknown
) */
651 int cur_fd
; /* current file descriptor
*/
655 /* Flush a file buffers
*/
657 obj_handle_t handle
; /* handle to the file
*/
659 obj_handle_t event
; /* event set when finished
*/
663 /* Lock a region of a 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?
*/
673 obj_handle_t handle
; /* handle to wait on
*/
674 int overlapped
; /* is it an overlapped I
/O handle?
*/
678 /* Unlock a region of a 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
*/
688 /* Get ready to unmount a Unix device
*/
690 obj_handle_t handle
; /* handle to a file on the device
*/
694 /* Create a 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
*/
703 obj_handle_t handle
; /* handle to the new socket
*/
707 /* Accept a socket
*/
709 obj_handle_t lhandle
; /* handle to the listening socket
*/
710 unsigned int access
; /* wanted access rights
*/
711 unsigned int attributes
; /* object attributes
*/
713 obj_handle_t handle
; /* handle to the new socket
*/
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
*/
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
*/
733 unsigned int mask
; /* event mask
*/
734 unsigned int pmask
; /* pending events
*/
735 unsigned int state
; /* status bits
*/
736 VARARG(errors
,ints
); /* event errors
*/
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
*/
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
*/
753 /* Allocate a
console (only used by a console renderer
) */
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
*/
759 obj_handle_t handle_in
; /* handle to console input
*/
760 obj_handle_t event
; /* handle to renderer events change notification
*/
764 /* Free the console of the current process
*/
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
813 /* retrieve console events for the renderer
*/
814 @
REQ(get_console_renderer_events
)
815 obj_handle_t handle
; /* handle to console input events
*/
817 VARARG(data
,bytes
); /* the various console_renderer_events
*/
821 /* Open a handle to the process 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
) */
829 obj_handle_t handle
; /* handle to the console
*/
833 /* Get the input queue wait event
*/
834 @
REQ(get_console_wait_event
)
839 /* Get a console
mode (input or output
) */
840 @
REQ(get_console_mode
)
841 obj_handle_t handle
; /* handle to the console
*/
843 int mode
; /* console mode
*/
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
*/
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 */
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
*/
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
*/
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
*/
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
*/
895 int total
; /* total length of line in Unicode chars
*/
896 VARARG(line
,unicode_str
); /* line to add
*/
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
*/
907 obj_handle_t handle_out
; /* handle to the screen buffer
*/
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
) */
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
;
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
*/
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
) */
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
;
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
*/
961 int written
; /* number of records written
*/
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?
*/
970 int read
; /* number of records read
*/
971 VARARG(rec
,input_records
); /* input records
*/
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
*/
980 int mode
; /* char
info (see below
) */
981 int wrap
; /* wrap around at end of line?
*/
982 VARARG(data
,bytes
); /* info to write
*/
984 int written
; /* number of char infos actually written
*/
985 int width
; /* width of screen buffer
*/
986 int height
; /* height of screen buffer
*/
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
*/
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
*/
1007 int written
; /* number of char infos actually written
*/
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
*/
1016 int mode
; /* char info mode
*/
1017 int wrap
; /* wrap around at end of line?
*/
1019 int width
; /* width of screen buffer
*/
1020 int height
; /* height of screen buffer
*/
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
*/
1030 short int x_dst
; /* position (x
, y
) of rect to move to
*/
1032 short int w
; /* size of the
rect (width
, height
) to move
*/
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
*/
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
*/
1052 obj_handle_t handle
; /* handle to the change notification
*/
1056 /* Move to the next change notification
*/
1057 @
REQ(next_change_notification
)
1058 obj_handle_t handle
; /* handle to the change notification
*/
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
*/
1072 obj_handle_t handle
; /* handle to the mapping
*/
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
*/
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
*/
1092 obj_handle_t handle
; /* handle to the mapping
*/
1096 /* Get information about a file mapping
*/
1097 @
REQ(get_mapping_info
)
1098 obj_handle_t handle
; /* handle to the mapping
*/
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
*/
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
*/
1120 obj_handle_t handle
; /* handle to the snapshot
*/
1124 /* Get the next process from a snapshot
*/
1126 obj_handle_t handle
; /* handle to the snapshot
*/
1127 int reset
; /* reset snapshot position?
*/
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
*/
1141 /* Get the next thread from a snapshot
*/
1143 obj_handle_t handle
; /* handle to the snapshot
*/
1144 int reset
; /* reset snapshot position?
*/
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
*/
1154 /* Get the next module from a snapshot
*/
1156 obj_handle_t handle
; /* handle to the snapshot
*/
1157 int reset
; /* reset snapshot position?
*/
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
*/
1166 /* Wait for a debug event
*/
1167 @
REQ(wait_debug_event
)
1168 int get_handle
; /* should we alloc a handle for waiting?
*/
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
*/
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
*/
1182 obj_handle_t handle
; /* handle to the queued event
*/
1186 /* Retrieve the status of an exception event
*/
1187 @
REQ(get_exception_status
)
1188 obj_handle_t handle
; /* handle to the queued event
*/
1190 VARARG(context
,context
); /* modified thread context
*/
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
*/
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
*/
1210 /* Start
/stop debugging an existing process
*/
1212 process_id_t pid
; /* id of the process to debug
*/
1213 int attach
; /* 1=attaching
/ 0=detaching from the process
*/
1217 /* Simulate a breakpoint in a process
*/
1219 obj_handle_t handle
; /* process handle
*/
1221 int self
; /* was it the caller itself?
*/
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
*/
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
*/
1236 VARARG(data
,bytes
); /* result data
*/
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
*/
1250 /* Create a registry 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
*/
1261 obj_handle_t hkey
; /* handle to the created key
*/
1262 int created
; /* has it been newly created?
*/
1265 /* Open a registry 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
*/
1272 obj_handle_t hkey
; /* handle to the open key
*/
1276 /* Delete a registry key
*/
1278 obj_handle_t hkey
; /* handle to the key
*/
1282 /* Flush a registry key
*/
1284 obj_handle_t hkey
; /* handle to the key
*/
1288 /* Enumerate registry subkeys
*/
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
*/
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
*/
1308 /* Set a value of a registry key
*/
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
*/
1318 /* Retrieve the value of a registry key
*/
1320 obj_handle_t hkey
; /* handle to registry key
*/
1321 VARARG(name
,unicode_str
); /* value name
*/
1323 int type
; /* value type
*/
1324 size_t total
; /* total length needed for data
*/
1325 VARARG(data
,bytes
); /* value data
*/
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
*/
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
*/
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
*/
1350 /* Load a registry branch from a file
*/
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
*/
1358 /* UnLoad a registry branch from a file
*/
1359 @
REQ(unload_registry
)
1360 obj_handle_t hkey
; /* root key to unload to
*/
1364 /* Save a registry branch to a file
*/
1366 obj_handle_t hkey
; /* key to save
*/
1367 obj_handle_t file
; /* file to save to
*/
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
*/
1380 /* Create a waitable 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
*/
1388 obj_handle_t handle
; /* handle to the timer
*/
1392 /* Open a waitable 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
*/
1399 obj_handle_t handle
; /* handle to the timer
*/
1402 /* Set a waitable 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
*/
1410 int signaled
; /* was the timer signaled before this call ?
*/
1413 /* Cancel a waitable timer
*/
1415 obj_handle_t handle
; /* handle to the timer
*/
1417 int signaled
; /* was the timer signaled before this calltime ?
*/
1420 /* Get information on a waitable timer
*/
1421 @
REQ(get_timer_info
)
1422 obj_handle_t handle
; /* handle to the timer
*/
1424 abs_time_t when
; /* absolute time when the timer next expires
*/
1425 int signaled
; /* is the timer signaled?
*/
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
*/
1435 int self
; /* was it a handle to the current thread?
*/
1436 VARARG(context
,context
); /* thread context
*/
1440 /* Set the current context of a thread
*/
1441 @
REQ(set_thread_context
)
1442 obj_handle_t handle
; /* thread handle
*/
1443 unsigned int flags
; /* context flags
*/
1444 int suspend
; /* if setting context during suspend
*/
1445 VARARG(context
,context
); /* thread context
*/
1447 int self
; /* was it a handle to the current thread?
*/
1451 /* Fetch a selector entry for a thread
*/
1452 @
REQ(get_selector_entry
)
1453 obj_handle_t handle
; /* thread handle
*/
1454 int entry
; /* LDT entry
*/
1456 unsigned int base
; /* selector base
*/
1457 unsigned int limit
; /* selector limit
*/
1458 unsigned char flags
; /* selector flags
*/
1464 obj_handle_t table
; /* which table to add atom to
*/
1465 VARARG(name
,unicode_str
); /* atom name
*/
1467 atom_t atom
; /* resulting atom
*/
1471 /* Delete an atom
*/
1473 obj_handle_t table
; /* which table to delete atom from
*/
1474 atom_t atom
; /* atom handle
*/
1480 obj_handle_t table
; /* which table to find atom from
*/
1481 VARARG(name
,unicode_str
); /* atom name
*/
1483 atom_t atom
; /* atom handle
*/
1487 /* Get information about an atom
*/
1488 @
REQ(get_atom_information
)
1489 obj_handle_t table
; /* which table to find atom from
*/
1490 atom_t atom
; /* atom handle
*/
1492 int count
; /* atom lock count
*/
1493 int pinned
; /* whether the atom has been pinned
*/
1494 size_t total
; /* actual length of atom name
*/
1495 VARARG(name
,unicode_str
); /* atom name
*/
1499 /* Set information about an atom
*/
1500 @
REQ(set_atom_information
)
1501 obj_handle_t table
; /* which table to find atom from
*/
1502 atom_t atom
; /* atom handle
*/
1503 int pinned
; /* whether to bump atom information
*/
1507 /* Empty an atom table
*/
1508 @
REQ(empty_atom_table
)
1509 obj_handle_t table
; /* which table to find atom from
*/
1510 int if_pinned
; /* whether to delete pinned atoms
*/
1514 /* Init an atom table
*/
1515 @
REQ(init_atom_table
)
1516 int entries
; /* number of
entries (only for local
) */
1518 obj_handle_t table
; /* handle to the atom table
*/
1522 /* Get the message queue of the current thread
*/
1525 obj_handle_t handle
; /* handle to the queue
*/
1529 /* Set the current message queue wakeup mask
*/
1530 @
REQ(set_queue_mask
)
1531 unsigned int wake_mask
; /* wakeup bits mask
*/
1532 unsigned int changed_mask
; /* changed bits mask
*/
1533 int skip_wait
; /* will we skip waiting if signaled?
*/
1535 unsigned int wake_bits
; /* current wake bits
*/
1536 unsigned int changed_bits
; /* current changed bits
*/
1540 /* Get the current message queue status
*/
1541 @
REQ(get_queue_status
)
1542 int clear
; /* should we clear the change bits?
*/
1544 unsigned int wake_bits
; /* wake bits
*/
1545 unsigned int changed_bits
; /* changed bits since last time
*/
1549 /* Wait for a process to start waiting on input
*/
1550 @
REQ(wait_input_idle
)
1551 obj_handle_t handle
; /* process handle
*/
1552 int timeout
; /* timeout
*/
1554 obj_handle_t event
; /* handle to idle event
*/
1558 /* Send a message to a thread queue
*/
1560 thread_id_t id
; /* thread id
*/
1561 int type
; /* message
type (see below
) */
1562 int flags
; /* message
flags (see below
) */
1563 user_handle_t win
; /* window handle
*/
1564 unsigned int msg
; /* message code
*/
1565 unsigned int wparam
; /* parameters
*/
1566 unsigned int lparam
; /* parameters
*/
1567 int x
; /* x position
*/
1568 int y
; /* y position
*/
1569 unsigned int time
; /* message time
*/
1570 unsigned int info
; /* extra info
*/
1571 int timeout
; /* timeout for reply
*/
1572 void
* callback
; /* callback address
*/
1573 VARARG(data
,bytes
); /* message data for sent messages
*/
1578 MSG_ASCII
, /* Ascii
message (from SendMessageA
) */
1579 MSG_UNICODE
, /* Unicode
message (from SendMessageW
) */
1580 MSG_NOTIFY
, /* notify
message (from SendNotifyMessageW
), always Unicode
*/
1581 MSG_CALLBACK
, /* callback
message (from SendMessageCallbackW
), always Unicode
*/
1582 MSG_CALLBACK_RESULT
,/* result of a callback message
*/
1583 MSG_OTHER_PROCESS
, /* sent from other process
, may include vararg data
, always Unicode
*/
1584 MSG_POSTED
, /* posted
message (from PostMessageW
), always Unicode
*/
1585 MSG_HARDWARE
, /* hardware message
*/
1586 MSG_WINEVENT
/* winevent message
*/
1588 #define SEND_MSG_ABORT_IF_HUNG
0x01
1591 /* Get a message from the current queue
*/
1593 int flags
; /* see below
*/
1594 user_handle_t get_win
; /* window handle to get
*/
1595 unsigned int get_first
; /* first message code to get
*/
1596 unsigned int get_last
; /* last message code to get
*/
1597 unsigned int hw_id
; /* id of the previous hardware
message (or
0) */
1599 int type
; /* message type
*/
1600 user_handle_t win
; /* window handle
*/
1601 unsigned int msg
; /* message code
*/
1602 unsigned int wparam
; /* parameters (callback function for MSG_CALLBACK_RESULT
) */
1603 unsigned int lparam
; /* parameters (result for MSG_CALLBACK_RESULT
) */
1604 int x
; /* x position
*/
1605 int y
; /* y position
*/
1606 user_handle_t hook
; /* winevent hook handle
*/
1607 void
* hook_proc
; /* winevent hook proc address
*/
1608 unsigned int time
; /* message time
*/
1609 unsigned int info
; /* extra
info (callback argument for MSG_CALLBACK_RESULT
) */
1610 unsigned int hw_id
; /* id if hardware message
*/
1611 unsigned int active_hooks
; /* active hooks bitmap
*/
1612 size_t total
; /* total size of extra data
*/
1613 VARARG(data
,bytes
); /* message data for sent messages
*/
1615 #define GET_MSG_REMOVE
1 /* remove the message
*/
1616 #define GET_MSG_SENT_ONLY
2 /* only get sent messages
*/
1618 /* Reply to a sent message
*/
1620 unsigned int result
; /* message result
*/
1621 int remove
; /* should we remove the message?
*/
1622 VARARG(data
,bytes
); /* message data for sent messages
*/
1626 /* Accept the current hardware message
*/
1627 @
REQ(accept_hardware_message
)
1628 unsigned int hw_id
; /* id of the hardware message
*/
1629 int remove
; /* should we remove the message?
*/
1630 user_handle_t new_win
; /* new destination window for current message
*/
1634 /* Retrieve the reply for the last message sent
*/
1635 @
REQ(get_message_reply
)
1636 int cancel
; /* cancel message if not ready?
*/
1638 unsigned int result
; /* message result
*/
1639 VARARG(data
,bytes
); /* message data for sent messages
*/
1643 /* Set a window timer
*/
1645 user_handle_t win
; /* window handle
*/
1646 unsigned int msg
; /* message to post
*/
1647 unsigned int id
; /* timer id
*/
1648 unsigned int rate
; /* timer rate in ms
*/
1649 unsigned int lparam
; /* message
lparam (callback proc
) */
1651 unsigned int id
; /* timer id
*/
1655 /* Kill a window timer
*/
1656 @
REQ(kill_win_timer
)
1657 user_handle_t win
; /* window handle
*/
1658 unsigned int msg
; /* message to post
*/
1659 unsigned int id
; /* timer id
*/
1663 /* Retrieve info about a serial port
*/
1664 @
REQ(get_serial_info
)
1665 obj_handle_t handle
; /* handle to comm port
*/
1667 unsigned int readinterval
;
1668 unsigned int readconst
;
1669 unsigned int readmult
;
1670 unsigned int writeconst
;
1671 unsigned int writemult
;
1672 unsigned int eventmask
;
1673 unsigned int commerror
;
1677 /* Set info about a serial port
*/
1678 @
REQ(set_serial_info
)
1679 obj_handle_t handle
; /* handle to comm port
*/
1680 int flags
; /* bitmask to set
values (see below
) */
1681 unsigned int readinterval
;
1682 unsigned int readconst
;
1683 unsigned int readmult
;
1684 unsigned int writeconst
;
1685 unsigned int writemult
;
1686 unsigned int eventmask
;
1687 unsigned int commerror
;
1689 #define SERIALINFO_SET_TIMEOUTS
0x01
1690 #define SERIALINFO_SET_MASK
0x02
1691 #define SERIALINFO_SET_ERROR
0x04
1694 /* Create an async I
/O
*/
1695 @
REQ(register_async
)
1696 obj_handle_t handle
; /* handle to comm port
, socket or file
*/
1697 int type
; /* type of queue to look after
*/
1698 void
* io_apc
; /* APC routine to queue upon end of async
*/
1699 void
* io_sb
; /* I
/O status
block (unique across all async on this handle
) */
1700 void
* io_user
; /* data to pass back to caller
*/
1701 int count
; /* count
- usually # of bytes to be read
/written
*/
1703 #define ASYNC_TYPE_READ
0x01
1704 #define ASYNC_TYPE_WRITE
0x02
1705 #define ASYNC_TYPE_WAIT
0x03
1708 /* Cancel all async op on a fd
*/
1710 obj_handle_t handle
; /* handle to comm port
, socket or file
*/
1714 /* Create a named pipe
*/
1715 @
REQ(create_named_pipe
)
1716 unsigned int access
;
1717 unsigned int attributes
; /* object attributes
*/
1718 obj_handle_t rootdir
; /* root directory
*/
1719 unsigned int options
;
1721 unsigned int maxinstances
;
1722 unsigned int outsize
;
1723 unsigned int insize
;
1724 unsigned int timeout
;
1725 VARARG(name
,unicode_str
); /* pipe name
*/
1727 obj_handle_t handle
; /* handle to the pipe
*/
1730 /* flags in create_named_pipe and get_named_pipe_info
*/
1731 #define NAMED_PIPE_MESSAGE_STREAM_WRITE
0x0001
1732 #define NAMED_PIPE_MESSAGE_STREAM_READ
0x0002
1733 #define NAMED_PIPE_NONBLOCKING_MODE
0x0004
1736 /* Open an existing named pipe
*/
1737 @
REQ(open_named_pipe
)
1738 unsigned int access
;
1739 unsigned int attributes
; /* object attributes
*/
1740 obj_handle_t rootdir
; /* root directory
*/
1741 unsigned int flags
; /* file flags
*/
1742 VARARG(name
,unicode_str
); /* pipe name
*/
1744 obj_handle_t handle
; /* handle to the pipe
*/
1748 /* Connect to a named pipe
*/
1749 @
REQ(connect_named_pipe
)
1750 obj_handle_t handle
;
1756 /* Wait for a named pipe
*/
1757 @
REQ(wait_named_pipe
)
1758 obj_handle_t handle
;
1759 unsigned int timeout
;
1762 VARARG(name
,unicode_str
); /* pipe name
*/
1766 /* Disconnect a named pipe
*/
1767 @
REQ(disconnect_named_pipe
)
1768 obj_handle_t handle
;
1770 int fd
; /* associated fd to close
*/
1774 @
REQ(get_named_pipe_info
)
1775 obj_handle_t handle
;
1778 unsigned int maxinstances
;
1779 unsigned int outsize
;
1780 unsigned int insize
;
1784 /* Create a window
*/
1786 user_handle_t parent
; /* parent window
*/
1787 user_handle_t owner
; /* owner window
*/
1788 atom_t atom
; /* class atom
*/
1789 void
* instance
; /* module instance
*/
1791 user_handle_t handle
; /* created window
*/
1792 int extra
; /* number of extra bytes
*/
1793 void
* class_ptr
; /* pointer to class in client address space
*/
1797 /* Destroy a window
*/
1798 @
REQ(destroy_window
)
1799 user_handle_t handle
; /* handle to the window
*/
1803 /* Retrieve the desktop window for the current thread
*/
1804 @
REQ(get_desktop_window
)
1806 user_handle_t handle
; /* handle to the desktop window
*/
1810 /* Set a window owner
*/
1811 @
REQ(set_window_owner
)
1812 user_handle_t handle
; /* handle to the window
*/
1813 user_handle_t owner
; /* new owner
*/
1815 user_handle_t full_owner
; /* full handle of new owner
*/
1816 user_handle_t prev_owner
; /* full handle of previous owner
*/
1820 /* Get information from a window handle
*/
1821 @
REQ(get_window_info
)
1822 user_handle_t handle
; /* handle to the window
*/
1824 user_handle_t full_handle
; /* full
32-bit handle
*/
1825 user_handle_t last_active
; /* last active popup
*/
1826 process_id_t pid
; /* process owning the window
*/
1827 thread_id_t tid
; /* thread owning the window
*/
1828 atom_t atom
; /* class atom
*/
1829 int is_unicode
; /* ANSI or unicode
*/
1833 /* Set some information in a window
*/
1834 @
REQ(set_window_info
)
1835 user_handle_t handle
; /* handle to the window
*/
1836 unsigned int flags
; /* flags for fields to
set (see below
) */
1837 unsigned int style
; /* window style
*/
1838 unsigned int ex_style
; /* window extended style
*/
1839 unsigned int id
; /* window id
*/
1840 void
* instance
; /* creator instance
*/
1841 int is_unicode
; /* ANSI or unicode
*/
1842 void
* user_data
; /* user
-specific data
*/
1843 int extra_offset
; /* offset to set in extra bytes
*/
1844 size_t extra_size
; /* size to set in extra bytes
*/
1845 unsigned int extra_value
; /* value to set in extra bytes
*/
1847 unsigned int old_style
; /* old window style
*/
1848 unsigned int old_ex_style
; /* old window extended style
*/
1849 unsigned int old_id
; /* old window id
*/
1850 void
* old_instance
; /* old creator instance
*/
1851 void
* old_user_data
; /* old user
-specific data
*/
1852 unsigned int old_extra_value
; /* old value in extra bytes
*/
1854 #define SET_WIN_STYLE
0x01
1855 #define SET_WIN_EXSTYLE
0x02
1856 #define SET_WIN_ID
0x04
1857 #define SET_WIN_INSTANCE
0x08
1858 #define SET_WIN_USERDATA
0x10
1859 #define SET_WIN_EXTRA
0x20
1860 #define SET_WIN_UNICODE
0x40
1863 /* Set the parent of a window
*/
1865 user_handle_t handle
; /* handle to the window
*/
1866 user_handle_t parent
; /* handle to the parent
*/
1868 user_handle_t old_parent
; /* old parent window
*/
1869 user_handle_t full_parent
; /* full handle of new parent
*/
1873 /* Get a list of the window parents
, up to the root of the tree
*/
1874 @
REQ(get_window_parents
)
1875 user_handle_t handle
; /* handle to the window
*/
1877 int count
; /* total count of parents
*/
1878 VARARG(parents
,user_handles
); /* parent handles
*/
1882 /* Get a list of the window children
*/
1883 @
REQ(get_window_children
)
1884 user_handle_t parent
; /* parent window
*/
1885 atom_t atom
; /* class atom for the listed children
*/
1886 thread_id_t tid
; /* thread owning the listed children
*/
1888 int count
; /* total count of children
*/
1889 VARARG(children
,user_handles
); /* children handles
*/
1893 /* Get a list of the window children that contain a given point
*/
1894 @
REQ(get_window_children_from_point
)
1895 user_handle_t parent
; /* parent window
*/
1896 int x
; /* point in parent coordinates
*/
1899 int count
; /* total count of children
*/
1900 VARARG(children
,user_handles
); /* children handles
*/
1904 /* Get window tree information from a window handle
*/
1905 @
REQ(get_window_tree
)
1906 user_handle_t handle
; /* handle to the window
*/
1908 user_handle_t parent
; /* parent window
*/
1909 user_handle_t owner
; /* owner window
*/
1910 user_handle_t next_sibling
; /* next sibling in Z
-order
*/
1911 user_handle_t prev_sibling
; /* prev sibling in Z
-order
*/
1912 user_handle_t first_sibling
; /* first sibling in Z
-order
*/
1913 user_handle_t last_sibling
; /* last sibling in Z
-order
*/
1914 user_handle_t first_child
; /* first child
*/
1915 user_handle_t last_child
; /* last child
*/
1918 /* Set the position and Z order of a window
*/
1919 @
REQ(set_window_pos
)
1920 user_handle_t handle
; /* handle to the window
*/
1921 user_handle_t previous
; /* previous window in Z order
*/
1922 unsigned int flags
; /* SWP_
* flags
*/
1923 rectangle_t window
; /* window rectangle
*/
1924 rectangle_t client
; /* client rectangle
*/
1925 VARARG(valid
,rectangles
); /* valid rectangles from WM_NCCALCSIZE
*/
1927 unsigned int new_style
; /* new window style
*/
1931 /* Get the window and client rectangles of a window
*/
1932 @
REQ(get_window_rectangles
)
1933 user_handle_t handle
; /* handle to the window
*/
1935 rectangle_t window
; /* window rectangle
*/
1936 rectangle_t visible
; /* visible part of the window rectangle
*/
1937 rectangle_t client
; /* client rectangle
*/
1941 /* Get the window text
*/
1942 @
REQ(get_window_text
)
1943 user_handle_t handle
; /* handle to the window
*/
1945 VARARG(text
,unicode_str
); /* window text
*/
1949 /* Set the window text
*/
1950 @
REQ(set_window_text
)
1951 user_handle_t handle
; /* handle to the window
*/
1952 VARARG(text
,unicode_str
); /* window text
*/
1956 /* Get the coordinates offset between two windows
*/
1957 @
REQ(get_windows_offset
)
1958 user_handle_t from
; /* handle to the first window
*/
1959 user_handle_t to
; /* handle to the second window
*/
1961 int x
; /* x coordinate offset
*/
1962 int y
; /* y coordinate offset
*/
1966 /* Get the visible region of a window
*/
1967 @
REQ(get_visible_region
)
1968 user_handle_t window
; /* handle to the window
*/
1969 unsigned int flags
; /* DCX flags
*/
1971 user_handle_t top_win
; /* top window to clip against
*/
1972 int top_org_x
; /* top window visible rect origin in screen coords
*/
1974 int win_org_x
; /* window rect origin in screen coords
*/
1976 size_t total_size
; /* total size of the resulting region
*/
1977 VARARG(region
,rectangles
); /* list of rectangles for the
region (in screen coords
) */
1981 /* Get the window region
*/
1982 @
REQ(get_window_region
)
1983 user_handle_t window
; /* handle to the window
*/
1985 size_t total_size
; /* total size of the resulting region
*/
1986 VARARG(region
,rectangles
); /* list of rectangles for the region
*/
1990 /* Set the window region
*/
1991 @
REQ(set_window_region
)
1992 user_handle_t window
; /* handle to the window
*/
1993 VARARG(region
,rectangles
); /* list of rectangles for the region
*/
1997 /* Get the window update region
*/
1998 @
REQ(get_update_region
)
1999 user_handle_t window
; /* handle to the window
*/
2000 user_handle_t from_child
; /* child to start searching from
*/
2001 unsigned int flags
; /* update
flags (see below
) */
2003 user_handle_t child
; /* child to
repaint (or window itself
) */
2004 unsigned int flags
; /* resulting update
flags (see below
) */
2005 size_t total_size
; /* total size of the resulting region
*/
2006 VARARG(region
,rectangles
); /* list of rectangles for the region
*/
2008 #define UPDATE_NONCLIENT
0x01 /* get region for repainting non
-client area
*/
2009 #define UPDATE_ERASE
0x02 /* get region for erasing client area
*/
2010 #define UPDATE_PAINT
0x04 /* get region for painting client area
*/
2011 #define UPDATE_INTERNALPAINT
0x08 /* get region if internal paint is pending
*/
2012 #define UPDATE_ALLCHILDREN
0x10 /* force repaint of all children
*/
2013 #define UPDATE_NOCHILDREN
0x20 /* don
't try to repaint any children */
2014 #define UPDATE_NOREGION 0x40 /* don't return a region
, only the flags
*/
2017 /* Update the z order of a window so that a given rectangle is fully visible
*/
2018 @
REQ(update_window_zorder
)
2019 user_handle_t window
; /* handle to the window
*/
2020 rectangle_t rect
; /* rectangle that must be visible
*/
2024 /* Mark parts of a window as needing a redraw
*/
2026 user_handle_t window
; /* handle to the window
*/
2027 unsigned int flags
; /* RDW_
* flags
*/
2028 VARARG(region
,rectangles
); /* list of rectangles for the region
*/
2032 /* Set a window property
*/
2033 @
REQ(set_window_property
)
2034 user_handle_t window
; /* handle to the window
*/
2035 atom_t atom
; /* property
atom (if no name specified
) */
2036 obj_handle_t handle
; /* handle to store
*/
2037 VARARG(name
,unicode_str
); /* property name
*/
2041 /* Remove a window property
*/
2042 @
REQ(remove_window_property
)
2043 user_handle_t window
; /* handle to the window
*/
2044 atom_t atom
; /* property
atom (if no name specified
) */
2045 VARARG(name
,unicode_str
); /* property name
*/
2047 obj_handle_t handle
; /* handle stored in property
*/
2051 /* Get a window property
*/
2052 @
REQ(get_window_property
)
2053 user_handle_t window
; /* handle to the window
*/
2054 atom_t atom
; /* property
atom (if no name specified
) */
2055 VARARG(name
,unicode_str
); /* property name
*/
2057 obj_handle_t handle
; /* handle stored in property
*/
2061 /* Get the list of properties of a window
*/
2062 @
REQ(get_window_properties
)
2063 user_handle_t window
; /* handle to the window
*/
2065 int total
; /* total number of properties
*/
2066 VARARG(props
,properties
); /* list of properties
*/
2070 /* Create a window station
*/
2071 @
REQ(create_winstation
)
2072 unsigned int flags
; /* window station flags
*/
2073 unsigned int access
; /* wanted access rights
*/
2074 unsigned int attributes
; /* object attributes
*/
2075 VARARG(name
,unicode_str
); /* object name
*/
2077 obj_handle_t handle
; /* handle to the window station
*/
2081 /* Open a handle to a window station
*/
2082 @
REQ(open_winstation
)
2083 unsigned int access
; /* wanted access rights
*/
2084 unsigned int attributes
; /* object attributes
*/
2085 VARARG(name
,unicode_str
); /* object name
*/
2087 obj_handle_t handle
; /* handle to the window station
*/
2091 /* Close a window station
*/
2092 @
REQ(close_winstation
)
2093 obj_handle_t handle
; /* handle to the window station
*/
2097 /* Get the process current window station
*/
2098 @
REQ(get_process_winstation
)
2100 obj_handle_t handle
; /* handle to the window station
*/
2104 /* Set the process current window station
*/
2105 @
REQ(set_process_winstation
)
2106 obj_handle_t handle
; /* handle to the window station
*/
2110 /* Create a desktop
*/
2111 @
REQ(create_desktop
)
2112 unsigned int flags
; /* desktop flags
*/
2113 unsigned int access
; /* wanted access rights
*/
2114 unsigned int attributes
; /* object attributes
*/
2115 VARARG(name
,unicode_str
); /* object name
*/
2117 obj_handle_t handle
; /* handle to the desktop
*/
2121 /* Open a handle to a desktop
*/
2123 unsigned int flags
; /* desktop flags
*/
2124 unsigned int access
; /* wanted access rights
*/
2125 unsigned int attributes
; /* object attributes
*/
2126 VARARG(name
,unicode_str
); /* object name
*/
2128 obj_handle_t handle
; /* handle to the desktop
*/
2132 /* Close a desktop
*/
2134 obj_handle_t handle
; /* handle to the desktop
*/
2138 /* Get the thread current desktop
*/
2139 @
REQ(get_thread_desktop
)
2140 thread_id_t tid
; /* thread id
*/
2142 obj_handle_t handle
; /* handle to the desktop
*/
2146 /* Set the thread current desktop
*/
2147 @
REQ(set_thread_desktop
)
2148 obj_handle_t handle
; /* handle to the desktop
*/
2152 /* Get
/set information about a user
object (window station or desktop
) */
2153 @
REQ(set_user_object_info
)
2154 obj_handle_t handle
; /* handle to the object
*/
2155 unsigned int flags
; /* information to set
*/
2156 unsigned int obj_flags
; /* new object flags
*/
2158 int is_desktop
; /* is object a desktop?
*/
2159 unsigned int old_obj_flags
; /* old object flags
*/
2160 VARARG(name
,unicode_str
); /* object name
*/
2162 #define SET_USER_OBJECT_FLAGS
1
2165 /* Attach (or detach
) thread inputs
*/
2166 @
REQ(attach_thread_input
)
2167 thread_id_t tid_from
; /* thread to be attached
*/
2168 thread_id_t tid_to
; /* thread to which tid_from should be attached
*/
2169 int attach
; /* is it an attach?
*/
2173 /* Get input data for a given thread
*/
2174 @
REQ(get_thread_input
)
2175 thread_id_t tid
; /* id of thread
*/
2177 user_handle_t focus
; /* handle to the focus window
*/
2178 user_handle_t capture
; /* handle to the capture window
*/
2179 user_handle_t active
; /* handle to the active window
*/
2180 user_handle_t foreground
; /* handle to the global foreground window
*/
2181 user_handle_t menu_owner
; /* handle to the menu owner
*/
2182 user_handle_t move_size
; /* handle to the moving
/resizing window
*/
2183 user_handle_t caret
; /* handle to the caret window
*/
2184 rectangle_t rect
; /* caret rectangle
*/
2188 /* Get the time of the last input event
*/
2189 @
REQ(get_last_input_time
)
2195 /* Retrieve queue keyboard state for a given thread
*/
2197 thread_id_t tid
; /* id of thread
*/
2198 int key
; /* optional key code or
-1 */
2200 unsigned char state
; /* state of specified key
*/
2201 VARARG(keystate
,bytes
); /* state array for all the keys
*/
2204 /* Set queue keyboard state for a given thread
*/
2206 thread_id_t tid
; /* id of thread
*/
2207 VARARG(keystate
,bytes
); /* state array for all the keys
*/
2210 /* Set the system foreground window
*/
2211 @
REQ(set_foreground_window
)
2212 user_handle_t handle
; /* handle to the foreground window
*/
2214 user_handle_t previous
; /* handle to the previous foreground window
*/
2215 int send_msg_old
; /* whether we have to send a msg to the old window
*/
2216 int send_msg_new
; /* whether we have to send a msg to the new window
*/
2219 /* Set the current thread focus window
*/
2220 @
REQ(set_focus_window
)
2221 user_handle_t handle
; /* handle to the focus window
*/
2223 user_handle_t previous
; /* handle to the previous focus window
*/
2226 /* Set the current thread active window
*/
2227 @
REQ(set_active_window
)
2228 user_handle_t handle
; /* handle to the active window
*/
2230 user_handle_t previous
; /* handle to the previous active window
*/
2233 /* Set the current thread capture window
*/
2234 @
REQ(set_capture_window
)
2235 user_handle_t handle
; /* handle to the capture window
*/
2236 unsigned int flags
; /* capture
flags (see below
) */
2238 user_handle_t previous
; /* handle to the previous capture window
*/
2239 user_handle_t full_handle
; /* full
32-bit handle of new capture window
*/
2241 #define CAPTURE_MENU
0x01 /* capture is for a menu
*/
2242 #define CAPTURE_MOVESIZE
0x02 /* capture is for moving
/resizing
*/
2245 /* Set the current thread caret window
*/
2246 @
REQ(set_caret_window
)
2247 user_handle_t handle
; /* handle to the caret window
*/
2248 int width
; /* caret width
*/
2249 int height
; /* caret height
*/
2251 user_handle_t previous
; /* handle to the previous caret window
*/
2252 rectangle_t old_rect
; /* previous caret rectangle
*/
2253 int old_hide
; /* previous hide count
*/
2254 int old_state
; /* previous caret
state (1=on
, 0=off
) */
2258 /* Set the current thread caret information
*/
2259 @
REQ(set_caret_info
)
2260 unsigned int flags
; /* caret
flags (see below
) */
2261 user_handle_t handle
; /* handle to the caret window
*/
2262 int x
; /* caret x position
*/
2263 int y
; /* caret y position
*/
2264 int hide
; /* increment for hide
count (can be negative to show it
) */
2265 int state
; /* caret
state (1=on
, 0=off
, -1=toggle current state
) */
2267 user_handle_t full_handle
; /* handle to the current caret window
*/
2268 rectangle_t old_rect
; /* previous caret rectangle
*/
2269 int old_hide
; /* previous hide count
*/
2270 int old_state
; /* previous caret
state (1=on
, 0=off
) */
2272 #define SET_CARET_POS
0x01 /* set the caret position from x
,y
*/
2273 #define SET_CARET_HIDE
0x02 /* increment the caret hide count
*/
2274 #define SET_CARET_STATE
0x04 /* set the caret on
/off state
*/
2277 /* Set a window hook
*/
2279 int id
; /* id of the hook
*/
2280 process_id_t pid
; /* id of process to set the hook into
*/
2281 thread_id_t tid
; /* id of thread to set the hook into
*/
2285 void
* proc
; /* hook procedure
*/
2286 int unicode
; /* is it a unicode hook?
*/
2287 VARARG(module
,unicode_str
); /* module name
*/
2289 user_handle_t handle
; /* handle to the hook
*/
2290 unsigned int active_hooks
; /* active hooks bitmap
*/
2294 /* Remove a window hook
*/
2296 user_handle_t handle
; /* handle to the hook
*/
2297 int id
; /* id of the hook if handle is
0 */
2298 void
* proc
; /* hook procedure if handle is
0 */
2300 unsigned int active_hooks
; /* active hooks bitmap
*/
2304 /* Start calling a hook chain
*/
2305 @
REQ(start_hook_chain
)
2306 int id
; /* id of the hook
*/
2307 int event
; /* signalled event
*/
2308 user_handle_t window
; /* handle to the event window
*/
2309 int object_id
; /* object id for out of context winevent
*/
2310 int child_id
; /* child id for out of context winevent
*/
2312 user_handle_t handle
; /* handle to the next hook
*/
2313 process_id_t pid
; /* process id for low
-level keyboard
/mouse hooks
*/
2314 thread_id_t tid
; /* thread id for low
-level keyboard
/mouse hooks
*/
2315 void
* proc
; /* hook procedure
*/
2316 int unicode
; /* is it a unicode hook?
*/
2317 unsigned int active_hooks
; /* active hooks bitmap
*/
2318 VARARG(module
,unicode_str
); /* module name
*/
2322 /* Finished calling a hook chain
*/
2323 @
REQ(finish_hook_chain
)
2324 int id
; /* id of the hook
*/
2328 /* Get the next hook to call
*/
2330 user_handle_t handle
; /* handle to the current hook
*/
2331 int event
; /* signalled event
*/
2332 user_handle_t window
; /* handle to the event window
*/
2333 int object_id
; /* object id for out of context winevent
*/
2334 int child_id
; /* child id for out of context winevent
*/
2336 user_handle_t next
; /* handle to the next hook
*/
2337 int id
; /* id of the next hook
*/
2338 process_id_t pid
; /* process id for low
-level keyboard
/mouse hooks
*/
2339 thread_id_t tid
; /* thread id for low
-level keyboard
/mouse hooks
*/
2340 void
* proc
; /* next hook procedure
*/
2341 int prev_unicode
; /* was the previous a unicode hook?
*/
2342 int next_unicode
; /* is the next a unicode hook?
*/
2343 VARARG(module
,unicode_str
); /* module name
*/
2347 /* Create a window class
*/
2349 int local
; /* is it a local class?
*/
2350 atom_t atom
; /* class atom
*/
2351 unsigned int style
; /* class style
*/
2352 void
* instance
; /* module instance
*/
2353 int extra
; /* number of extra class bytes
*/
2354 int win_extra
; /* number of window extra bytes
*/
2355 void
* client_ptr
; /* pointer to class in client address space
*/
2359 /* Destroy a window class
*/
2361 atom_t atom
; /* class atom
*/
2362 void
* instance
; /* module instance
*/
2364 void
* client_ptr
; /* pointer to class in client address space
*/
2368 /* Set some information in a class
*/
2369 @
REQ(set_class_info
)
2370 user_handle_t window
; /* handle to the window
*/
2371 unsigned int flags
; /* flags for info to
set (see below
) */
2372 atom_t atom
; /* class atom
*/
2373 unsigned int style
; /* class style
*/
2374 int win_extra
; /* number of window extra bytes
*/
2375 void
* instance
; /* module instance
*/
2376 int extra_offset
; /* offset to set in extra bytes
*/
2377 size_t extra_size
; /* size to set in extra bytes
*/
2378 unsigned int extra_value
; /* value to set in extra bytes
*/
2380 atom_t old_atom
; /* previous class atom
*/
2381 unsigned int old_style
; /* previous class style
*/
2382 int old_extra
; /* previous number of class extra bytes
*/
2383 int old_win_extra
; /* previous number of window extra bytes
*/
2384 void
* old_instance
; /* previous module instance
*/
2385 unsigned int old_extra_value
; /* old value in extra bytes
*/
2387 #define SET_CLASS_ATOM
0x0001
2388 #define SET_CLASS_STYLE
0x0002
2389 #define SET_CLASS_WINEXTRA
0x0004
2390 #define SET_CLASS_INSTANCE
0x0008
2391 #define SET_CLASS_EXTRA
0x0010
2394 /* Set
/get clipboard information
*/
2395 @
REQ(set_clipboard_info
)
2396 unsigned int flags
; /* flags for fields to
set (see below
) */
2397 user_handle_t clipboard
; /* clipboard window
*/
2398 user_handle_t owner
; /* clipboard owner
*/
2399 user_handle_t viewer
; /* first clipboard viewer
*/
2400 unsigned int seqno
; /* change sequence number
*/
2402 unsigned int flags
; /* status
flags (see below
) */
2403 user_handle_t old_clipboard
; /* old clipboard window
*/
2404 user_handle_t old_owner
; /* old clipboard owner
*/
2405 user_handle_t old_viewer
; /* old clipboard viewer
*/
2406 unsigned int seqno
; /* current sequence number
*/
2409 #define SET_CB_OPEN
0x001
2410 #define SET_CB_OWNER
0x002
2411 #define SET_CB_VIEWER
0x004
2412 #define SET_CB_SEQNO
0x008
2413 #define SET_CB_RELOWNER
0x010
2414 #define SET_CB_CLOSE
0x020
2415 #define CB_OPEN
0x040
2416 #define CB_OWNER
0x080
2417 #define CB_PROCESS
0x100
2420 /* Open a security token
*/
2422 obj_handle_t handle
; /* handle to the thread or process
*/
2423 unsigned int access
; /* access rights to the new token
*/
2424 unsigned int attributes
;/* object attributes
*/
2425 unsigned int flags
; /* flags (see below
) */
2427 obj_handle_t token
; /* handle to the token
*/
2429 #define OPEN_TOKEN_THREAD
1
2430 #define OPEN_TOKEN_AS_SELF
2
2433 /* Set
/get the global windows
*/
2434 @
REQ(set_global_windows
)
2435 unsigned int flags
; /* flags for fields to
set (see below
) */
2436 user_handle_t shell_window
; /* handle to the new shell window
*/
2437 user_handle_t shell_listview
; /* handle to the new shell listview window
*/
2438 user_handle_t progman_window
; /* handle to the new program manager window
*/
2439 user_handle_t taskman_window
; /* handle to the new task manager window
*/
2441 user_handle_t old_shell_window
; /* handle to the shell window
*/
2442 user_handle_t old_shell_listview
; /* handle to the shell listview window
*/
2443 user_handle_t old_progman_window
; /* handle to the new program manager window
*/
2444 user_handle_t old_taskman_window
; /* handle to the new task manager window
*/
2446 #define SET_GLOBAL_SHELL_WINDOWS
0x01 /* set both main shell and listview windows
*/
2447 #define SET_GLOBAL_PROGMAN_WINDOW
0x02
2448 #define SET_GLOBAL_TASKMAN_WINDOW
0x04
2450 /* Adjust the privileges held by a token
*/
2451 @
REQ(adjust_token_privileges
)
2452 obj_handle_t handle
; /* handle to the token
*/
2453 int disable_all
; /* disable all privileges?
*/
2454 int get_modified_state
; /* get modified privileges?
*/
2455 VARARG(privileges
,LUID_AND_ATTRIBUTES
); /* privileges to enable
/disable
/remove
*/
2457 unsigned int len
; /* total length in bytes required to store token privileges
*/
2458 VARARG(privileges
,LUID_AND_ATTRIBUTES
); /* modified privileges
*/
2461 /* Retrieves the set of privileges held by or available to a token
*/
2462 @
REQ(get_token_privileges
)
2463 obj_handle_t handle
; /* handle to the token
*/
2465 unsigned int len
; /* total length in bytes required to store token privileges
*/
2466 VARARG(privileges
,LUID_AND_ATTRIBUTES
); /* privileges held by or available to a token
*/
2469 /* Check the token has the required privileges
*/
2470 @
REQ(check_token_privileges
)
2471 obj_handle_t handle
; /* handle to the token
*/
2472 int all_required
; /* are all the privileges required for the check to succeed?
*/
2473 VARARG(privileges
,LUID_AND_ATTRIBUTES
); /* privileges to check
*/
2475 int has_privileges
; /* does the token have the required privileges?
*/
2476 VARARG(privileges
,LUID_AND_ATTRIBUTES
); /* privileges held by or available to a token
*/
2479 @
REQ(duplicate_token
)
2480 obj_handle_t handle
; /* handle to the token to duplicate
*/
2481 unsigned int access
; /* access rights to the new token
*/
2482 unsigned int attributes
; /* object attributes
*/
2483 int primary
; /* is the new token to be a primary one?
*/
2484 int impersonation_level
; /* impersonation level of the new token
*/
2486 obj_handle_t new_handle
; /* duplicated handle
*/
2490 obj_handle_t handle
; /* handle to the token
*/
2491 unsigned int desired_access
; /* desired access to the object
*/
2492 unsigned int mapping_read
; /* mapping from generic read to specific rights
*/
2493 unsigned int mapping_write
; /* mapping from generic write to specific rights
*/
2494 unsigned int mapping_execute
; /* mapping from generic execute to specific rights
*/
2495 unsigned int mapping_all
; /* mapping from generic all to specific rights
*/
2496 VARARG(sd
,security_descriptor
); /* security descriptor to check
*/
2498 unsigned int access_granted
; /* access rights actually granted
*/
2499 unsigned int access_status
; /* was access granted?
*/
2500 unsigned int privileges_len
; /* length needed to store privileges
*/
2501 VARARG(privileges
,LUID_AND_ATTRIBUTES
); /* privileges used during access check
*/
2504 @
REQ(get_token_user
)
2505 obj_handle_t handle
; /* handle to the token
*/
2507 size_t user_len
; /* length needed to store user
*/
2508 VARARG(user
,SID
); /* sid of the user the token represents
*/
2511 /* Create a mailslot
*/
2512 @
REQ(create_mailslot
)
2513 unsigned int access
; /* wanted access rights
*/
2514 unsigned int attributes
; /* object attributes
*/
2515 obj_handle_t rootdir
; /* root directory
*/
2516 unsigned int max_msgsize
;
2518 VARARG(name
,unicode_str
); /* mailslot name
*/
2520 obj_handle_t handle
; /* handle to the mailslot
*/
2524 /* Open an existing mailslot
*/
2526 unsigned int access
;
2527 unsigned int attributes
; /* object attributes
*/
2528 obj_handle_t rootdir
; /* root directory
*/
2529 unsigned int sharing
; /* sharing mode
*/
2530 VARARG(name
,unicode_str
); /* mailslot name
*/
2532 obj_handle_t handle
; /* handle to the mailslot
*/
2536 /* Set mailslot information
*/
2537 @
REQ(set_mailslot_info
)
2538 obj_handle_t handle
; /* handle to the mailslot
*/
2542 unsigned int max_msgsize
;
2544 unsigned int msg_count
;
2545 unsigned int next_msgsize
;
2547 #define MAILSLOT_SET_READ_TIMEOUT
1
2550 /* Create a directory object
*/
2551 @
REQ(create_directory
)
2552 unsigned int access
; /* access flags
*/
2553 unsigned int attributes
; /* object attributes
*/
2554 obj_handle_t rootdir
; /* root directory
*/
2555 VARARG(directory_name
,unicode_str
); /* Directory name
*/
2557 obj_handle_t handle
; /* handle to the directory
*/
2561 /* Open a directory object
*/
2562 @
REQ(open_directory
)
2563 unsigned int access
; /* access flags
*/
2564 unsigned int attributes
; /* object attributes
*/
2565 obj_handle_t rootdir
; /* root directory
*/
2566 VARARG(directory_name
,unicode_str
); /* Directory name
*/
2568 obj_handle_t handle
; /* handle to the directory
*/
2572 /* Create a symbolic link object
*/
2573 @
REQ(create_symlink
)
2574 unsigned int access
; /* access flags
*/
2575 unsigned int attributes
; /* object attributes
*/
2576 obj_handle_t rootdir
; /* root directory
*/
2577 size_t name_len
; /* length of the symlink name in bytes
*/
2578 VARARG(name
,unicode_str
,name_len
); /* symlink name
*/
2579 VARARG(target_name
,unicode_str
); /* target name
*/
2581 obj_handle_t handle
; /* handle to the symlink
*/
2585 /* Open a symbolic link object
*/
2587 unsigned int access
; /* access flags
*/
2588 unsigned int attributes
; /* object attributes
*/
2589 obj_handle_t rootdir
; /* root directory
*/
2590 VARARG(name
,unicode_str
); /* symlink name
*/
2592 obj_handle_t handle
; /* handle to the symlink
*/
2596 /* Query a symbolic link object
*/
2598 obj_handle_t handle
; /* handle to the symlink
*/
2600 VARARG(target_name
,unicode_str
); /* target name
*/