3 * Wine server protocol definition
5 * Copyright (C
) 2001 Alexandre Julliard
7 * This file is used by tools
/make_requests to build the
8 * protocol structures in include
/wine
/server_protocol.h
10 * This library is free software
; you can redistribute it and
/or
11 * modify it under the terms of the GNU Lesser General Public
12 * License as published by the Free Software Foundation
; either
13 * version
2.1 of the License
, or (at your option
) any later version.
15 * This library is distributed in the hope that it will be useful
,
16 * but WITHOUT ANY WARRANTY
; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU
18 * Lesser General Public License for more details.
20 * You should have received a copy of the GNU Lesser General Public
21 * License along with this library
; if not
, write to the Free Software
22 * Foundation
, Inc.
, 51 Franklin St
, Fifth Floor
, Boston
, MA
02110-1301, USA
25 @HEADER
/* start of C declarations
*/
34 typedef unsigned int obj_handle_t
;
35 typedef unsigned int user_handle_t
;
36 typedef unsigned int atom_t
;
37 typedef unsigned int process_id_t
;
38 typedef unsigned int thread_id_t
;
39 typedef unsigned int data_size_t
;
40 typedef unsigned int ioctl_code_t
;
41 typedef unsigned __int64 lparam_t
;
42 typedef unsigned __int64 apc_param_t
;
43 typedef unsigned __int64 mem_size_t
;
44 typedef unsigned __int64 file_pos_t
;
45 typedef unsigned __int64 client_ptr_t
;
46 typedef unsigned __int64 affinity_t
;
47 typedef client_ptr_t mod_handle_t
;
51 int req
; /* request code
*/
52 data_size_t request_size
; /* request variable part size
*/
53 data_size_t reply_size
; /* reply variable part maximum size
*/
58 unsigned int error
; /* error result
*/
59 data_size_t reply_size
; /* reply variable part size
*/
62 /* placeholder structure for the maximum allowed request size
*/
63 /* this is used to construct the generic_request union
*/
64 struct request_max_size
66 int pad
[16]; /* the max request size is
16 ints
*/
69 #define FIRST_USER_HANDLE
0x0020 /* first possible value for low word of user handle
*/
70 #define LAST_USER_HANDLE
0xffef /* last possible value for low word of user handle
*/
73 /* debug event data
*/
76 int code
; /* event code
*/
79 int code
; /* EXCEPTION_DEBUG_EVENT
*/
80 int first
; /* first chance exception?
*/
81 unsigned int exc_code
; /* exception code
*/
82 unsigned int flags
; /* exception flags
*/
83 client_ptr_t record
; /* exception record
*/
84 client_ptr_t address
; /* exception address
*/
85 int nb_params
; /* number of parameters
*/
87 client_ptr_t params
[15]; /* parameters
*/
91 int code
; /* CREATE_THREAD_DEBUG_EVENT
*/
92 obj_handle_t handle
; /* handle to the new thread
*/
93 client_ptr_t teb
; /* thread
teb (in debugged process address space
) */
94 client_ptr_t start
; /* thread startup routine
*/
98 int code
; /* CREATE_PROCESS_DEBUG_EVENT
*/
99 obj_handle_t file
; /* handle to the process exe file
*/
100 obj_handle_t process
; /* handle to the new process
*/
101 obj_handle_t thread
; /* handle to the new thread
*/
102 mod_handle_t base
; /* base of executable image
*/
103 int dbg_offset
; /* offset of debug info in file
*/
104 int dbg_size
; /* size of debug info
*/
105 client_ptr_t teb
; /* thread
teb (in debugged process address space
) */
106 client_ptr_t start
; /* thread startup routine
*/
107 client_ptr_t name
; /* image
name (optional
) */
108 int unicode
; /* is it Unicode?
*/
112 int code
; /* EXIT_THREAD_DEBUG_EVENT
/EXIT_PROCESS_DEBUG_EVENT
*/
113 int exit_code
; /* thread or process exit code
*/
117 int code
; /* LOAD_DLL_DEBUG_EVENT
*/
118 obj_handle_t handle
; /* file handle for the dll
*/
119 mod_handle_t base
; /* base address of the dll
*/
120 int dbg_offset
; /* offset of debug info in file
*/
121 int dbg_size
; /* size of debug info
*/
122 client_ptr_t name
; /* image
name (optional
) */
123 int unicode
; /* is it Unicode?
*/
127 int code
; /* UNLOAD_DLL_DEBUG_EVENT
*/
129 mod_handle_t base
; /* base address of the dll
*/
133 int code
; /* OUTPUT_DEBUG_STRING_EVENT
*/
134 data_size_t length
; /* string length
*/
135 client_ptr_t string
; /* string to
display (in debugged process address space
) */
139 int code
; /* RIP_EVENT
*/
145 /* supported CPU types
*/
148 CPU_x86
, CPU_x86_64
, CPU_ALPHA
, CPU_POWERPC
, CPU_SPARC
150 typedef int cpu_type_t
;
155 cpu_type_t cpu
; /* cpu type
*/
156 unsigned int flags
; /* SERVER_CTX_
* flags
*/
159 struct
{ unsigned int eip
, ebp
, esp
, eflags
, cs
, ss
; } i386_regs
;
160 struct
{ unsigned __int64 rip
, rbp
, rsp
;
161 unsigned int cs
, ss
, flags
, __pad
; } x86_64_regs
;
162 struct
{ unsigned __int64 fir
;
163 unsigned int psr
, __pad
; } alpha_regs
;
164 struct
{ unsigned int iar
, msr
, ctr
, lr
, dar
, dsisr
, trap
, __pad
; } powerpc_regs
;
165 struct
{ unsigned int psr
, pc
, npc
, y
, wim
, tbr
; } sparc_regs
;
166 } ctl
; /* selected by SERVER_CTX_CONTROL
*/
169 struct
{ unsigned int eax
, ebx
, ecx
, edx
, esi
, edi
; } i386_regs
;
170 struct
{ unsigned __int64 rax
,rbx
, rcx
, rdx
, rsi
, rdi
,
171 r8
, r9
, r10
, r11
, r12
, r13
, r14
, r15
; } x86_64_regs
;
172 struct
{ unsigned __int64 v0
, t0
, t1
, t2
, t3
, t4
, t5
, t6
, t7
, t8
, t9
, t10
, t11
, t12
,
173 s0
, s1
, s2
, s3
, s4
, s5
, s6
, a0
, a1
, a2
, a3
, a4
, a5
, at
; } alpha_regs
;
174 struct
{ unsigned int gpr
[32], cr
, xer
; } powerpc_regs
;
175 struct
{ unsigned int g
[8], o
[8], l
[8], i
[8]; } sparc_regs
;
176 } integer
; /* selected by SERVER_CTX_INTEGER
*/
179 struct
{ unsigned int ds
, es
, fs
, gs
; } i386_regs
;
180 struct
{ unsigned int ds
, es
, fs
, gs
; } x86_64_regs
;
181 } seg
; /* selected by SERVER_CTX_SEGMENTS
*/
184 struct
{ unsigned int ctrl
, status
, tag
, err_off
, err_sel
, data_off
, data_sel
, cr0npx
;
185 unsigned char regs
[80]; } i386_regs
;
186 struct
{ struct
{ unsigned __int64 low
, high
; } fpregs
[32]; } x86_64_regs
;
187 struct
{ unsigned __int64 f
[32], fpcr
, softfpcr
; } alpha_regs
;
188 struct
{ double fpr
[32], fpscr
; } powerpc_regs
;
189 } fp
; /* selected by SERVER_CTX_FLOATING_POINT
*/
192 struct
{ unsigned int dr0
, dr1
, dr2
, dr3
, dr6
, dr7
; } i386_regs
;
193 struct
{ unsigned __int64 dr0
, dr1
, dr2
, dr3
, dr6
, dr7
; } x86_64_regs
;
194 struct
{ unsigned int dr
[8]; } powerpc_regs
;
195 } debug
; /* selected by SERVER_CTX_DEBUG_REGISTERS
*/
198 unsigned char i386_regs
[512];
199 } ext
; /* selected by SERVER_CTX_EXTENDED_REGISTERS
*/
202 #define SERVER_CTX_CONTROL
0x01
203 #define SERVER_CTX_INTEGER
0x02
204 #define SERVER_CTX_SEGMENTS
0x04
205 #define SERVER_CTX_FLOATING_POINT
0x08
206 #define SERVER_CTX_DEBUG_REGISTERS
0x10
207 #define SERVER_CTX_EXTENDED_REGISTERS
0x20
209 /* structure used in sending an fd from client to server
*/
212 thread_id_t tid
; /* thread id
*/
213 int fd
; /* file descriptor on client
-side
*/
216 /* structure sent by the server on the wait fifo
*/
219 client_ptr_t cookie
; /* magic cookie that was passed in select_request
*/
220 int signaled
; /* wait result
*/
224 /* NT
-style timeout
, in
100ns units
, negative means relative timeout
*/
225 typedef __int64 timeout_t
;
226 #define
TIMEOUT_INFINITE (((timeout_t
)0x7fffffff) << 32 |
0xffffffff)
228 /* structure for process startup info
*/
231 unsigned int debug_flags
;
232 unsigned int console_flags
;
233 obj_handle_t console
;
235 obj_handle_t hstdout
;
236 obj_handle_t hstderr
;
243 unsigned int attribute
;
246 data_size_t curdir_len
;
247 data_size_t dllpath_len
;
248 data_size_t imagepath_len
;
249 data_size_t cmdline_len
;
250 data_size_t title_len
;
251 data_size_t desktop_len
;
252 data_size_t shellinfo_len
;
253 data_size_t runtime_len
;
254 /* VARARG(curdir
,unicode_str
,curdir_len
); */
255 /* VARARG(dllpath
,unicode_str
,dllpath_len
); */
256 /* VARARG(imagepath
,unicode_str
,imagepath_len
); */
257 /* VARARG(cmdline
,unicode_str
,cmdline_len
); */
258 /* VARARG(title
,unicode_str
,title_len
); */
259 /* VARARG(desktop
,unicode_str
,desktop_len
); */
260 /* VARARG(shellinfo
,unicode_str
,shellinfo_len
); */
261 /* VARARG(runtime
,unicode_str
,runtime_len
); */
264 /* structure returned in the list of window properties
*/
267 atom_t atom
; /* property atom
*/
268 int string
; /* was atom a string originally?
*/
269 lparam_t data
; /* data stored in property
*/
272 /* structure to specify window rectangles
*/
281 /* structure for parameters of async I
/O calls
*/
284 obj_handle_t handle
; /* object to perform I
/O on
*/
285 obj_handle_t event
; /* event to signal when done
*/
286 client_ptr_t callback
; /* client
-side callback to call upon end of async
*/
287 client_ptr_t iosb
; /* I
/O status block in client addr space
*/
288 client_ptr_t arg
; /* opaque user data to pass to callback
*/
289 apc_param_t cvalue
; /* completion value to use for completion events
*/
292 /* structures for extra message data
*/
294 struct hardware_msg_data
296 lparam_t info
; /* extra info
*/
297 int x
; /* x position
*/
298 int y
; /* y position
*/
299 unsigned int hw_id
; /* unique id
*/
303 struct callback_msg_data
305 client_ptr_t callback
; /* callback function
*/
306 lparam_t data
; /* user data for callback
*/
307 lparam_t result
; /* message result
*/
310 struct winevent_msg_data
312 user_handle_t hook
; /* hook handle
*/
313 thread_id_t tid
; /* thread id
*/
314 client_ptr_t hook_proc
; /* hook proc address
*/
315 /* followed by module name if any
*/
320 unsigned char bytes
[1]; /* raw data for sent messages
*/
321 struct hardware_msg_data hardware
;
322 struct callback_msg_data callback
;
323 struct winevent_msg_data winevent
;
326 /* structure for console char
/attribute info
*/
335 unsigned int low_part
;
339 #define MAX_ACL_LEN
65535
341 struct security_descriptor
343 unsigned int control
; /* SE_ flags
*/
344 data_size_t owner_len
;
345 data_size_t group_len
;
346 data_size_t sacl_len
;
347 data_size_t dacl_len
;
348 /* VARARG(owner
,SID
); */
349 /* VARARG(group
,SID
); */
350 /* VARARG(sacl
,ACL
); */
351 /* VARARG(dacl
,ACL
); */
354 struct object_attributes
356 obj_handle_t rootdir
; /* root directory
*/
357 data_size_t sd_len
; /* length of security_descriptor data. may be
0 */
358 data_size_t name_len
; /* length of the name string. may be
0 */
359 /* VARARG(sd
,security_descriptor
); */
360 /* VARARG(name
,unicode_str
); */
366 /* unsigned int attributes
[count
]; */
367 /* VARARG(sids
,SID
); */
393 enum apc_type type
; /* APC_USER
*/
395 client_ptr_t func
; /* void (__stdcall
*func
)(ULONG_PTR
,ULONG_PTR
,ULONG_PTR
); */
396 apc_param_t args
[3]; /* arguments for user function
*/
400 enum apc_type type
; /* APC_TIMER
*/
402 client_ptr_t func
; /* void (__stdcall
*func
)(void
*, unsigned int
, unsigned int
); */
403 timeout_t time
; /* absolute time of expiration
*/
404 client_ptr_t arg
; /* user argument
*/
408 enum apc_type type
; /* APC_ASYNC_IO
*/
409 unsigned int status
; /* I
/O status
*/
410 client_ptr_t func
; /* unsigned
int (*func)(void*, void*, unsigned int, void **); */
411 client_ptr_t user
; /* user pointer
*/
412 client_ptr_t sb
; /* status block
*/
416 enum apc_type type
; /* APC_VIRTUAL_ALLOC
*/
417 unsigned int op_type
; /* type of operation
*/
418 client_ptr_t addr
; /* requested address
*/
419 mem_size_t size
; /* allocation size
*/
420 unsigned int zero_bits
; /* allocation alignment
*/
421 unsigned int prot
; /* memory protection flags
*/
425 enum apc_type type
; /* APC_VIRTUAL_FREE
*/
426 unsigned int op_type
; /* type of operation
*/
427 client_ptr_t addr
; /* requested address
*/
428 mem_size_t size
; /* allocation size
*/
432 enum apc_type type
; /* APC_VIRTUAL_QUERY
*/
434 client_ptr_t addr
; /* requested address
*/
438 enum apc_type type
; /* APC_VIRTUAL_PROTECT
*/
439 unsigned int prot
; /* new protection flags
*/
440 client_ptr_t addr
; /* requested address
*/
441 mem_size_t size
; /* requested size
*/
445 enum apc_type type
; /* APC_VIRTUAL_FLUSH
*/
447 client_ptr_t addr
; /* requested address
*/
448 mem_size_t size
; /* requested size
*/
452 enum apc_type type
; /* APC_VIRTUAL_LOCK
*/
454 client_ptr_t addr
; /* requested address
*/
455 mem_size_t size
; /* requested size
*/
459 enum apc_type type
; /* APC_VIRTUAL_UNLOCK
*/
461 client_ptr_t addr
; /* requested address
*/
462 mem_size_t size
; /* requested size
*/
466 enum apc_type type
; /* APC_MAP_VIEW
*/
467 obj_handle_t handle
; /* mapping handle
*/
468 client_ptr_t addr
; /* requested address
*/
469 mem_size_t size
; /* allocation size
*/
470 file_pos_t offset
; /* file offset
*/
471 unsigned int alloc_type
;/* allocation type
*/
472 unsigned short zero_bits
; /* allocation alignment
*/
473 unsigned short prot
; /* memory protection flags
*/
477 enum apc_type type
; /* APC_UNMAP_VIEW
*/
479 client_ptr_t addr
; /* view address
*/
483 enum apc_type type
; /* APC_CREATE_THREAD
*/
484 int suspend
; /* suspended thread?
*/
485 client_ptr_t func
; /* void (__stdcall
*func
)(void*)
; start function
*/
486 client_ptr_t arg
; /* argument for start function
*/
487 mem_size_t reserve
; /* reserve size for thread stack
*/
488 mem_size_t commit
; /* commit size for thread stack
*/
497 enum apc_type type
; /* APC_ASYNC_IO
*/
498 unsigned int status
; /* new status of async operation
*/
499 client_ptr_t apc
; /* user APC to call
*/
500 unsigned int total
; /* bytes transferred
*/
504 enum apc_type type
; /* APC_VIRTUAL_ALLOC
*/
505 unsigned int status
; /* status returned by call
*/
506 client_ptr_t addr
; /* resulting address
*/
507 mem_size_t size
; /* resulting size
*/
511 enum apc_type type
; /* APC_VIRTUAL_FREE
*/
512 unsigned int status
; /* status returned by call
*/
513 client_ptr_t addr
; /* resulting address
*/
514 mem_size_t size
; /* resulting size
*/
518 enum apc_type type
; /* APC_VIRTUAL_QUERY
*/
519 unsigned int status
; /* status returned by call
*/
520 client_ptr_t base
; /* resulting base address
*/
521 client_ptr_t alloc_base
;/* resulting allocation base
*/
522 mem_size_t size
; /* resulting region size
*/
523 unsigned short state
; /* resulting region state
*/
524 unsigned short prot
; /* resulting region protection
*/
525 unsigned short alloc_prot
;/* resulting allocation protection
*/
526 unsigned short alloc_type
;/* resulting region allocation type
*/
530 enum apc_type type
; /* APC_VIRTUAL_PROTECT
*/
531 unsigned int status
; /* status returned by call
*/
532 client_ptr_t addr
; /* resulting address
*/
533 mem_size_t size
; /* resulting size
*/
534 unsigned int prot
; /* old protection flags
*/
538 enum apc_type type
; /* APC_VIRTUAL_FLUSH
*/
539 unsigned int status
; /* status returned by call
*/
540 client_ptr_t addr
; /* resulting address
*/
541 mem_size_t size
; /* resulting size
*/
545 enum apc_type type
; /* APC_VIRTUAL_LOCK
*/
546 unsigned int status
; /* status returned by call
*/
547 client_ptr_t addr
; /* resulting address
*/
548 mem_size_t size
; /* resulting size
*/
552 enum apc_type type
; /* APC_VIRTUAL_UNLOCK
*/
553 unsigned int status
; /* status returned by call
*/
554 client_ptr_t addr
; /* resulting address
*/
555 mem_size_t size
; /* resulting size
*/
559 enum apc_type type
; /* APC_MAP_VIEW
*/
560 unsigned int status
; /* status returned by call
*/
561 client_ptr_t addr
; /* resulting address
*/
562 mem_size_t size
; /* resulting size
*/
566 enum apc_type type
; /* APC_MAP_VIEW
*/
567 unsigned int status
; /* status returned by call
*/
571 enum apc_type type
; /* APC_CREATE_THREAD
*/
572 unsigned int status
; /* status returned by call
*/
573 thread_id_t tid
; /* thread id
*/
574 obj_handle_t handle
; /* handle to new thread
*/
578 /****************************************************************/
579 /* Request declarations
*/
581 /* Create a new process from the context of the parent
*/
583 int inherit_all
; /* inherit all handles from parent
*/
584 unsigned int create_flags
; /* creation flags
*/
585 int socket_fd
; /* file descriptor for process socket
*/
586 obj_handle_t exe_file
; /* file handle for main exe
*/
587 unsigned int process_access
; /* access rights for process object
*/
588 unsigned int process_attr
; /* attributes for process object
*/
589 unsigned int thread_access
; /* access rights for thread object
*/
590 unsigned int thread_attr
; /* attributes for thread object
*/
591 data_size_t info_size
; /* size of startup info
*/
592 VARARG(info
,startup_info
,info_size
); /* startup information
*/
593 VARARG(env
,unicode_str
); /* environment for new process
*/
595 obj_handle_t info
; /* new process info handle
*/
596 process_id_t pid
; /* process id
*/
597 obj_handle_t phandle
; /* process
handle (in the current process
) */
598 thread_id_t tid
; /* thread id
*/
599 obj_handle_t thandle
; /* thread
handle (in the current process
) */
603 /* Retrieve information about a newly started process
*/
604 @
REQ(get_new_process_info
)
605 obj_handle_t info
; /* info handle returned from new_process_request
*/
607 int success
; /* did the process start successfully?
*/
608 int exit_code
; /* process exit code if failed
*/
612 /* Create a new thread from the context of the parent
*/
614 unsigned int access
; /* wanted access rights
*/
615 unsigned int attributes
; /* object attributes
*/
616 int suspend
; /* new thread should be suspended on creation
*/
617 int request_fd
; /* fd for request pipe
*/
619 thread_id_t tid
; /* thread id
*/
620 obj_handle_t handle
; /* thread
handle (in the current process
) */
624 /* Retrieve the new process startup info
*/
625 @
REQ(get_startup_info
)
627 obj_handle_t exe_file
; /* file handle for main exe
*/
628 data_size_t info_size
; /* size of startup info
*/
629 VARARG(info
,startup_info
,info_size
); /* startup information
*/
630 VARARG(env
,unicode_str
); /* environment
*/
634 /* Signal the end of the process initialization
*/
635 @
REQ(init_process_done
)
636 int gui
; /* is it a GUI process?
*/
637 mod_handle_t module
; /* main module base address
*/
638 client_ptr_t ldt_copy
; /* address of LDT
copy (in thread address space
) */
639 client_ptr_t entry
; /* process entry point
*/
643 /* Initialize a thread
; called from the child after
fork()/clone() */
645 int unix_pid
; /* Unix pid of new thread
*/
646 int unix_tid
; /* Unix tid of new thread
*/
647 int debug_level
; /* new debug level
*/
648 client_ptr_t teb
; /* TEB of new
thread (in thread address space
) */
649 client_ptr_t entry
; /* entry point or PEB if initial
thread (in thread address space
) */
650 int reply_fd
; /* fd for reply pipe
*/
651 int wait_fd
; /* fd for blocking calls pipe
*/
652 cpu_type_t cpu
; /* CPU that this thread is running on
*/
654 process_id_t pid
; /* process id of the new thread
's process */
655 thread_id_t tid; /* thread id of the new thread */
656 timeout_t server_start; /* server start time */
657 data_size_t info_size; /* total size of startup info */
658 int version; /* protocol version */
659 unsigned int all_cpus; /* bitset of supported CPUs */
663 /* Terminate a process */
664 @REQ(terminate_process)
665 obj_handle_t handle; /* process handle to terminate */
666 int exit_code; /* process exit code */
668 int self; /* suicide? */
672 /* Terminate a thread */
673 @REQ(terminate_thread)
674 obj_handle_t handle; /* thread handle to terminate */
675 int exit_code; /* thread exit code */
677 int self; /* suicide? */
678 int last; /* last thread in this process? */
682 /* Retrieve information about a process */
683 @REQ(get_process_info)
684 obj_handle_t handle; /* process handle */
686 process_id_t pid; /* server process id */
687 process_id_t ppid; /* server process id of parent */
688 affinity_t affinity; /* process affinity mask */
689 client_ptr_t peb; /* PEB address in process address space */
690 timeout_t start_time; /* process start time */
691 timeout_t end_time; /* process end time */
692 int exit_code; /* process exit code */
693 int priority; /* priority class */
694 cpu_type_t cpu; /* CPU that this process is running on */
695 int debugger_present; /* process is being debugged */
699 /* Set a process informations */
700 @REQ(set_process_info)
701 obj_handle_t handle; /* process handle */
702 int mask; /* setting mask (see below) */
703 int priority; /* priority class */
704 affinity_t affinity; /* affinity mask */
706 #define SET_PROCESS_INFO_PRIORITY 0x01
707 #define SET_PROCESS_INFO_AFFINITY 0x02
710 /* Retrieve information about a thread */
711 @REQ(get_thread_info)
712 obj_handle_t handle; /* thread handle */
713 thread_id_t tid_in; /* thread id (optional) */
715 process_id_t pid; /* server process id */
716 thread_id_t tid; /* server thread id */
717 client_ptr_t teb; /* thread teb pointer */
718 affinity_t affinity; /* thread affinity mask */
719 timeout_t creation_time; /* thread creation time */
720 timeout_t exit_time; /* thread exit time */
721 int exit_code; /* thread exit code */
722 int priority; /* thread priority level */
723 int last; /* last thread in process */
727 /* Set a thread informations */
728 @REQ(set_thread_info)
729 obj_handle_t handle; /* thread handle */
730 int mask; /* setting mask (see below) */
731 int priority; /* priority class */
732 affinity_t affinity; /* affinity mask */
733 obj_handle_t token; /* impersonation token */
735 #define SET_THREAD_INFO_PRIORITY 0x01
736 #define SET_THREAD_INFO_AFFINITY 0x02
737 #define SET_THREAD_INFO_TOKEN 0x04
740 /* Retrieve information about a module */
742 obj_handle_t handle; /* process handle */
743 mod_handle_t base_address; /* base address of module */
745 client_ptr_t entry_point;
746 data_size_t size; /* module size */
747 data_size_t filename_len; /* buffer len in bytes required to store filename */
748 VARARG(filename,unicode_str); /* file name of module */
752 /* Suspend a thread */
754 obj_handle_t handle; /* thread handle */
756 int count; /* new suspend count */
760 /* Resume a thread */
762 obj_handle_t handle; /* thread handle */
764 int count; /* new suspend count */
768 /* Notify the server that a dll has been loaded */
770 obj_handle_t handle; /* file handle */
771 mod_handle_t base; /* base address */
772 client_ptr_t name; /* ptr to ptr to name (in process addr space) */
773 data_size_t size; /* dll size */
774 int dbg_offset; /* debug info offset */
775 int dbg_size; /* debug info size */
776 VARARG(filename,unicode_str); /* file name of dll */
780 /* Notify the server that a dll is being unloaded */
782 mod_handle_t base; /* base address */
786 /* Queue an APC for a thread or process */
788 obj_handle_t handle; /* thread or process handle */
789 apc_call_t call; /* call arguments */
791 obj_handle_t handle; /* APC handle */
792 int self; /* run APC in caller itself? */
796 /* Get the result of an APC call */
798 obj_handle_t handle; /* handle to the APC */
800 apc_result_t result; /* result of the APC */
804 /* Close a handle for the current process */
806 obj_handle_t handle; /* handle to close */
810 /* Set a handle information */
811 @REQ(set_handle_info)
812 obj_handle_t handle; /* handle we are interested in */
813 int flags; /* new handle flags */
814 int mask; /* mask for flags to set */
816 int old_flags; /* old flag value */
820 /* Duplicate a handle */
822 obj_handle_t src_process; /* src process handle */
823 obj_handle_t src_handle; /* src handle to duplicate */
824 obj_handle_t dst_process; /* dst process handle */
825 unsigned int access; /* wanted access rights */
826 unsigned int attributes; /* object attributes */
827 unsigned int options; /* duplicate options (see below) */
829 obj_handle_t handle; /* duplicated handle in dst process */
830 int self; /* is the source the current process? */
831 int closed; /* whether the source handle has been closed */
833 #define DUP_HANDLE_CLOSE_SOURCE DUPLICATE_CLOSE_SOURCE
834 #define DUP_HANDLE_SAME_ACCESS DUPLICATE_SAME_ACCESS
835 #define DUP_HANDLE_MAKE_GLOBAL 0x80000000 /* Not a Windows flag */
838 /* Open a handle to a process */
840 process_id_t pid; /* process id to open */
841 unsigned int access; /* wanted access rights */
842 unsigned int attributes; /* object attributes */
844 obj_handle_t handle; /* handle to the process */
848 /* Open a handle to a thread */
850 thread_id_t tid; /* thread id to open */
851 unsigned int access; /* wanted access rights */
852 unsigned int attributes; /* object attributes */
854 obj_handle_t handle; /* handle to the thread */
858 /* Wait for handles */
860 int flags; /* wait flags (see below) */
861 client_ptr_t cookie; /* magic cookie to return to client */
862 obj_handle_t signal; /* object to signal (0 if none) */
863 obj_handle_t prev_apc; /* handle to previous APC */
864 timeout_t timeout; /* timeout */
865 VARARG(result,apc_result); /* result of previous APC */
866 VARARG(handles,handles); /* handles to select on */
868 timeout_t timeout; /* timeout converted to absolute */
869 apc_call_t call; /* APC call arguments */
870 obj_handle_t apc_handle; /* handle to next APC */
873 #define SELECT_ALERTABLE 2
874 #define SELECT_INTERRUPTIBLE 4
877 /* Create an event */
879 unsigned int access; /* wanted access rights */
880 unsigned int attributes; /* object attributes */
881 int manual_reset; /* manual reset event */
882 int initial_state; /* initial state of the event */
883 VARARG(objattr,object_attributes); /* object attributes */
885 obj_handle_t handle; /* handle to the event */
888 /* Event operation */
890 obj_handle_t handle; /* handle to event */
891 int op; /* event operation (see below) */
893 enum event_op { PULSE_EVENT, SET_EVENT, RESET_EVENT };
898 unsigned int access; /* wanted access rights */
899 unsigned int attributes; /* object attributes */
900 obj_handle_t rootdir; /* root directory */
901 VARARG(name,unicode_str); /* object name */
903 obj_handle_t handle; /* handle to the event */
909 unsigned int access; /* wanted access rights */
910 unsigned int attributes; /* object attributes */
911 int owned; /* initially owned? */
912 VARARG(objattr,object_attributes); /* object attributes */
914 obj_handle_t handle; /* handle to the mutex */
918 /* Release a mutex */
920 obj_handle_t handle; /* handle to the mutex */
922 unsigned int prev_count; /* value of internal counter, before release */
928 unsigned int access; /* wanted access rights */
929 unsigned int attributes; /* object attributes */
930 obj_handle_t rootdir; /* root directory */
931 VARARG(name,unicode_str); /* object name */
933 obj_handle_t handle; /* handle to the mutex */
937 /* Create a semaphore */
938 @REQ(create_semaphore)
939 unsigned int access; /* wanted access rights */
940 unsigned int attributes; /* object attributes */
941 unsigned int initial; /* initial count */
942 unsigned int max; /* maximum count */
943 VARARG(objattr,object_attributes); /* object attributes */
945 obj_handle_t handle; /* handle to the semaphore */
949 /* Release a semaphore */
950 @REQ(release_semaphore)
951 obj_handle_t handle; /* handle to the semaphore */
952 unsigned int count; /* count to add to semaphore */
954 unsigned int prev_count; /* previous semaphore count */
958 /* Open a semaphore */
960 unsigned int access; /* wanted access rights */
961 unsigned int attributes; /* object attributes */
962 obj_handle_t rootdir; /* root directory */
963 VARARG(name,unicode_str); /* object name */
965 obj_handle_t handle; /* handle to the semaphore */
971 unsigned int access; /* wanted access rights */
972 unsigned int attributes; /* object attributes */
973 unsigned int sharing; /* sharing flags */
974 int create; /* file create action */
975 unsigned int options; /* file options */
976 unsigned int attrs; /* file attributes for creation */
977 VARARG(objattr,object_attributes); /* object attributes */
978 VARARG(filename,string); /* file name */
980 obj_handle_t handle; /* handle to the file */
984 /* Open a file object */
985 @REQ(open_file_object)
986 unsigned int access; /* wanted access rights */
987 unsigned int attributes; /* open attributes */
988 obj_handle_t rootdir; /* root directory */
989 unsigned int sharing; /* sharing flags */
990 unsigned int options; /* file options */
991 VARARG(filename,unicode_str); /* file name */
993 obj_handle_t handle; /* handle to the file */
997 /* Allocate a file handle for a Unix fd */
998 @REQ(alloc_file_handle)
999 unsigned int access; /* wanted access rights */
1000 unsigned int attributes; /* object attributes */
1001 int fd; /* file descriptor on the client side */
1003 obj_handle_t handle; /* handle to the file */
1007 /* Get the Unix name from a file handle */
1008 @REQ(get_handle_unix_name)
1009 obj_handle_t handle; /* file handle */
1011 data_size_t name_len; /* unix name length */
1012 VARARG(name,string); /* unix name */
1016 /* Get a Unix fd to access a file */
1018 obj_handle_t handle; /* handle to the file */
1020 int type; /* file type (see below) */
1021 int removable; /* is file removable? */
1022 unsigned int access; /* file access rights */
1023 unsigned int options; /* file open options */
1027 FD_TYPE_INVALID, /* invalid file (no associated fd) */
1028 FD_TYPE_FILE, /* regular file */
1029 FD_TYPE_DIR, /* directory */
1030 FD_TYPE_SOCKET, /* socket */
1031 FD_TYPE_SERIAL, /* serial port */
1032 FD_TYPE_PIPE, /* named pipe */
1033 FD_TYPE_MAILSLOT, /* mailslot */
1034 FD_TYPE_CHAR, /* unspecified char device */
1035 FD_TYPE_DEVICE, /* Windows device file */
1040 /* Flush a file buffers */
1042 obj_handle_t handle; /* handle to the file */
1044 obj_handle_t event; /* event set when finished */
1048 /* Lock a region of a file */
1050 obj_handle_t handle; /* handle to the file */
1051 file_pos_t offset; /* offset of start of lock */
1052 file_pos_t count; /* count of bytes to lock */
1053 int shared; /* shared or exclusive lock? */
1054 int wait; /* do we want to wait? */
1056 obj_handle_t handle; /* handle to wait on */
1057 int overlapped; /* is it an overlapped I/O handle? */
1061 /* Unlock a region of a file */
1063 obj_handle_t handle; /* handle to the file */
1064 file_pos_t offset; /* offset of start of unlock */
1065 file_pos_t count; /* count of bytes to unlock */
1069 /* Create a socket */
1071 unsigned int access; /* wanted access rights */
1072 unsigned int attributes; /* object attributes */
1073 int family; /* family, see socket manpage */
1074 int type; /* type, see socket manpage */
1075 int protocol; /* protocol, see socket manpage */
1076 unsigned int flags; /* socket flags */
1078 obj_handle_t handle; /* handle to the new socket */
1082 /* Accept a socket */
1084 obj_handle_t lhandle; /* handle to the listening socket */
1085 unsigned int access; /* wanted access rights */
1086 unsigned int attributes; /* object attributes */
1088 obj_handle_t handle; /* handle to the new socket */
1092 /* Set socket event parameters */
1093 @REQ(set_socket_event)
1094 obj_handle_t handle; /* handle to the socket */
1095 unsigned int mask; /* event mask */
1096 obj_handle_t event; /* event object */
1097 user_handle_t window; /* window to send the message to */
1098 unsigned int msg; /* message to send */
1102 /* Get socket event parameters */
1103 @REQ(get_socket_event)
1104 obj_handle_t handle; /* handle to the socket */
1105 int service; /* clear pending? */
1106 obj_handle_t c_event; /* event to clear */
1108 unsigned int mask; /* event mask */
1109 unsigned int pmask; /* pending events */
1110 unsigned int state; /* status bits */
1111 VARARG(errors,ints); /* event errors */
1115 /* Reenable pending socket events */
1116 @REQ(enable_socket_event)
1117 obj_handle_t handle; /* handle to the socket */
1118 unsigned int mask; /* events to re-enable */
1119 unsigned int sstate; /* status bits to set */
1120 unsigned int cstate; /* status bits to clear */
1123 @REQ(set_socket_deferred)
1124 obj_handle_t handle; /* handle to the socket */
1125 obj_handle_t deferred; /* handle to the socket for which accept() is deferred */
1128 /* Allocate a console (only used by a console renderer) */
1130 unsigned int access; /* wanted access rights */
1131 unsigned int attributes; /* object attributes */
1132 process_id_t pid; /* pid of process which shall be attached to the console */
1134 obj_handle_t handle_in; /* handle to console input */
1135 obj_handle_t event; /* handle to renderer events change notification */
1139 /* Free the console of the current process */
1144 #define CONSOLE_RENDERER_NONE_EVENT 0x00
1145 #define CONSOLE_RENDERER_TITLE_EVENT 0x01
1146 #define CONSOLE_RENDERER_ACTIVE_SB_EVENT 0x02
1147 #define CONSOLE_RENDERER_SB_RESIZE_EVENT 0x03
1148 #define CONSOLE_RENDERER_UPDATE_EVENT 0x04
1149 #define CONSOLE_RENDERER_CURSOR_POS_EVENT 0x05
1150 #define CONSOLE_RENDERER_CURSOR_GEOM_EVENT 0x06
1151 #define CONSOLE_RENDERER_DISPLAY_EVENT 0x07
1152 #define CONSOLE_RENDERER_EXIT_EVENT 0x08
1153 struct console_renderer_event
1188 /* retrieve console events for the renderer */
1189 @REQ(get_console_renderer_events)
1190 obj_handle_t handle; /* handle to console input events */
1192 VARARG(data,bytes); /* the various console_renderer_events */
1196 /* Open a handle to the process console */
1198 obj_handle_t from; /* 0 (resp 1) input (resp output) of current process console */
1199 /* otherwise console_in handle to get active screen buffer? */
1200 unsigned int access; /* wanted access rights */
1201 unsigned int attributes; /* object attributes */
1202 int share; /* share mask (only for output handles) */
1204 obj_handle_t handle; /* handle to the console */
1208 /* Get the input queue wait event */
1209 @REQ(get_console_wait_event)
1211 obj_handle_t handle;
1214 /* Get a console mode (input or output) */
1215 @REQ(get_console_mode)
1216 obj_handle_t handle; /* handle to the console */
1218 int mode; /* console mode */
1222 /* Set a console mode (input or output) */
1223 @REQ(set_console_mode)
1224 obj_handle_t handle; /* handle to the console */
1225 int mode; /* console mode */
1229 /* Set info about a console (input only) */
1230 @REQ(set_console_input_info)
1231 obj_handle_t handle; /* handle to console input, or 0 for process' console
*/
1232 int mask
; /* setting
mask (see below
) */
1233 obj_handle_t active_sb
; /* active screen buffer
*/
1234 int history_mode
; /* whether we duplicate lines in history
*/
1235 int history_size
; /* number of lines in history
*/
1236 int edition_mode
; /* index to the edition mode flavors
*/
1237 int input_cp
; /* console input codepage
*/
1238 int output_cp
; /* console output codepage
*/
1239 user_handle_t win
; /* console window if backend supports it
*/
1240 VARARG(title
,unicode_str
); /* console title
*/
1242 #define SET_CONSOLE_INPUT_INFO_ACTIVE_SB
0x01
1243 #define SET_CONSOLE_INPUT_INFO_TITLE
0x02
1244 #define SET_CONSOLE_INPUT_INFO_HISTORY_MODE
0x04
1245 #define SET_CONSOLE_INPUT_INFO_HISTORY_SIZE
0x08
1246 #define SET_CONSOLE_INPUT_INFO_EDITION_MODE
0x10
1247 #define SET_CONSOLE_INPUT_INFO_INPUT_CODEPAGE
0x20
1248 #define SET_CONSOLE_INPUT_INFO_OUTPUT_CODEPAGE
0x40
1249 #define SET_CONSOLE_INPUT_INFO_WIN
0x80
1252 /* Get info about a
console (input only
) */
1253 @
REQ(get_console_input_info
)
1254 obj_handle_t handle
; /* handle to console input
, or
0 for process
' console */
1256 int history_mode; /* whether we duplicate lines in history */
1257 int history_size; /* number of lines in history */
1258 int history_index; /* number of used lines in history */
1259 int edition_mode; /* index to the edition mode flavors */
1260 int input_cp; /* console input codepage */
1261 int output_cp; /* console output codepage */
1262 user_handle_t win; /* console window if backend supports it */
1263 VARARG(title,unicode_str); /* console title */
1267 /* appends a string to console's history
*/
1268 @
REQ(append_console_input_history
)
1269 obj_handle_t handle
; /* handle to console input
, or
0 for process
' console */
1270 VARARG(line,unicode_str); /* line to add */
1274 /* appends a string to console's history
*/
1275 @
REQ(get_console_input_history
)
1276 obj_handle_t handle
; /* handle to console input
, or
0 for process
' console */
1277 int index; /* index to get line from */
1279 int total; /* total length of line in Unicode chars */
1280 VARARG(line,unicode_str); /* line to add */
1284 /* creates a new screen buffer on process' console
*/
1285 @
REQ(create_console_output
)
1286 obj_handle_t handle_in
; /* handle to console input
, or
0 for process
' console */
1287 unsigned int access; /* wanted access rights */
1288 unsigned int attributes; /* object attributes */
1289 unsigned int share; /* sharing credentials */
1291 obj_handle_t handle_out; /* handle to the screen buffer */
1295 /* Set info about a console (output only) */
1296 @REQ(set_console_output_info)
1297 obj_handle_t handle; /* handle to the console */
1298 int mask; /* setting mask (see below) */
1299 short int cursor_size; /* size of cursor (percentage filled) */
1300 short int cursor_visible;/* cursor visibility flag */
1301 short int cursor_x; /* position of cursor (x, y) */
1303 short int width; /* width of the screen buffer */
1304 short int height; /* height of the screen buffer */
1305 short int attr; /* default attribute */
1306 short int win_left; /* window actually displayed by renderer */
1307 short int win_top; /* the rect area is expressed withing the */
1308 short int win_right; /* boundaries of the screen buffer */
1309 short int win_bottom;
1310 short int max_width; /* maximum size (width x height) for the window */
1311 short int max_height;
1313 #define SET_CONSOLE_OUTPUT_INFO_CURSOR_GEOM 0x01
1314 #define SET_CONSOLE_OUTPUT_INFO_CURSOR_POS 0x02
1315 #define SET_CONSOLE_OUTPUT_INFO_SIZE 0x04
1316 #define SET_CONSOLE_OUTPUT_INFO_ATTR 0x08
1317 #define SET_CONSOLE_OUTPUT_INFO_DISPLAY_WINDOW 0x10
1318 #define SET_CONSOLE_OUTPUT_INFO_MAX_SIZE 0x20
1321 /* Get info about a console (output only) */
1322 @REQ(get_console_output_info)
1323 obj_handle_t handle; /* handle to the console */
1325 short int cursor_size; /* size of cursor (percentage filled) */
1326 short int cursor_visible;/* cursor visibility flag */
1327 short int cursor_x; /* position of cursor (x, y) */
1329 short int width; /* width of the screen buffer */
1330 short int height; /* height of the screen buffer */
1331 short int attr; /* default attribute */
1332 short int win_left; /* window actually displayed by renderer */
1333 short int win_top; /* the rect area is expressed withing the */
1334 short int win_right; /* boundaries of the screen buffer */
1335 short int win_bottom;
1336 short int max_width; /* maximum size (width x height) for the window */
1337 short int max_height;
1340 /* Add input records to a console input queue */
1341 @REQ(write_console_input)
1342 obj_handle_t handle; /* handle to the console input */
1343 VARARG(rec,input_records); /* input records */
1345 int written; /* number of records written */
1349 /* Fetch input records from a console input queue */
1350 @REQ(read_console_input)
1351 obj_handle_t handle; /* handle to the console input */
1352 int flush; /* flush the retrieved records from the queue? */
1354 int read; /* number of records read */
1355 VARARG(rec,input_records); /* input records */
1359 /* write data (chars and/or attributes) in a screen buffer */
1360 @REQ(write_console_output)
1361 obj_handle_t handle; /* handle to the console output */
1362 int x; /* position where to start writing */
1364 int mode; /* char info (see below) */
1365 int wrap; /* wrap around at end of line? */
1366 VARARG(data,bytes); /* info to write */
1368 int written; /* number of char infos actually written */
1369 int width; /* width of screen buffer */
1370 int height; /* height of screen buffer */
1374 CHAR_INFO_MODE_TEXT, /* characters only */
1375 CHAR_INFO_MODE_ATTR, /* attributes only */
1376 CHAR_INFO_MODE_TEXTATTR, /* both characters and attributes */
1377 CHAR_INFO_MODE_TEXTSTDATTR /* characters but use standard attributes */
1381 /* fill a screen buffer with constant data (chars and/or attributes) */
1382 @REQ(fill_console_output)
1383 obj_handle_t handle; /* handle to the console output */
1384 int x; /* position where to start writing */
1386 int mode; /* char info mode */
1387 int count; /* number to write */
1388 int wrap; /* wrap around at end of line? */
1389 char_info_t data; /* data to write */
1391 int written; /* number of char infos actually written */
1395 /* read data (chars and/or attributes) from a screen buffer */
1396 @REQ(read_console_output)
1397 obj_handle_t handle; /* handle to the console output */
1398 int x; /* position (x,y) where to start reading */
1400 int mode; /* char info mode */
1401 int wrap; /* wrap around at end of line? */
1403 int width; /* width of screen buffer */
1404 int height; /* height of screen buffer */
1409 /* move a rect (of data) in screen buffer content */
1410 @REQ(move_console_output)
1411 obj_handle_t handle; /* handle to the console output */
1412 short int x_src; /* position (x, y) of rect to start moving from */
1414 short int x_dst; /* position (x, y) of rect to move to */
1416 short int w; /* size of the rect (width, height) to move */
1421 /* Sends a signal to a process group */
1422 @REQ(send_console_signal)
1423 int signal; /* the signal to send */
1424 process_id_t group_id; /* the group to send the signal to */
1428 /* enable directory change notifications */
1429 @REQ(read_directory_changes)
1430 unsigned int filter; /* notification filter */
1431 int subtree; /* watch the subtree? */
1432 int want_data; /* flag indicating whether change data should be collected */
1433 async_data_t async; /* async I/O parameters */
1438 obj_handle_t handle;
1440 int action; /* type of change */
1441 VARARG(name,string); /* name of directory entry that changed */
1445 /* Create a file mapping */
1446 @REQ(create_mapping)
1447 unsigned int access; /* wanted access rights */
1448 unsigned int attributes; /* object attributes */
1449 unsigned int protect; /* protection flags (see below) */
1450 mem_size_t size; /* mapping size */
1451 obj_handle_t file_handle; /* file handle */
1452 VARARG(objattr,object_attributes); /* object attributes */
1454 obj_handle_t handle; /* handle to the mapping */
1456 /* per-page protection flags */
1457 #define VPROT_READ 0x01
1458 #define VPROT_WRITE 0x02
1459 #define VPROT_EXEC 0x04
1460 #define VPROT_WRITECOPY 0x08
1461 #define VPROT_GUARD 0x10
1462 #define VPROT_NOCACHE 0x20
1463 #define VPROT_COMMITTED 0x40
1464 #define VPROT_WRITEWATCH 0x80
1465 /* per-mapping protection flags */
1466 #define VPROT_IMAGE 0x0100 /* mapping for an exe image */
1467 #define VPROT_SYSTEM 0x0200 /* system view (underlying mmap not under our control) */
1468 #define VPROT_VALLOC 0x0400 /* allocated by VirtualAlloc */
1469 #define VPROT_NOEXEC 0x0800 /* don't force exec permission
*/
1472 /* Open a mapping
*/
1474 unsigned int access
; /* wanted access rights
*/
1475 unsigned int attributes
; /* object attributes
*/
1476 obj_handle_t rootdir
; /* root directory
*/
1477 VARARG(name
,unicode_str
); /* object name
*/
1479 obj_handle_t handle
; /* handle to the mapping
*/
1483 /* Get information about a file mapping
*/
1484 @
REQ(get_mapping_info
)
1485 obj_handle_t handle
; /* handle to the mapping
*/
1486 unsigned int access
; /* wanted access rights
*/
1488 mem_size_t size
; /* mapping size
*/
1489 int protect
; /* protection flags
*/
1490 int header_size
; /* header
size (for VPROT_IMAGE mapping
) */
1491 client_ptr_t base
; /* default base
addr (for VPROT_IMAGE mapping
) */
1492 obj_handle_t mapping
; /* duplicate mapping handle unless removable
*/
1493 obj_handle_t shared_file
; /* shared mapping file handle
*/
1497 /* Get a range of committed pages in a file mapping
*/
1498 @
REQ(get_mapping_committed_range
)
1499 obj_handle_t handle
; /* handle to the mapping
*/
1500 file_pos_t offset
; /* starting
offset (page
-aligned
, in bytes
) */
1502 mem_size_t size
; /* size of range starting at
offset (page
-aligned
, in bytes
) */
1503 int committed
; /* whether it is a committed range
*/
1507 /* Add a range to the committed pages in a file mapping
*/
1508 @
REQ(add_mapping_committed_range
)
1509 obj_handle_t handle
; /* handle to the mapping
*/
1510 file_pos_t offset
; /* starting
offset (page
-aligned
, in bytes
) */
1511 mem_size_t size
; /* size to
set (page
-aligned
, in bytes
) or
0 if only retrieving
*/
1515 #define SNAP_PROCESS
0x00000001
1516 #define SNAP_THREAD
0x00000002
1517 /* Create a snapshot
*/
1518 @
REQ(create_snapshot
)
1519 unsigned int attributes
; /* object attributes
*/
1520 unsigned int flags
; /* snapshot
flags (SNAP_*)
*/
1522 obj_handle_t handle
; /* handle to the snapshot
*/
1526 /* Get the next process from a snapshot
*/
1528 obj_handle_t handle
; /* handle to the snapshot
*/
1529 int reset
; /* reset snapshot position?
*/
1531 int count
; /* process usage count
*/
1532 process_id_t pid
; /* process id
*/
1533 process_id_t ppid
; /* parent process id
*/
1534 int threads
; /* number of threads
*/
1535 int priority
; /* process priority
*/
1536 int handles
; /* number of handles
*/
1537 VARARG(filename
,unicode_str
); /* file name of main exe
*/
1541 /* Get the next thread from a snapshot
*/
1543 obj_handle_t handle
; /* handle to the snapshot
*/
1544 int reset
; /* reset snapshot position?
*/
1546 int count
; /* thread usage count
*/
1547 process_id_t pid
; /* process id
*/
1548 thread_id_t tid
; /* thread id
*/
1549 int base_pri
; /* base priority
*/
1550 int delta_pri
; /* delta priority
*/
1554 /* Wait for a debug event
*/
1555 @
REQ(wait_debug_event
)
1556 int get_handle
; /* should we alloc a handle for waiting?
*/
1558 process_id_t pid
; /* process id
*/
1559 thread_id_t tid
; /* thread id
*/
1560 obj_handle_t wait
; /* wait handle if no event ready
*/
1561 VARARG(event
,debug_event
); /* debug event data
*/
1565 /* Queue an exception event
*/
1566 @
REQ(queue_exception_event
)
1567 int first
; /* first chance exception?
*/
1568 unsigned int code
; /* exception code
*/
1569 unsigned int flags
; /* exception flags
*/
1570 client_ptr_t record
; /* exception record
*/
1571 client_ptr_t address
; /* exception address
*/
1572 data_size_t len
; /* size of parameters
*/
1573 VARARG(params
,uints64
,len
);/* exception parameters
*/
1574 VARARG(context
,context
); /* thread context
*/
1576 obj_handle_t handle
; /* handle to the queued event
*/
1580 /* Retrieve the status of an exception event
*/
1581 @
REQ(get_exception_status
)
1582 obj_handle_t handle
; /* handle to the queued event
*/
1584 VARARG(context
,context
); /* modified thread context
*/
1588 /* Send an output string to the debugger
*/
1589 @
REQ(output_debug_string
)
1590 data_size_t length
; /* string length
*/
1591 client_ptr_t string
; /* string to
display (in debugged process address space
) */
1595 /* Continue a debug event
*/
1596 @
REQ(continue_debug_event
)
1597 process_id_t pid
; /* process id to continue
*/
1598 thread_id_t tid
; /* thread id to continue
*/
1599 int status
; /* continuation status
*/
1603 /* Start
/stop debugging an existing process
*/
1605 process_id_t pid
; /* id of the process to debug
*/
1606 int attach
; /* 1=attaching
/ 0=detaching from the process
*/
1610 /* Simulate a breakpoint in a process
*/
1612 obj_handle_t handle
; /* process handle
*/
1614 int self
; /* was it the caller itself?
*/
1618 /* Set debugger kill on exit flag
*/
1619 @
REQ(set_debugger_kill_on_exit
)
1620 int kill_on_exit
; /* 0=detach
/1=kill debuggee when debugger dies
*/
1624 /* Read data from a process address space
*/
1625 @
REQ(read_process_memory
)
1626 obj_handle_t handle
; /* process handle
*/
1627 client_ptr_t addr
; /* addr to read from
*/
1629 VARARG(data
,bytes
); /* result data
*/
1633 /* Write data to a process address space
*/
1634 @
REQ(write_process_memory
)
1635 obj_handle_t handle
; /* process handle
*/
1636 client_ptr_t addr
; /* addr to write to
*/
1637 VARARG(data
,bytes
); /* data to write
*/
1641 /* Create a registry key
*/
1643 obj_handle_t parent
; /* handle to the parent key
*/
1644 unsigned int access
; /* desired access rights
*/
1645 unsigned int attributes
; /* object attributes
*/
1646 unsigned int options
; /* creation options
*/
1647 data_size_t namelen
; /* length of key name in bytes
*/
1648 VARARG(name
,unicode_str
,namelen
); /* key name
*/
1649 VARARG(class
,unicode_str
); /* class name
*/
1651 obj_handle_t hkey
; /* handle to the created key
*/
1652 int created
; /* has it been newly created?
*/
1655 /* Open a registry key
*/
1657 obj_handle_t parent
; /* handle to the parent key
*/
1658 unsigned int access
; /* desired access rights
*/
1659 unsigned int attributes
; /* object attributes
*/
1660 VARARG(name
,unicode_str
); /* key name
*/
1662 obj_handle_t hkey
; /* handle to the open key
*/
1666 /* Delete a registry key
*/
1668 obj_handle_t hkey
; /* handle to the key
*/
1672 /* Flush a registry key
*/
1674 obj_handle_t hkey
; /* handle to the key
*/
1678 /* Enumerate registry subkeys
*/
1680 obj_handle_t hkey
; /* handle to registry key
*/
1681 int index
; /* index of
subkey (or
-1 for current key
) */
1682 int info_class
; /* requested information class
*/
1684 int subkeys
; /* number of subkeys
*/
1685 int max_subkey
; /* longest subkey name
*/
1686 int max_class
; /* longest class name
*/
1687 int values
; /* number of values
*/
1688 int max_value
; /* longest value name
*/
1689 int max_data
; /* longest value data
*/
1690 timeout_t modif
; /* last modification time
*/
1691 data_size_t total
; /* total length needed for full name and class
*/
1692 data_size_t namelen
; /* length of key name in bytes
*/
1693 VARARG(name
,unicode_str
,namelen
); /* key name
*/
1694 VARARG(class
,unicode_str
); /* class name
*/
1698 /* Set a value of a registry key
*/
1700 obj_handle_t hkey
; /* handle to registry key
*/
1701 int type
; /* value type
*/
1702 data_size_t namelen
; /* length of value name in bytes
*/
1703 VARARG(name
,unicode_str
,namelen
); /* value name
*/
1704 VARARG(data
,bytes
); /* value data
*/
1708 /* Retrieve the value of a registry key
*/
1710 obj_handle_t hkey
; /* handle to registry key
*/
1711 VARARG(name
,unicode_str
); /* value name
*/
1713 int type
; /* value type
*/
1714 data_size_t total
; /* total length needed for data
*/
1715 VARARG(data
,bytes
); /* value data
*/
1719 /* Enumerate a value of a registry key
*/
1720 @
REQ(enum_key_value
)
1721 obj_handle_t hkey
; /* handle to registry key
*/
1722 int index
; /* value index
*/
1723 int info_class
; /* requested information class
*/
1725 int type
; /* value type
*/
1726 data_size_t total
; /* total length needed for full name and data
*/
1727 data_size_t namelen
; /* length of value name in bytes
*/
1728 VARARG(name
,unicode_str
,namelen
); /* value name
*/
1729 VARARG(data
,bytes
); /* value data
*/
1733 /* Delete a value of a registry key
*/
1734 @
REQ(delete_key_value
)
1735 obj_handle_t hkey
; /* handle to registry key
*/
1736 VARARG(name
,unicode_str
); /* value name
*/
1740 /* Load a registry branch from a file
*/
1742 obj_handle_t hkey
; /* root key to load to
*/
1743 obj_handle_t file
; /* file to load from
*/
1744 VARARG(name
,unicode_str
); /* subkey name
*/
1748 /* UnLoad a registry branch from a file
*/
1749 @
REQ(unload_registry
)
1750 obj_handle_t hkey
; /* root key to unload to
*/
1754 /* Save a registry branch to a file
*/
1756 obj_handle_t hkey
; /* key to save
*/
1757 obj_handle_t file
; /* file to save to
*/
1761 /* Add a registry key change notification
*/
1762 @
REQ(set_registry_notification
)
1763 obj_handle_t hkey
; /* key to watch for changes
*/
1764 obj_handle_t event
; /* event to set
*/
1765 int subtree
; /* should we watch the whole subtree?
*/
1766 unsigned int filter
; /* things to watch
*/
1770 /* Create a waitable timer
*/
1772 unsigned int access
; /* wanted access rights
*/
1773 unsigned int attributes
; /* object attributes
*/
1774 obj_handle_t rootdir
; /* root directory
*/
1775 int manual
; /* manual reset
*/
1776 VARARG(name
,unicode_str
); /* object name
*/
1778 obj_handle_t handle
; /* handle to the timer
*/
1782 /* Open a waitable timer
*/
1784 unsigned int access
; /* wanted access rights
*/
1785 unsigned int attributes
; /* object attributes
*/
1786 obj_handle_t rootdir
; /* root directory
*/
1787 VARARG(name
,unicode_str
); /* object name
*/
1789 obj_handle_t handle
; /* handle to the timer
*/
1792 /* Set a waitable timer
*/
1794 obj_handle_t handle
; /* handle to the timer
*/
1795 timeout_t expire
; /* next expiration absolute time
*/
1796 client_ptr_t callback
; /* callback function
*/
1797 client_ptr_t arg
; /* callback argument
*/
1798 int period
; /* timer period in ms
*/
1800 int signaled
; /* was the timer signaled before this call ?
*/
1803 /* Cancel a waitable timer
*/
1805 obj_handle_t handle
; /* handle to the timer
*/
1807 int signaled
; /* was the timer signaled before this calltime ?
*/
1810 /* Get information on a waitable timer
*/
1811 @
REQ(get_timer_info
)
1812 obj_handle_t handle
; /* handle to the timer
*/
1814 timeout_t when
; /* absolute time when the timer next expires
*/
1815 int signaled
; /* is the timer signaled?
*/
1819 /* Retrieve the current context of a thread
*/
1820 @
REQ(get_thread_context
)
1821 obj_handle_t handle
; /* thread handle
*/
1822 unsigned int flags
; /* context flags
*/
1823 int suspend
; /* if getting context during suspend
*/
1825 int self
; /* was it a handle to the current thread?
*/
1826 VARARG(context
,context
); /* thread context
*/
1830 /* Set the current context of a thread
*/
1831 @
REQ(set_thread_context
)
1832 obj_handle_t handle
; /* thread handle
*/
1833 int suspend
; /* if setting context during suspend
*/
1834 VARARG(context
,context
); /* thread context
*/
1836 int self
; /* was it a handle to the current thread?
*/
1840 /* Fetch a selector entry for a thread
*/
1841 @
REQ(get_selector_entry
)
1842 obj_handle_t handle
; /* thread handle
*/
1843 int entry
; /* LDT entry
*/
1845 unsigned int base
; /* selector base
*/
1846 unsigned int limit
; /* selector limit
*/
1847 unsigned char flags
; /* selector flags
*/
1853 obj_handle_t table
; /* which table to add atom to
*/
1854 VARARG(name
,unicode_str
); /* atom name
*/
1856 atom_t atom
; /* resulting atom
*/
1860 /* Delete an atom
*/
1862 obj_handle_t table
; /* which table to delete atom from
*/
1863 atom_t atom
; /* atom handle
*/
1869 obj_handle_t table
; /* which table to find atom from
*/
1870 VARARG(name
,unicode_str
); /* atom name
*/
1872 atom_t atom
; /* atom handle
*/
1876 /* Get information about an atom
*/
1877 @
REQ(get_atom_information
)
1878 obj_handle_t table
; /* which table to find atom from
*/
1879 atom_t atom
; /* atom handle
*/
1881 int count
; /* atom lock count
*/
1882 int pinned
; /* whether the atom has been pinned
*/
1883 data_size_t total
; /* actual length of atom name
*/
1884 VARARG(name
,unicode_str
); /* atom name
*/
1888 /* Set information about an atom
*/
1889 @
REQ(set_atom_information
)
1890 obj_handle_t table
; /* which table to find atom from
*/
1891 atom_t atom
; /* atom handle
*/
1892 int pinned
; /* whether to bump atom information
*/
1896 /* Empty an atom table
*/
1897 @
REQ(empty_atom_table
)
1898 obj_handle_t table
; /* which table to find atom from
*/
1899 int if_pinned
; /* whether to delete pinned atoms
*/
1903 /* Init an atom table
*/
1904 @
REQ(init_atom_table
)
1905 int entries
; /* number of
entries (only for local
) */
1907 obj_handle_t table
; /* handle to the atom table
*/
1911 /* Get the message queue of the current thread
*/
1914 obj_handle_t handle
; /* handle to the queue
*/
1918 /* Set the file descriptor associated to the current thread queue
*/
1920 obj_handle_t handle
; /* handle to the file descriptor
*/
1924 /* Set the current message queue wakeup mask
*/
1925 @
REQ(set_queue_mask
)
1926 unsigned int wake_mask
; /* wakeup bits mask
*/
1927 unsigned int changed_mask
; /* changed bits mask
*/
1928 int skip_wait
; /* will we skip waiting if signaled?
*/
1930 unsigned int wake_bits
; /* current wake bits
*/
1931 unsigned int changed_bits
; /* current changed bits
*/
1935 /* Get the current message queue status
*/
1936 @
REQ(get_queue_status
)
1937 int clear
; /* should we clear the change bits?
*/
1939 unsigned int wake_bits
; /* wake bits
*/
1940 unsigned int changed_bits
; /* changed bits since last time
*/
1944 /* Retrieve the process idle event
*/
1945 @
REQ(get_process_idle_event
)
1946 obj_handle_t handle
; /* process handle
*/
1948 obj_handle_t event
; /* handle to idle event
*/
1952 /* Send a message to a thread queue
*/
1954 thread_id_t id
; /* thread id
*/
1955 int type
; /* message
type (see below
) */
1956 int flags
; /* message
flags (see below
) */
1957 user_handle_t win
; /* window handle
*/
1958 unsigned int msg
; /* message code
*/
1959 lparam_t wparam
; /* parameters
*/
1960 lparam_t lparam
; /* parameters
*/
1961 timeout_t timeout
; /* timeout for reply
*/
1962 VARARG(data
,message_data
); /* message data for sent messages
*/
1965 @
REQ(post_quit_message
)
1966 int exit_code
; /* exit code to return
*/
1971 MSG_ASCII
, /* Ascii
message (from SendMessageA
) */
1972 MSG_UNICODE
, /* Unicode
message (from SendMessageW
) */
1973 MSG_NOTIFY
, /* notify
message (from SendNotifyMessageW
), always Unicode
*/
1974 MSG_CALLBACK
, /* callback
message (from SendMessageCallbackW
), always Unicode
*/
1975 MSG_CALLBACK_RESULT
,/* result of a callback message
*/
1976 MSG_OTHER_PROCESS
, /* sent from other process
, may include vararg data
, always Unicode
*/
1977 MSG_POSTED
, /* posted
message (from PostMessageW
), always Unicode
*/
1978 MSG_HARDWARE
, /* hardware message
*/
1979 MSG_WINEVENT
/* winevent message
*/
1981 #define SEND_MSG_ABORT_IF_HUNG
0x01
1984 /* Send a hardware message to a thread queue
*/
1985 @
REQ(send_hardware_message
)
1986 thread_id_t id
; /* thread id
*/
1987 user_handle_t win
; /* window handle
*/
1988 unsigned int msg
; /* message code
*/
1989 lparam_t wparam
; /* parameters
*/
1990 lparam_t lparam
; /* parameters
*/
1991 lparam_t info
; /* extra info
*/
1992 int x
; /* x position
*/
1993 int y
; /* y position
*/
1994 unsigned int time
; /* message time
*/
1996 user_handle_t cursor
; /* current cursor for the target thread input
*/
1997 int count
; /* current cursor count
*/
2001 /* Get a message from the current queue
*/
2003 unsigned int flags
; /* PM_
* flags
*/
2004 user_handle_t get_win
; /* window handle to get
*/
2005 unsigned int get_first
; /* first message code to get
*/
2006 unsigned int get_last
; /* last message code to get
*/
2007 unsigned int hw_id
; /* id of the previous hardware
message (or
0) */
2008 unsigned int wake_mask
; /* wakeup bits mask
*/
2009 unsigned int changed_mask
; /* changed bits mask
*/
2011 user_handle_t win
; /* window handle
*/
2012 unsigned int msg
; /* message code
*/
2013 lparam_t wparam
; /* parameters
*/
2014 lparam_t lparam
; /* parameters
*/
2015 int type
; /* message type
*/
2016 unsigned int time
; /* message time
*/
2017 unsigned int active_hooks
; /* active hooks bitmap
*/
2018 data_size_t total
; /* total size of extra data
*/
2019 VARARG(data
,message_data
); /* message data for sent messages
*/
2023 /* Reply to a sent message
*/
2025 int remove
; /* should we remove the message?
*/
2026 lparam_t result
; /* message result
*/
2027 VARARG(data
,bytes
); /* message data for sent messages
*/
2031 /* Accept the current hardware message
*/
2032 @
REQ(accept_hardware_message
)
2033 unsigned int hw_id
; /* id of the hardware message
*/
2034 int remove
; /* should we remove the message?
*/
2035 user_handle_t new_win
; /* new destination window for current message
*/
2039 /* Retrieve the reply for the last message sent
*/
2040 @
REQ(get_message_reply
)
2041 int cancel
; /* cancel message if not ready?
*/
2043 lparam_t result
; /* message result
*/
2044 VARARG(data
,bytes
); /* message data for sent messages
*/
2048 /* Set a window timer
*/
2050 user_handle_t win
; /* window handle
*/
2051 unsigned int msg
; /* message to post
*/
2052 unsigned int rate
; /* timer rate in ms
*/
2053 lparam_t id
; /* timer id
*/
2054 lparam_t lparam
; /* message
lparam (callback proc
) */
2056 lparam_t id
; /* timer id
*/
2060 /* Kill a window timer
*/
2061 @
REQ(kill_win_timer
)
2062 user_handle_t win
; /* window handle
*/
2063 lparam_t id
; /* timer id
*/
2064 unsigned int msg
; /* message to post
*/
2068 /* check if the thread owning the window is hung
*/
2069 @
REQ(is_window_hung
)
2070 user_handle_t win
; /* window handle
*/
2076 /* Retrieve info about a serial port
*/
2077 @
REQ(get_serial_info
)
2078 obj_handle_t handle
; /* handle to comm port
*/
2080 unsigned int readinterval
;
2081 unsigned int readconst
;
2082 unsigned int readmult
;
2083 unsigned int writeconst
;
2084 unsigned int writemult
;
2085 unsigned int eventmask
;
2089 /* Set info about a serial port
*/
2090 @
REQ(set_serial_info
)
2091 obj_handle_t handle
; /* handle to comm port
*/
2092 int flags
; /* bitmask to set
values (see below
) */
2093 unsigned int readinterval
;
2094 unsigned int readconst
;
2095 unsigned int readmult
;
2096 unsigned int writeconst
;
2097 unsigned int writemult
;
2098 unsigned int eventmask
;
2100 #define SERIALINFO_SET_TIMEOUTS
0x01
2101 #define SERIALINFO_SET_MASK
0x02
2104 /* Create an async I
/O
*/
2105 @
REQ(register_async
)
2106 int type
; /* type of queue to look after
*/
2107 async_data_t async
; /* async I
/O parameters
*/
2108 int count
; /* count
- usually # of bytes to be read
/written
*/
2110 #define ASYNC_TYPE_READ
0x01
2111 #define ASYNC_TYPE_WRITE
0x02
2112 #define ASYNC_TYPE_WAIT
0x03
2115 /* Cancel all async op on a fd
*/
2117 obj_handle_t handle
; /* handle to comm port
, socket or file
*/
2118 client_ptr_t iosb
; /* I
/O status
block (NULL
=all
) */
2119 int only_thread
; /* cancel matching this thread
*/
2123 /* Perform an ioctl on a file
*/
2125 ioctl_code_t code
; /* ioctl code
*/
2126 async_data_t async
; /* async I
/O parameters
*/
2127 int blocking
; /* whether it
's a blocking ioctl */
2128 VARARG(in_data,bytes); /* ioctl input data */
2130 obj_handle_t wait; /* handle to wait on for blocking ioctl */
2131 unsigned int options; /* device open options */
2132 VARARG(out_data,bytes); /* ioctl output data */
2136 /* Retrieve results of an async ioctl */
2137 @REQ(get_ioctl_result)
2138 obj_handle_t handle; /* handle to the device */
2139 client_ptr_t user_arg; /* user arg used to identify the request */
2141 VARARG(out_data,bytes); /* ioctl output data */
2145 /* Create a named pipe */
2146 @REQ(create_named_pipe)
2147 unsigned int access;
2148 unsigned int attributes; /* object attributes */
2149 obj_handle_t rootdir; /* root directory */
2150 unsigned int options;
2151 unsigned int maxinstances;
2152 unsigned int outsize;
2153 unsigned int insize;
2156 VARARG(name,unicode_str); /* pipe name */
2158 obj_handle_t handle; /* handle to the pipe */
2161 /* flags in create_named_pipe and get_named_pipe_info */
2162 #define NAMED_PIPE_MESSAGE_STREAM_WRITE 0x0001
2163 #define NAMED_PIPE_MESSAGE_STREAM_READ 0x0002
2164 #define NAMED_PIPE_NONBLOCKING_MODE 0x0004
2165 #define NAMED_PIPE_SERVER_END 0x8000
2168 @REQ(get_named_pipe_info)
2169 obj_handle_t handle;
2172 unsigned int maxinstances;
2173 unsigned int instances;
2174 unsigned int outsize;
2175 unsigned int insize;
2179 /* Create a window */
2181 user_handle_t parent; /* parent window */
2182 user_handle_t owner; /* owner window */
2183 atom_t atom; /* class atom */
2184 mod_handle_t instance; /* module instance */
2185 VARARG(class,unicode_str); /* class name */
2187 user_handle_t handle; /* created window */
2188 user_handle_t parent; /* full handle of parent */
2189 user_handle_t owner; /* full handle of owner */
2190 int extra; /* number of extra bytes */
2191 client_ptr_t class_ptr; /* pointer to class in client address space */
2195 /* Destroy a window */
2196 @REQ(destroy_window)
2197 user_handle_t handle; /* handle to the window */
2201 /* Retrieve the desktop window for the current thread */
2202 @REQ(get_desktop_window)
2203 int force; /* force creation if it doesn't exist
*/
2205 user_handle_t top_window
; /* handle to the desktop window
*/
2206 user_handle_t msg_window
; /* handle to the top
-level HWND_MESSAGE parent
*/
2210 /* Set a window owner
*/
2211 @
REQ(set_window_owner
)
2212 user_handle_t handle
; /* handle to the window
*/
2213 user_handle_t owner
; /* new owner
*/
2215 user_handle_t full_owner
; /* full handle of new owner
*/
2216 user_handle_t prev_owner
; /* full handle of previous owner
*/
2220 /* Get information from a window handle
*/
2221 @
REQ(get_window_info
)
2222 user_handle_t handle
; /* handle to the window
*/
2224 user_handle_t full_handle
; /* full
32-bit handle
*/
2225 user_handle_t last_active
; /* last active popup
*/
2226 process_id_t pid
; /* process owning the window
*/
2227 thread_id_t tid
; /* thread owning the window
*/
2228 atom_t atom
; /* class atom
*/
2229 int is_unicode
; /* ANSI or unicode
*/
2233 /* Set some information in a window
*/
2234 @
REQ(set_window_info
)
2235 unsigned short flags
; /* flags for fields to
set (see below
) */
2236 short int is_unicode
; /* ANSI or unicode
*/
2237 user_handle_t handle
; /* handle to the window
*/
2238 unsigned int style
; /* window style
*/
2239 unsigned int ex_style
; /* window extended style
*/
2240 unsigned int id
; /* window id
*/
2241 mod_handle_t instance
; /* creator instance
*/
2242 lparam_t user_data
; /* user
-specific data
*/
2243 int extra_offset
; /* offset to set in extra bytes
*/
2244 data_size_t extra_size
; /* size to set in extra bytes
*/
2245 lparam_t extra_value
; /* value to set in extra bytes
*/
2247 unsigned int old_style
; /* old window style
*/
2248 unsigned int old_ex_style
; /* old window extended style
*/
2249 mod_handle_t old_instance
; /* old creator instance
*/
2250 lparam_t old_user_data
; /* old user
-specific data
*/
2251 lparam_t old_extra_value
; /* old value in extra bytes
*/
2252 unsigned int old_id
; /* old window id
*/
2254 #define SET_WIN_STYLE
0x01
2255 #define SET_WIN_EXSTYLE
0x02
2256 #define SET_WIN_ID
0x04
2257 #define SET_WIN_INSTANCE
0x08
2258 #define SET_WIN_USERDATA
0x10
2259 #define SET_WIN_EXTRA
0x20
2260 #define SET_WIN_UNICODE
0x40
2263 /* Set the parent of a window
*/
2265 user_handle_t handle
; /* handle to the window
*/
2266 user_handle_t parent
; /* handle to the parent
*/
2268 user_handle_t old_parent
; /* old parent window
*/
2269 user_handle_t full_parent
; /* full handle of new parent
*/
2273 /* Get a list of the window parents
, up to the root of the tree
*/
2274 @
REQ(get_window_parents
)
2275 user_handle_t handle
; /* handle to the window
*/
2277 int count
; /* total count of parents
*/
2278 VARARG(parents
,user_handles
); /* parent handles
*/
2282 /* Get a list of the window children
*/
2283 @
REQ(get_window_children
)
2284 obj_handle_t desktop
; /* handle to desktop
*/
2285 user_handle_t parent
; /* parent window
*/
2286 atom_t atom
; /* class atom for the listed children
*/
2287 thread_id_t tid
; /* thread owning the listed children
*/
2288 VARARG(class
,unicode_str
); /* class name
*/
2290 int count
; /* total count of children
*/
2291 VARARG(children
,user_handles
); /* children handles
*/
2295 /* Get a list of the window children that contain a given point
*/
2296 @
REQ(get_window_children_from_point
)
2297 user_handle_t parent
; /* parent window
*/
2298 int x
; /* point in parent coordinates
*/
2301 int count
; /* total count of children
*/
2302 VARARG(children
,user_handles
); /* children handles
*/
2306 /* Get window tree information from a window handle
*/
2307 @
REQ(get_window_tree
)
2308 user_handle_t handle
; /* handle to the window
*/
2310 user_handle_t parent
; /* parent window
*/
2311 user_handle_t owner
; /* owner window
*/
2312 user_handle_t next_sibling
; /* next sibling in Z
-order
*/
2313 user_handle_t prev_sibling
; /* prev sibling in Z
-order
*/
2314 user_handle_t first_sibling
; /* first sibling in Z
-order
*/
2315 user_handle_t last_sibling
; /* last sibling in Z
-order
*/
2316 user_handle_t first_child
; /* first child
*/
2317 user_handle_t last_child
; /* last child
*/
2320 /* Set the position and Z order of a window
*/
2321 @
REQ(set_window_pos
)
2322 unsigned int flags
; /* SWP_
* flags
*/
2323 user_handle_t handle
; /* handle to the window
*/
2324 user_handle_t previous
; /* previous window in Z order
*/
2325 rectangle_t window
; /* window rectangle
*/
2326 rectangle_t client
; /* client rectangle
*/
2327 VARARG(valid
,rectangles
); /* valid rectangles from WM_NCCALCSIZE
*/
2329 unsigned int new_style
; /* new window style
*/
2330 unsigned int new_ex_style
; /* new window extended style
*/
2334 /* Get the window and client rectangles of a window
*/
2335 @
REQ(get_window_rectangles
)
2336 user_handle_t handle
; /* handle to the window
*/
2338 rectangle_t window
; /* window rectangle
*/
2339 rectangle_t visible
; /* visible part of the window rectangle
*/
2340 rectangle_t client
; /* client rectangle
*/
2344 /* Get the window text
*/
2345 @
REQ(get_window_text
)
2346 user_handle_t handle
; /* handle to the window
*/
2348 VARARG(text
,unicode_str
); /* window text
*/
2352 /* Set the window text
*/
2353 @
REQ(set_window_text
)
2354 user_handle_t handle
; /* handle to the window
*/
2355 VARARG(text
,unicode_str
); /* window text
*/
2359 /* Get the coordinates offset between two windows
*/
2360 @
REQ(get_windows_offset
)
2361 user_handle_t from
; /* handle to the first window
*/
2362 user_handle_t to
; /* handle to the second window
*/
2364 int x
; /* x coordinate offset
*/
2365 int y
; /* y coordinate offset
*/
2369 /* Get the visible region of a window
*/
2370 @
REQ(get_visible_region
)
2371 user_handle_t window
; /* handle to the window
*/
2372 unsigned int flags
; /* DCX flags
*/
2374 user_handle_t top_win
; /* top window to clip against
*/
2375 rectangle_t top_rect
; /* top window visible rect with screen coords
*/
2376 rectangle_t win_rect
; /* window rect in screen coords
*/
2377 data_size_t total_size
; /* total size of the resulting region
*/
2378 VARARG(region
,rectangles
); /* list of rectangles for the
region (in screen coords
) */
2382 /* Get the window region
*/
2383 @
REQ(get_window_region
)
2384 user_handle_t window
; /* handle to the window
*/
2386 data_size_t total_size
; /* total size of the resulting region
*/
2387 VARARG(region
,rectangles
); /* list of rectangles for the region
*/
2391 /* Set the window region
*/
2392 @
REQ(set_window_region
)
2393 user_handle_t window
; /* handle to the window
*/
2394 int redraw
; /* redraw the window?
*/
2395 VARARG(region
,rectangles
); /* list of rectangles for the region
*/
2399 /* Get the window update region
*/
2400 @
REQ(get_update_region
)
2401 user_handle_t window
; /* handle to the window
*/
2402 user_handle_t from_child
; /* child to start searching from
*/
2403 unsigned int flags
; /* update
flags (see below
) */
2405 user_handle_t child
; /* child to
repaint (or window itself
) */
2406 unsigned int flags
; /* resulting update
flags (see below
) */
2407 data_size_t total_size
; /* total size of the resulting region
*/
2408 VARARG(region
,rectangles
); /* list of rectangles for the region
*/
2410 #define UPDATE_NONCLIENT
0x01 /* get region for repainting non
-client area
*/
2411 #define UPDATE_ERASE
0x02 /* get region for erasing client area
*/
2412 #define UPDATE_PAINT
0x04 /* get region for painting client area
*/
2413 #define UPDATE_INTERNALPAINT
0x08 /* get region if internal paint is pending
*/
2414 #define UPDATE_ALLCHILDREN
0x10 /* force repaint of all children
*/
2415 #define UPDATE_NOCHILDREN
0x20 /* don
't try to repaint any children */
2416 #define UPDATE_NOREGION 0x40 /* don't return a region
, only the flags
*/
2417 #define UPDATE_DELAYED_ERASE
0x80 /* still needs erase after BeginPaint
*/
2420 /* Update the z order of a window so that a given rectangle is fully visible
*/
2421 @
REQ(update_window_zorder
)
2422 user_handle_t window
; /* handle to the window
*/
2423 rectangle_t rect
; /* rectangle that must be visible
*/
2427 /* Mark parts of a window as needing a redraw
*/
2429 user_handle_t window
; /* handle to the window
*/
2430 unsigned int flags
; /* RDW_
* flags
*/
2431 VARARG(region
,rectangles
); /* list of rectangles for the region
*/
2435 /* Set a window property
*/
2436 @
REQ(set_window_property
)
2437 user_handle_t window
; /* handle to the window
*/
2438 lparam_t data
; /* data to store
*/
2439 atom_t atom
; /* property
atom (if no name specified
) */
2440 VARARG(name
,unicode_str
); /* property name
*/
2444 /* Remove a window property
*/
2445 @
REQ(remove_window_property
)
2446 user_handle_t window
; /* handle to the window
*/
2447 atom_t atom
; /* property
atom (if no name specified
) */
2448 VARARG(name
,unicode_str
); /* property name
*/
2450 lparam_t data
; /* data stored in property
*/
2454 /* Get a window property
*/
2455 @
REQ(get_window_property
)
2456 user_handle_t window
; /* handle to the window
*/
2457 atom_t atom
; /* property
atom (if no name specified
) */
2458 VARARG(name
,unicode_str
); /* property name
*/
2460 lparam_t data
; /* data stored in property
*/
2464 /* Get the list of properties of a window
*/
2465 @
REQ(get_window_properties
)
2466 user_handle_t window
; /* handle to the window
*/
2468 int total
; /* total number of properties
*/
2469 VARARG(props
,properties
); /* list of properties
*/
2473 /* Create a window station
*/
2474 @
REQ(create_winstation
)
2475 unsigned int flags
; /* window station flags
*/
2476 unsigned int access
; /* wanted access rights
*/
2477 unsigned int attributes
; /* object attributes
*/
2478 VARARG(name
,unicode_str
); /* object name
*/
2480 obj_handle_t handle
; /* handle to the window station
*/
2484 /* Open a handle to a window station
*/
2485 @
REQ(open_winstation
)
2486 unsigned int access
; /* wanted access rights
*/
2487 unsigned int attributes
; /* object attributes
*/
2488 VARARG(name
,unicode_str
); /* object name
*/
2490 obj_handle_t handle
; /* handle to the window station
*/
2494 /* Close a window station
*/
2495 @
REQ(close_winstation
)
2496 obj_handle_t handle
; /* handle to the window station
*/
2500 /* Get the process current window station
*/
2501 @
REQ(get_process_winstation
)
2503 obj_handle_t handle
; /* handle to the window station
*/
2507 /* Set the process current window station
*/
2508 @
REQ(set_process_winstation
)
2509 obj_handle_t handle
; /* handle to the window station
*/
2513 /* Enumerate window stations
*/
2514 @
REQ(enum_winstation
)
2515 unsigned int index
; /* current index
*/
2517 unsigned int next
; /* next index
*/
2518 VARARG(name
,unicode_str
); /* window station name
*/
2522 /* Create a desktop
*/
2523 @
REQ(create_desktop
)
2524 unsigned int flags
; /* desktop flags
*/
2525 unsigned int access
; /* wanted access rights
*/
2526 unsigned int attributes
; /* object attributes
*/
2527 VARARG(name
,unicode_str
); /* object name
*/
2529 obj_handle_t handle
; /* handle to the desktop
*/
2533 /* Open a handle to a desktop
*/
2535 obj_handle_t winsta
; /* window station to
open (null allowed
) */
2536 unsigned int flags
; /* desktop flags
*/
2537 unsigned int access
; /* wanted access rights
*/
2538 unsigned int attributes
; /* object attributes
*/
2539 VARARG(name
,unicode_str
); /* object name
*/
2541 obj_handle_t handle
; /* handle to the desktop
*/
2545 /* Close a desktop
*/
2547 obj_handle_t handle
; /* handle to the desktop
*/
2551 /* Get the thread current desktop
*/
2552 @
REQ(get_thread_desktop
)
2553 thread_id_t tid
; /* thread id
*/
2555 obj_handle_t handle
; /* handle to the desktop
*/
2559 /* Set the thread current desktop
*/
2560 @
REQ(set_thread_desktop
)
2561 obj_handle_t handle
; /* handle to the desktop
*/
2565 /* Enumerate desktops
*/
2567 obj_handle_t winstation
; /* handle to the window station
*/
2568 unsigned int index
; /* current index
*/
2570 unsigned int next
; /* next index
*/
2571 VARARG(name
,unicode_str
); /* window station name
*/
2575 /* Get
/set information about a user
object (window station or desktop
) */
2576 @
REQ(set_user_object_info
)
2577 obj_handle_t handle
; /* handle to the object
*/
2578 unsigned int flags
; /* information to set
*/
2579 unsigned int obj_flags
; /* new object flags
*/
2581 int is_desktop
; /* is object a desktop?
*/
2582 unsigned int old_obj_flags
; /* old object flags
*/
2583 VARARG(name
,unicode_str
); /* object name
*/
2585 #define SET_USER_OBJECT_FLAGS
1
2588 /* Attach (or detach
) thread inputs
*/
2589 @
REQ(attach_thread_input
)
2590 thread_id_t tid_from
; /* thread to be attached
*/
2591 thread_id_t tid_to
; /* thread to which tid_from should be attached
*/
2592 int attach
; /* is it an attach?
*/
2596 /* Get input data for a given thread
*/
2597 @
REQ(get_thread_input
)
2598 thread_id_t tid
; /* id of thread
*/
2600 user_handle_t focus
; /* handle to the focus window
*/
2601 user_handle_t capture
; /* handle to the capture window
*/
2602 user_handle_t active
; /* handle to the active window
*/
2603 user_handle_t foreground
; /* handle to the global foreground window
*/
2604 user_handle_t menu_owner
; /* handle to the menu owner
*/
2605 user_handle_t move_size
; /* handle to the moving
/resizing window
*/
2606 user_handle_t caret
; /* handle to the caret window
*/
2607 user_handle_t cursor
; /* handle to the cursor
*/
2608 int show_count
; /* cursor show count
*/
2609 rectangle_t rect
; /* caret rectangle
*/
2613 /* Get the time of the last input event
*/
2614 @
REQ(get_last_input_time
)
2620 /* Retrieve queue keyboard state for a given thread
*/
2622 thread_id_t tid
; /* id of thread
*/
2623 int key
; /* optional key code or
-1 */
2625 unsigned char state
; /* state of specified key
*/
2626 VARARG(keystate
,bytes
); /* state array for all the keys
*/
2629 /* Set queue keyboard state for a given thread
*/
2631 thread_id_t tid
; /* id of thread
*/
2632 VARARG(keystate
,bytes
); /* state array for all the keys
*/
2635 /* Set the system foreground window
*/
2636 @
REQ(set_foreground_window
)
2637 user_handle_t handle
; /* handle to the foreground window
*/
2639 user_handle_t previous
; /* handle to the previous foreground window
*/
2640 int send_msg_old
; /* whether we have to send a msg to the old window
*/
2641 int send_msg_new
; /* whether we have to send a msg to the new window
*/
2644 /* Set the current thread focus window
*/
2645 @
REQ(set_focus_window
)
2646 user_handle_t handle
; /* handle to the focus window
*/
2648 user_handle_t previous
; /* handle to the previous focus window
*/
2651 /* Set the current thread active window
*/
2652 @
REQ(set_active_window
)
2653 user_handle_t handle
; /* handle to the active window
*/
2655 user_handle_t previous
; /* handle to the previous active window
*/
2658 /* Set the current thread capture window
*/
2659 @
REQ(set_capture_window
)
2660 user_handle_t handle
; /* handle to the capture window
*/
2661 unsigned int flags
; /* capture
flags (see below
) */
2663 user_handle_t previous
; /* handle to the previous capture window
*/
2664 user_handle_t full_handle
; /* full
32-bit handle of new capture window
*/
2666 #define CAPTURE_MENU
0x01 /* capture is for a menu
*/
2667 #define CAPTURE_MOVESIZE
0x02 /* capture is for moving
/resizing
*/
2670 /* Set the current thread caret window
*/
2671 @
REQ(set_caret_window
)
2672 user_handle_t handle
; /* handle to the caret window
*/
2673 int width
; /* caret width
*/
2674 int height
; /* caret height
*/
2676 user_handle_t previous
; /* handle to the previous caret window
*/
2677 rectangle_t old_rect
; /* previous caret rectangle
*/
2678 int old_hide
; /* previous hide count
*/
2679 int old_state
; /* previous caret
state (1=on
, 0=off
) */
2683 /* Set the current thread caret information
*/
2684 @
REQ(set_caret_info
)
2685 unsigned int flags
; /* caret
flags (see below
) */
2686 user_handle_t handle
; /* handle to the caret window
*/
2687 int x
; /* caret x position
*/
2688 int y
; /* caret y position
*/
2689 int hide
; /* increment for hide
count (can be negative to show it
) */
2690 int state
; /* caret
state (1=on
, 0=off
, -1=toggle current state
) */
2692 user_handle_t full_handle
; /* handle to the current caret window
*/
2693 rectangle_t old_rect
; /* previous caret rectangle
*/
2694 int old_hide
; /* previous hide count
*/
2695 int old_state
; /* previous caret
state (1=on
, 0=off
) */
2697 #define SET_CARET_POS
0x01 /* set the caret position from x
,y
*/
2698 #define SET_CARET_HIDE
0x02 /* increment the caret hide count
*/
2699 #define SET_CARET_STATE
0x04 /* set the caret on
/off state
*/
2702 /* Set a window hook
*/
2704 int id
; /* id of the hook
*/
2705 process_id_t pid
; /* id of process to set the hook into
*/
2706 thread_id_t tid
; /* id of thread to set the hook into
*/
2709 client_ptr_t proc
; /* hook procedure
*/
2711 int unicode
; /* is it a unicode hook?
*/
2712 VARARG(module
,unicode_str
); /* module name
*/
2714 user_handle_t handle
; /* handle to the hook
*/
2715 unsigned int active_hooks
; /* active hooks bitmap
*/
2719 /* Remove a window hook
*/
2721 user_handle_t handle
; /* handle to the hook
*/
2722 client_ptr_t proc
; /* hook procedure if handle is
0 */
2723 int id
; /* id of the hook if handle is
0 */
2725 unsigned int active_hooks
; /* active hooks bitmap
*/
2729 /* Start calling a hook chain
*/
2730 @
REQ(start_hook_chain
)
2731 int id
; /* id of the hook
*/
2732 int event
; /* signalled event
*/
2733 user_handle_t window
; /* handle to the event window
*/
2734 int object_id
; /* object id for out of context winevent
*/
2735 int child_id
; /* child id for out of context winevent
*/
2737 user_handle_t handle
; /* handle to the next hook
*/
2738 process_id_t pid
; /* process id for low
-level keyboard
/mouse hooks
*/
2739 thread_id_t tid
; /* thread id for low
-level keyboard
/mouse hooks
*/
2740 int unicode
; /* is it a unicode hook?
*/
2741 client_ptr_t proc
; /* hook procedure
*/
2742 unsigned int active_hooks
; /* active hooks bitmap
*/
2743 VARARG(module
,unicode_str
); /* module name
*/
2747 /* Finished calling a hook chain
*/
2748 @
REQ(finish_hook_chain
)
2749 int id
; /* id of the hook
*/
2753 /* Get the hook information
*/
2755 user_handle_t handle
; /* handle to the current hook
*/
2756 int get_next
; /* do we want info about current or next hook?
*/
2757 int event
; /* signalled event
*/
2758 user_handle_t window
; /* handle to the event window
*/
2759 int object_id
; /* object id for out of context winevent
*/
2760 int child_id
; /* child id for out of context winevent
*/
2762 user_handle_t handle
; /* handle to the hook
*/
2763 int id
; /* id of the hook
*/
2764 process_id_t pid
; /* process id for low
-level keyboard
/mouse hooks
*/
2765 thread_id_t tid
; /* thread id for low
-level keyboard
/mouse hooks
*/
2766 client_ptr_t proc
; /* hook procedure
*/
2767 int unicode
; /* is it a unicode hook?
*/
2768 VARARG(module
,unicode_str
); /* module name
*/
2772 /* Create a window class
*/
2774 int local
; /* is it a local class?
*/
2775 atom_t atom
; /* class atom
*/
2776 unsigned int style
; /* class style
*/
2777 mod_handle_t instance
; /* module instance
*/
2778 int extra
; /* number of extra class bytes
*/
2779 int win_extra
; /* number of window extra bytes
*/
2780 client_ptr_t client_ptr
; /* pointer to class in client address space
*/
2781 VARARG(name
,unicode_str
); /* class name
*/
2783 atom_t atom
; /* resulting class atom
*/
2787 /* Destroy a window class
*/
2789 atom_t atom
; /* class atom
*/
2790 mod_handle_t instance
; /* module instance
*/
2791 VARARG(name
,unicode_str
); /* class name
*/
2793 client_ptr_t client_ptr
; /* pointer to class in client address space
*/
2797 /* Set some information in a class
*/
2798 @
REQ(set_class_info
)
2799 user_handle_t window
; /* handle to the window
*/
2800 unsigned int flags
; /* flags for info to
set (see below
) */
2801 atom_t atom
; /* class atom
*/
2802 unsigned int style
; /* class style
*/
2803 int win_extra
; /* number of window extra bytes
*/
2804 mod_handle_t instance
; /* module instance
*/
2805 int extra_offset
; /* offset to set in extra bytes
*/
2806 data_size_t extra_size
; /* size to set in extra bytes
*/
2807 lparam_t extra_value
; /* value to set in extra bytes
*/
2809 atom_t old_atom
; /* previous class atom
*/
2810 unsigned int old_style
; /* previous class style
*/
2811 int old_extra
; /* previous number of class extra bytes
*/
2812 int old_win_extra
; /* previous number of window extra bytes
*/
2813 mod_handle_t old_instance
; /* previous module instance
*/
2814 lparam_t old_extra_value
; /* old value in extra bytes
*/
2816 #define SET_CLASS_ATOM
0x0001
2817 #define SET_CLASS_STYLE
0x0002
2818 #define SET_CLASS_WINEXTRA
0x0004
2819 #define SET_CLASS_INSTANCE
0x0008
2820 #define SET_CLASS_EXTRA
0x0010
2823 /* Set
/get clipboard information
*/
2824 @
REQ(set_clipboard_info
)
2825 unsigned int flags
; /* flags for fields to
set (see below
) */
2826 user_handle_t clipboard
; /* clipboard window
*/
2827 user_handle_t owner
; /* clipboard owner
*/
2828 user_handle_t viewer
; /* first clipboard viewer
*/
2829 unsigned int seqno
; /* change sequence number
*/
2831 unsigned int flags
; /* status
flags (see below
) */
2832 user_handle_t old_clipboard
; /* old clipboard window
*/
2833 user_handle_t old_owner
; /* old clipboard owner
*/
2834 user_handle_t old_viewer
; /* old clipboard viewer
*/
2835 unsigned int seqno
; /* current sequence number
*/
2838 #define SET_CB_OPEN
0x001
2839 #define SET_CB_OWNER
0x002
2840 #define SET_CB_VIEWER
0x004
2841 #define SET_CB_SEQNO
0x008
2842 #define SET_CB_RELOWNER
0x010
2843 #define SET_CB_CLOSE
0x020
2844 #define CB_OPEN
0x040
2845 #define CB_OWNER
0x080
2846 #define CB_PROCESS
0x100
2849 /* Open a security token
*/
2851 obj_handle_t handle
; /* handle to the thread or process
*/
2852 unsigned int access
; /* access rights to the new token
*/
2853 unsigned int attributes
;/* object attributes
*/
2854 unsigned int flags
; /* flags (see below
) */
2856 obj_handle_t token
; /* handle to the token
*/
2858 #define OPEN_TOKEN_THREAD
1
2859 #define OPEN_TOKEN_AS_SELF
2
2862 /* Set
/get the global windows
*/
2863 @
REQ(set_global_windows
)
2864 unsigned int flags
; /* flags for fields to
set (see below
) */
2865 user_handle_t shell_window
; /* handle to the new shell window
*/
2866 user_handle_t shell_listview
; /* handle to the new shell listview window
*/
2867 user_handle_t progman_window
; /* handle to the new program manager window
*/
2868 user_handle_t taskman_window
; /* handle to the new task manager window
*/
2870 user_handle_t old_shell_window
; /* handle to the shell window
*/
2871 user_handle_t old_shell_listview
; /* handle to the shell listview window
*/
2872 user_handle_t old_progman_window
; /* handle to the new program manager window
*/
2873 user_handle_t old_taskman_window
; /* handle to the new task manager window
*/
2875 #define SET_GLOBAL_SHELL_WINDOWS
0x01 /* set both main shell and listview windows
*/
2876 #define SET_GLOBAL_PROGMAN_WINDOW
0x02
2877 #define SET_GLOBAL_TASKMAN_WINDOW
0x04
2879 /* Adjust the privileges held by a token
*/
2880 @
REQ(adjust_token_privileges
)
2881 obj_handle_t handle
; /* handle to the token
*/
2882 int disable_all
; /* disable all privileges?
*/
2883 int get_modified_state
; /* get modified privileges?
*/
2884 VARARG(privileges
,LUID_AND_ATTRIBUTES
); /* privileges to enable
/disable
/remove
*/
2886 unsigned int len
; /* total length in bytes required to store token privileges
*/
2887 VARARG(privileges
,LUID_AND_ATTRIBUTES
); /* modified privileges
*/
2890 /* Retrieves the set of privileges held by or available to a token
*/
2891 @
REQ(get_token_privileges
)
2892 obj_handle_t handle
; /* handle to the token
*/
2894 unsigned int len
; /* total length in bytes required to store token privileges
*/
2895 VARARG(privileges
,LUID_AND_ATTRIBUTES
); /* privileges held by or available to a token
*/
2898 /* Check the token has the required privileges
*/
2899 @
REQ(check_token_privileges
)
2900 obj_handle_t handle
; /* handle to the token
*/
2901 int all_required
; /* are all the privileges required for the check to succeed?
*/
2902 VARARG(privileges
,LUID_AND_ATTRIBUTES
); /* privileges to check
*/
2904 int has_privileges
; /* does the token have the required privileges?
*/
2905 VARARG(privileges
,LUID_AND_ATTRIBUTES
); /* privileges held by or available to a token
*/
2908 @
REQ(duplicate_token
)
2909 obj_handle_t handle
; /* handle to the token to duplicate
*/
2910 unsigned int access
; /* access rights to the new token
*/
2911 unsigned int attributes
; /* object attributes
*/
2912 int primary
; /* is the new token to be a primary one?
*/
2913 int impersonation_level
; /* impersonation level of the new token
*/
2915 obj_handle_t new_handle
; /* duplicated handle
*/
2919 obj_handle_t handle
; /* handle to the token
*/
2920 unsigned int desired_access
; /* desired access to the object
*/
2921 unsigned int mapping_read
; /* mapping from generic read to specific rights
*/
2922 unsigned int mapping_write
; /* mapping from generic write to specific rights
*/
2923 unsigned int mapping_execute
; /* mapping from generic execute to specific rights
*/
2924 unsigned int mapping_all
; /* mapping from generic all to specific rights
*/
2925 VARARG(sd
,security_descriptor
); /* security descriptor to check
*/
2927 unsigned int access_granted
; /* access rights actually granted
*/
2928 unsigned int access_status
; /* was access granted?
*/
2929 unsigned int privileges_len
; /* length needed to store privileges
*/
2930 VARARG(privileges
,LUID_AND_ATTRIBUTES
); /* privileges used during access check
*/
2934 obj_handle_t handle
; /* handle to the token
*/
2935 unsigned int which_sid
; /* which SID to retrieve from the token
*/
2937 data_size_t sid_len
; /* length needed to store sid
*/
2938 VARARG(sid
,SID
); /* the sid specified by which_sid from the token
*/
2941 @
REQ(get_token_groups
)
2942 obj_handle_t handle
; /* handle to the token
*/
2944 data_size_t user_len
; /* length needed to store user
*/
2945 VARARG(user
,token_groups
); /* groups the token
's user belongs to */
2948 @REQ(get_token_default_dacl)
2949 obj_handle_t handle; /* handle to the token */
2951 data_size_t acl_len; /* length needed to store access control list */
2952 VARARG(acl,ACL); /* access control list */
2955 @REQ(set_token_default_dacl)
2956 obj_handle_t handle; /* handle to the token */
2957 VARARG(acl,ACL); /* default dacl to set */
2960 @REQ(set_security_object)
2961 obj_handle_t handle; /* handle to the object */
2962 unsigned int security_info; /* which parts of security descriptor to set */
2963 VARARG(sd,security_descriptor); /* security descriptor to set */
2966 @REQ(get_security_object)
2967 obj_handle_t handle; /* handle to the object */
2968 unsigned int security_info; /* which parts of security descriptor to get */
2970 unsigned int sd_len; /* buffer size needed for sd */
2971 VARARG(sd,security_descriptor); /* retrieved security descriptor */
2974 /* Create a mailslot */
2975 @REQ(create_mailslot)
2976 unsigned int access; /* wanted access rights */
2977 unsigned int attributes; /* object attributes */
2978 obj_handle_t rootdir; /* root directory */
2979 timeout_t read_timeout;
2980 unsigned int max_msgsize;
2981 VARARG(name,unicode_str); /* mailslot name */
2983 obj_handle_t handle; /* handle to the mailslot */
2987 /* Set mailslot information */
2988 @REQ(set_mailslot_info)
2989 obj_handle_t handle; /* handle to the mailslot */
2990 timeout_t read_timeout;
2993 timeout_t read_timeout;
2994 unsigned int max_msgsize;
2996 #define MAILSLOT_SET_READ_TIMEOUT 1
2999 /* Create a directory object */
3000 @REQ(create_directory)
3001 unsigned int access; /* access flags */
3002 unsigned int attributes; /* object attributes */
3003 obj_handle_t rootdir; /* root directory */
3004 VARARG(directory_name,unicode_str); /* Directory name */
3006 obj_handle_t handle; /* handle to the directory */
3010 /* Open a directory object */
3011 @REQ(open_directory)
3012 unsigned int access; /* access flags */
3013 unsigned int attributes; /* object attributes */
3014 obj_handle_t rootdir; /* root directory */
3015 VARARG(directory_name,unicode_str); /* Directory name */
3017 obj_handle_t handle; /* handle to the directory */
3021 /* Get a directory entry by index */
3022 @REQ(get_directory_entry)
3023 obj_handle_t handle; /* handle to the directory */
3024 unsigned int index; /* entry index */
3026 data_size_t name_len; /* length of the entry name in bytes */
3027 VARARG(name,unicode_str,name_len); /* entry name */
3028 VARARG(type,unicode_str); /* entry type */
3032 /* Create a symbolic link object */
3033 @REQ(create_symlink)
3034 unsigned int access; /* access flags */
3035 unsigned int attributes; /* object attributes */
3036 obj_handle_t rootdir; /* root directory */
3037 data_size_t name_len; /* length of the symlink name in bytes */
3038 VARARG(name,unicode_str,name_len); /* symlink name */
3039 VARARG(target_name,unicode_str); /* target name */
3041 obj_handle_t handle; /* handle to the symlink */
3045 /* Open a symbolic link object */
3047 unsigned int access; /* access flags */
3048 unsigned int attributes; /* object attributes */
3049 obj_handle_t rootdir; /* root directory */
3050 VARARG(name,unicode_str); /* symlink name */
3052 obj_handle_t handle; /* handle to the symlink */
3056 /* Query a symbolic link object */
3058 obj_handle_t handle; /* handle to the symlink */
3060 VARARG(target_name,unicode_str); /* target name */
3064 /* Query basic object information */
3065 @REQ(get_object_info)
3066 obj_handle_t handle; /* handle to the object */
3068 unsigned int access; /* granted access mask */
3069 unsigned int ref_count; /* object ref count */
3070 data_size_t total; /* total needed size for name */
3071 VARARG(name,unicode_str); /* object name */
3075 /* Unlink a named object */
3077 obj_handle_t handle; /* handle to the object */
3081 /* Query the impersonation level of an impersonation token */
3082 @REQ(get_token_impersonation_level)
3083 obj_handle_t handle; /* handle to the object */
3085 int impersonation_level; /* impersonation level of the impersonation token */
3088 /* Allocate a locally-unique identifier */
3089 @REQ(allocate_locally_unique_id)
3095 /* Create a device manager */
3096 @REQ(create_device_manager)
3097 unsigned int access; /* wanted access rights */
3098 unsigned int attributes; /* object attributes */
3100 obj_handle_t handle; /* handle to the device */
3104 /* Create a device */
3106 unsigned int access; /* wanted access rights */
3107 unsigned int attributes; /* object attributes */
3108 obj_handle_t rootdir; /* root directory */
3109 client_ptr_t user_ptr; /* opaque ptr for use by client */
3110 obj_handle_t manager; /* device manager */
3111 VARARG(name,unicode_str); /* object name */
3113 obj_handle_t handle; /* handle to the device */
3117 /* Delete a device */
3119 obj_handle_t handle; /* handle to the device */
3123 /* Retrieve the next pending device ioctl request */
3124 @REQ(get_next_device_request)
3125 obj_handle_t manager; /* handle to the device manager */
3126 obj_handle_t prev; /* handle to the previous ioctl */
3127 unsigned int status; /* status of the previous ioctl */
3128 VARARG(prev_data,bytes); /* output data of the previous ioctl */
3130 obj_handle_t next; /* handle to the next ioctl */
3131 ioctl_code_t code; /* ioctl code */
3132 client_ptr_t user_ptr; /* opaque ptr for the device */
3133 data_size_t in_size; /* total needed input size */
3134 data_size_t out_size; /* needed output size */
3135 VARARG(next_data,bytes); /* input data of the next ioctl */
3139 /* Make the current process a system process */
3140 @REQ(make_process_system)
3142 obj_handle_t event; /* event signaled when all user processes have exited */
3146 /* Get detailed fixed-size information about a token */
3147 @REQ(get_token_statistics)
3148 obj_handle_t handle; /* handle to the object */
3150 luid_t token_id; /* locally-unique identifier of the token */
3151 luid_t modified_id; /* locally-unique identifier of the modified version of the token */
3152 int primary; /* is the token primary or impersonation? */
3153 int impersonation_level; /* level of impersonation */
3154 int group_count; /* the number of groups the token is a member of */
3155 int privilege_count; /* the number of privileges the token has */
3159 /* Create I/O completion port */
3160 @REQ(create_completion)
3161 unsigned int access; /* desired access to a port */
3162 unsigned int attributes; /* object attributes */
3163 unsigned int concurrent; /* max number of concurrent active threads */
3164 obj_handle_t rootdir; /* root directory */
3165 VARARG(filename,string); /* port name */
3167 obj_handle_t handle; /* port handle */
3171 /* Open I/O completion port */
3172 @REQ(open_completion)
3173 unsigned int access; /* desired access to a port */
3174 unsigned int attributes; /* object attributes */
3175 obj_handle_t rootdir; /* root directory */
3176 VARARG(filename,string); /* port name */
3178 obj_handle_t handle; /* port handle */
3182 /* add completion to completion port */
3183 @REQ(add_completion)
3184 obj_handle_t handle; /* port handle */
3185 apc_param_t ckey; /* completion key */
3186 apc_param_t cvalue; /* completion value */
3187 unsigned int information; /* IO_STATUS_BLOCK Information */
3188 unsigned int status; /* completion result */
3192 /* get completion from completion port queue */
3193 @REQ(remove_completion)
3194 obj_handle_t handle; /* port handle */
3196 apc_param_t ckey; /* completion key */
3197 apc_param_t cvalue; /* completion value */
3198 unsigned int information; /* IO_STATUS_BLOCK Information */
3199 unsigned int status; /* completion result */
3203 /* get completion queue depth */
3204 @REQ(query_completion)
3205 obj_handle_t handle; /* port handle */
3207 unsigned int depth; /* completion queue depth */
3211 /* associate object with completion port */
3212 @REQ(set_completion_info)
3213 obj_handle_t handle; /* object handle */
3214 apc_param_t ckey; /* completion key */
3215 obj_handle_t chandle; /* port handle */
3219 /* check for associated completion and push msg */
3220 @REQ(add_fd_completion)
3221 obj_handle_t handle; /* async' object
*/
3222 apc_param_t cvalue
; /* completion value
*/
3223 unsigned int status
; /* completion status
*/
3224 unsigned int information
; /* IO_STATUS_BLOCK Information
*/
3228 /* Retrieve layered info for a window
*/
3229 @
REQ(get_window_layered_info
)
3230 user_handle_t handle
; /* handle to the window
*/
3232 unsigned int color_key
; /* color key
*/
3233 unsigned int alpha
; /* alpha (0.
.255) */
3234 unsigned int flags
; /* LWA_
* flags
*/
3238 /* Set layered info for a window
*/
3239 @
REQ(set_window_layered_info
)
3240 user_handle_t handle
; /* handle to the window
*/
3241 unsigned int color_key
; /* color key
*/
3242 unsigned int alpha
; /* alpha (0.
.255) */
3243 unsigned int flags
; /* LWA_
* flags
*/
3247 /* Allocate an arbitrary user handle
*/
3248 @
REQ(alloc_user_handle
)
3250 user_handle_t handle
; /* allocated handle
*/
3254 /* Free an arbitrary user handle
*/
3255 @
REQ(free_user_handle
)
3256 user_handle_t handle
; /* handle to free
*/
3260 /* Set
/get the current cursor
*/
3262 unsigned int flags
; /* flags for fields to
set (see below
) */
3263 user_handle_t handle
; /* handle to the cursor
*/
3264 int show_count
; /* show count increment
/decrement
*/
3266 user_handle_t prev_handle
; /* previous handle
*/
3267 int prev_count
; /* previous show count
*/
3269 #define SET_CURSOR_HANDLE
0x01
3270 #define SET_CURSOR_COUNT
0x02