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
; } x86_64_regs
;
162 struct
{ unsigned __int64 fir
;
163 unsigned int psr
; } alpha_regs
;
164 struct
{ unsigned int iar
, msr
, ctr
, lr
, dar
, dsisr
, trap
; } 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
*/
1998 /* Get a message from the current queue
*/
2000 unsigned int flags
; /* PM_
* flags
*/
2001 user_handle_t get_win
; /* window handle to get
*/
2002 unsigned int get_first
; /* first message code to get
*/
2003 unsigned int get_last
; /* last message code to get
*/
2004 unsigned int hw_id
; /* id of the previous hardware
message (or
0) */
2005 unsigned int wake_mask
; /* wakeup bits mask
*/
2006 unsigned int changed_mask
; /* changed bits mask
*/
2008 user_handle_t win
; /* window handle
*/
2009 unsigned int msg
; /* message code
*/
2010 lparam_t wparam
; /* parameters
*/
2011 lparam_t lparam
; /* parameters
*/
2012 int type
; /* message type
*/
2013 unsigned int time
; /* message time
*/
2014 unsigned int active_hooks
; /* active hooks bitmap
*/
2015 data_size_t total
; /* total size of extra data
*/
2016 VARARG(data
,message_data
); /* message data for sent messages
*/
2020 /* Reply to a sent message
*/
2022 int remove
; /* should we remove the message?
*/
2023 lparam_t result
; /* message result
*/
2024 VARARG(data
,bytes
); /* message data for sent messages
*/
2028 /* Accept the current hardware message
*/
2029 @
REQ(accept_hardware_message
)
2030 unsigned int hw_id
; /* id of the hardware message
*/
2031 int remove
; /* should we remove the message?
*/
2032 user_handle_t new_win
; /* new destination window for current message
*/
2036 /* Retrieve the reply for the last message sent
*/
2037 @
REQ(get_message_reply
)
2038 int cancel
; /* cancel message if not ready?
*/
2040 lparam_t result
; /* message result
*/
2041 VARARG(data
,bytes
); /* message data for sent messages
*/
2045 /* Set a window timer
*/
2047 user_handle_t win
; /* window handle
*/
2048 unsigned int msg
; /* message to post
*/
2049 unsigned int rate
; /* timer rate in ms
*/
2050 lparam_t id
; /* timer id
*/
2051 lparam_t lparam
; /* message
lparam (callback proc
) */
2053 lparam_t id
; /* timer id
*/
2057 /* Kill a window timer
*/
2058 @
REQ(kill_win_timer
)
2059 user_handle_t win
; /* window handle
*/
2060 lparam_t id
; /* timer id
*/
2061 unsigned int msg
; /* message to post
*/
2065 /* check if the thread owning the window is hung
*/
2066 @
REQ(is_window_hung
)
2067 user_handle_t win
; /* window handle
*/
2073 /* Retrieve info about a serial port
*/
2074 @
REQ(get_serial_info
)
2075 obj_handle_t handle
; /* handle to comm port
*/
2077 unsigned int readinterval
;
2078 unsigned int readconst
;
2079 unsigned int readmult
;
2080 unsigned int writeconst
;
2081 unsigned int writemult
;
2082 unsigned int eventmask
;
2086 /* Set info about a serial port
*/
2087 @
REQ(set_serial_info
)
2088 obj_handle_t handle
; /* handle to comm port
*/
2089 int flags
; /* bitmask to set
values (see below
) */
2090 unsigned int readinterval
;
2091 unsigned int readconst
;
2092 unsigned int readmult
;
2093 unsigned int writeconst
;
2094 unsigned int writemult
;
2095 unsigned int eventmask
;
2097 #define SERIALINFO_SET_TIMEOUTS
0x01
2098 #define SERIALINFO_SET_MASK
0x02
2101 /* Create an async I
/O
*/
2102 @
REQ(register_async
)
2103 int type
; /* type of queue to look after
*/
2104 async_data_t async
; /* async I
/O parameters
*/
2105 int count
; /* count
- usually # of bytes to be read
/written
*/
2107 #define ASYNC_TYPE_READ
0x01
2108 #define ASYNC_TYPE_WRITE
0x02
2109 #define ASYNC_TYPE_WAIT
0x03
2112 /* Cancel all async op on a fd
*/
2114 obj_handle_t handle
; /* handle to comm port
, socket or file
*/
2115 client_ptr_t iosb
; /* I
/O status
block (NULL
=all
) */
2116 int only_thread
; /* cancel matching this thread
*/
2120 /* Perform an ioctl on a file
*/
2122 ioctl_code_t code
; /* ioctl code
*/
2123 async_data_t async
; /* async I
/O parameters
*/
2124 int blocking
; /* whether it
's a blocking ioctl */
2125 VARARG(in_data,bytes); /* ioctl input data */
2127 obj_handle_t wait; /* handle to wait on for blocking ioctl */
2128 unsigned int options; /* device open options */
2129 VARARG(out_data,bytes); /* ioctl output data */
2133 /* Retrieve results of an async ioctl */
2134 @REQ(get_ioctl_result)
2135 obj_handle_t handle; /* handle to the device */
2136 client_ptr_t user_arg; /* user arg used to identify the request */
2138 VARARG(out_data,bytes); /* ioctl output data */
2142 /* Create a named pipe */
2143 @REQ(create_named_pipe)
2144 unsigned int access;
2145 unsigned int attributes; /* object attributes */
2146 obj_handle_t rootdir; /* root directory */
2147 unsigned int options;
2148 unsigned int maxinstances;
2149 unsigned int outsize;
2150 unsigned int insize;
2153 VARARG(name,unicode_str); /* pipe name */
2155 obj_handle_t handle; /* handle to the pipe */
2158 /* flags in create_named_pipe and get_named_pipe_info */
2159 #define NAMED_PIPE_MESSAGE_STREAM_WRITE 0x0001
2160 #define NAMED_PIPE_MESSAGE_STREAM_READ 0x0002
2161 #define NAMED_PIPE_NONBLOCKING_MODE 0x0004
2162 #define NAMED_PIPE_SERVER_END 0x8000
2165 @REQ(get_named_pipe_info)
2166 obj_handle_t handle;
2169 unsigned int maxinstances;
2170 unsigned int instances;
2171 unsigned int outsize;
2172 unsigned int insize;
2176 /* Create a window */
2178 user_handle_t parent; /* parent window */
2179 user_handle_t owner; /* owner window */
2180 atom_t atom; /* class atom */
2181 mod_handle_t instance; /* module instance */
2182 VARARG(class,unicode_str); /* class name */
2184 user_handle_t handle; /* created window */
2185 user_handle_t parent; /* full handle of parent */
2186 user_handle_t owner; /* full handle of owner */
2187 int extra; /* number of extra bytes */
2188 client_ptr_t class_ptr; /* pointer to class in client address space */
2192 /* Destroy a window */
2193 @REQ(destroy_window)
2194 user_handle_t handle; /* handle to the window */
2198 /* Retrieve the desktop window for the current thread */
2199 @REQ(get_desktop_window)
2200 int force; /* force creation if it doesn't exist
*/
2202 user_handle_t top_window
; /* handle to the desktop window
*/
2203 user_handle_t msg_window
; /* handle to the top
-level HWND_MESSAGE parent
*/
2207 /* Set a window owner
*/
2208 @
REQ(set_window_owner
)
2209 user_handle_t handle
; /* handle to the window
*/
2210 user_handle_t owner
; /* new owner
*/
2212 user_handle_t full_owner
; /* full handle of new owner
*/
2213 user_handle_t prev_owner
; /* full handle of previous owner
*/
2217 /* Get information from a window handle
*/
2218 @
REQ(get_window_info
)
2219 user_handle_t handle
; /* handle to the window
*/
2221 user_handle_t full_handle
; /* full
32-bit handle
*/
2222 user_handle_t last_active
; /* last active popup
*/
2223 process_id_t pid
; /* process owning the window
*/
2224 thread_id_t tid
; /* thread owning the window
*/
2225 atom_t atom
; /* class atom
*/
2226 int is_unicode
; /* ANSI or unicode
*/
2230 /* Set some information in a window
*/
2231 @
REQ(set_window_info
)
2232 unsigned short flags
; /* flags for fields to
set (see below
) */
2233 short int is_unicode
; /* ANSI or unicode
*/
2234 user_handle_t handle
; /* handle to the window
*/
2235 unsigned int style
; /* window style
*/
2236 unsigned int ex_style
; /* window extended style
*/
2237 unsigned int id
; /* window id
*/
2238 mod_handle_t instance
; /* creator instance
*/
2239 lparam_t user_data
; /* user
-specific data
*/
2240 int extra_offset
; /* offset to set in extra bytes
*/
2241 data_size_t extra_size
; /* size to set in extra bytes
*/
2242 lparam_t extra_value
; /* value to set in extra bytes
*/
2244 unsigned int old_style
; /* old window style
*/
2245 unsigned int old_ex_style
; /* old window extended style
*/
2246 mod_handle_t old_instance
; /* old creator instance
*/
2247 lparam_t old_user_data
; /* old user
-specific data
*/
2248 lparam_t old_extra_value
; /* old value in extra bytes
*/
2249 unsigned int old_id
; /* old window id
*/
2251 #define SET_WIN_STYLE
0x01
2252 #define SET_WIN_EXSTYLE
0x02
2253 #define SET_WIN_ID
0x04
2254 #define SET_WIN_INSTANCE
0x08
2255 #define SET_WIN_USERDATA
0x10
2256 #define SET_WIN_EXTRA
0x20
2257 #define SET_WIN_UNICODE
0x40
2260 /* Set the parent of a window
*/
2262 user_handle_t handle
; /* handle to the window
*/
2263 user_handle_t parent
; /* handle to the parent
*/
2265 user_handle_t old_parent
; /* old parent window
*/
2266 user_handle_t full_parent
; /* full handle of new parent
*/
2270 /* Get a list of the window parents
, up to the root of the tree
*/
2271 @
REQ(get_window_parents
)
2272 user_handle_t handle
; /* handle to the window
*/
2274 int count
; /* total count of parents
*/
2275 VARARG(parents
,user_handles
); /* parent handles
*/
2279 /* Get a list of the window children
*/
2280 @
REQ(get_window_children
)
2281 obj_handle_t desktop
; /* handle to desktop
*/
2282 user_handle_t parent
; /* parent window
*/
2283 atom_t atom
; /* class atom for the listed children
*/
2284 thread_id_t tid
; /* thread owning the listed children
*/
2285 VARARG(class
,unicode_str
); /* class name
*/
2287 int count
; /* total count of children
*/
2288 VARARG(children
,user_handles
); /* children handles
*/
2292 /* Get a list of the window children that contain a given point
*/
2293 @
REQ(get_window_children_from_point
)
2294 user_handle_t parent
; /* parent window
*/
2295 int x
; /* point in parent coordinates
*/
2298 int count
; /* total count of children
*/
2299 VARARG(children
,user_handles
); /* children handles
*/
2303 /* Get window tree information from a window handle
*/
2304 @
REQ(get_window_tree
)
2305 user_handle_t handle
; /* handle to the window
*/
2307 user_handle_t parent
; /* parent window
*/
2308 user_handle_t owner
; /* owner window
*/
2309 user_handle_t next_sibling
; /* next sibling in Z
-order
*/
2310 user_handle_t prev_sibling
; /* prev sibling in Z
-order
*/
2311 user_handle_t first_sibling
; /* first sibling in Z
-order
*/
2312 user_handle_t last_sibling
; /* last sibling in Z
-order
*/
2313 user_handle_t first_child
; /* first child
*/
2314 user_handle_t last_child
; /* last child
*/
2317 /* Set the position and Z order of a window
*/
2318 @
REQ(set_window_pos
)
2319 unsigned int flags
; /* SWP_
* flags
*/
2320 user_handle_t handle
; /* handle to the window
*/
2321 user_handle_t previous
; /* previous window in Z order
*/
2322 rectangle_t window
; /* window rectangle
*/
2323 rectangle_t client
; /* client rectangle
*/
2324 VARARG(valid
,rectangles
); /* valid rectangles from WM_NCCALCSIZE
*/
2326 unsigned int new_style
; /* new window style
*/
2327 unsigned int new_ex_style
; /* new window extended style
*/
2331 /* Get the window and client rectangles of a window
*/
2332 @
REQ(get_window_rectangles
)
2333 user_handle_t handle
; /* handle to the window
*/
2335 rectangle_t window
; /* window rectangle
*/
2336 rectangle_t visible
; /* visible part of the window rectangle
*/
2337 rectangle_t client
; /* client rectangle
*/
2341 /* Get the window text
*/
2342 @
REQ(get_window_text
)
2343 user_handle_t handle
; /* handle to the window
*/
2345 VARARG(text
,unicode_str
); /* window text
*/
2349 /* Set the window text
*/
2350 @
REQ(set_window_text
)
2351 user_handle_t handle
; /* handle to the window
*/
2352 VARARG(text
,unicode_str
); /* window text
*/
2356 /* Get the coordinates offset between two windows
*/
2357 @
REQ(get_windows_offset
)
2358 user_handle_t from
; /* handle to the first window
*/
2359 user_handle_t to
; /* handle to the second window
*/
2361 int x
; /* x coordinate offset
*/
2362 int y
; /* y coordinate offset
*/
2366 /* Get the visible region of a window
*/
2367 @
REQ(get_visible_region
)
2368 user_handle_t window
; /* handle to the window
*/
2369 unsigned int flags
; /* DCX flags
*/
2371 user_handle_t top_win
; /* top window to clip against
*/
2372 rectangle_t top_rect
; /* top window visible rect with screen coords
*/
2373 rectangle_t win_rect
; /* window rect in screen coords
*/
2374 data_size_t total_size
; /* total size of the resulting region
*/
2375 VARARG(region
,rectangles
); /* list of rectangles for the
region (in screen coords
) */
2379 /* Get the window region
*/
2380 @
REQ(get_window_region
)
2381 user_handle_t window
; /* handle to the window
*/
2383 data_size_t total_size
; /* total size of the resulting region
*/
2384 VARARG(region
,rectangles
); /* list of rectangles for the region
*/
2388 /* Set the window region
*/
2389 @
REQ(set_window_region
)
2390 user_handle_t window
; /* handle to the window
*/
2391 int redraw
; /* redraw the window?
*/
2392 VARARG(region
,rectangles
); /* list of rectangles for the region
*/
2396 /* Get the window update region
*/
2397 @
REQ(get_update_region
)
2398 user_handle_t window
; /* handle to the window
*/
2399 user_handle_t from_child
; /* child to start searching from
*/
2400 unsigned int flags
; /* update
flags (see below
) */
2402 user_handle_t child
; /* child to
repaint (or window itself
) */
2403 unsigned int flags
; /* resulting update
flags (see below
) */
2404 data_size_t total_size
; /* total size of the resulting region
*/
2405 VARARG(region
,rectangles
); /* list of rectangles for the region
*/
2407 #define UPDATE_NONCLIENT
0x01 /* get region for repainting non
-client area
*/
2408 #define UPDATE_ERASE
0x02 /* get region for erasing client area
*/
2409 #define UPDATE_PAINT
0x04 /* get region for painting client area
*/
2410 #define UPDATE_INTERNALPAINT
0x08 /* get region if internal paint is pending
*/
2411 #define UPDATE_ALLCHILDREN
0x10 /* force repaint of all children
*/
2412 #define UPDATE_NOCHILDREN
0x20 /* don
't try to repaint any children */
2413 #define UPDATE_NOREGION 0x40 /* don't return a region
, only the flags
*/
2414 #define UPDATE_DELAYED_ERASE
0x80 /* still needs erase after BeginPaint
*/
2417 /* Update the z order of a window so that a given rectangle is fully visible
*/
2418 @
REQ(update_window_zorder
)
2419 user_handle_t window
; /* handle to the window
*/
2420 rectangle_t rect
; /* rectangle that must be visible
*/
2424 /* Mark parts of a window as needing a redraw
*/
2426 user_handle_t window
; /* handle to the window
*/
2427 unsigned int flags
; /* RDW_
* flags
*/
2428 VARARG(region
,rectangles
); /* list of rectangles for the region
*/
2432 /* Set a window property
*/
2433 @
REQ(set_window_property
)
2434 user_handle_t window
; /* handle to the window
*/
2435 lparam_t data
; /* data to store
*/
2436 atom_t atom
; /* property
atom (if no name specified
) */
2437 VARARG(name
,unicode_str
); /* property name
*/
2441 /* Remove a window property
*/
2442 @
REQ(remove_window_property
)
2443 user_handle_t window
; /* handle to the window
*/
2444 atom_t atom
; /* property
atom (if no name specified
) */
2445 VARARG(name
,unicode_str
); /* property name
*/
2447 lparam_t data
; /* data stored in property
*/
2451 /* Get a window property
*/
2452 @
REQ(get_window_property
)
2453 user_handle_t window
; /* handle to the window
*/
2454 atom_t atom
; /* property
atom (if no name specified
) */
2455 VARARG(name
,unicode_str
); /* property name
*/
2457 lparam_t data
; /* data stored in property
*/
2461 /* Get the list of properties of a window
*/
2462 @
REQ(get_window_properties
)
2463 user_handle_t window
; /* handle to the window
*/
2465 int total
; /* total number of properties
*/
2466 VARARG(props
,properties
); /* list of properties
*/
2470 /* Create a window station
*/
2471 @
REQ(create_winstation
)
2472 unsigned int flags
; /* window station flags
*/
2473 unsigned int access
; /* wanted access rights
*/
2474 unsigned int attributes
; /* object attributes
*/
2475 VARARG(name
,unicode_str
); /* object name
*/
2477 obj_handle_t handle
; /* handle to the window station
*/
2481 /* Open a handle to a window station
*/
2482 @
REQ(open_winstation
)
2483 unsigned int access
; /* wanted access rights
*/
2484 unsigned int attributes
; /* object attributes
*/
2485 VARARG(name
,unicode_str
); /* object name
*/
2487 obj_handle_t handle
; /* handle to the window station
*/
2491 /* Close a window station
*/
2492 @
REQ(close_winstation
)
2493 obj_handle_t handle
; /* handle to the window station
*/
2497 /* Get the process current window station
*/
2498 @
REQ(get_process_winstation
)
2500 obj_handle_t handle
; /* handle to the window station
*/
2504 /* Set the process current window station
*/
2505 @
REQ(set_process_winstation
)
2506 obj_handle_t handle
; /* handle to the window station
*/
2510 /* Enumerate window stations
*/
2511 @
REQ(enum_winstation
)
2512 unsigned int index
; /* current index
*/
2514 unsigned int next
; /* next index
*/
2515 VARARG(name
,unicode_str
); /* window station name
*/
2519 /* Create a desktop
*/
2520 @
REQ(create_desktop
)
2521 unsigned int flags
; /* desktop flags
*/
2522 unsigned int access
; /* wanted access rights
*/
2523 unsigned int attributes
; /* object attributes
*/
2524 VARARG(name
,unicode_str
); /* object name
*/
2526 obj_handle_t handle
; /* handle to the desktop
*/
2530 /* Open a handle to a desktop
*/
2532 obj_handle_t winsta
; /* window station to
open (null allowed
) */
2533 unsigned int flags
; /* desktop flags
*/
2534 unsigned int access
; /* wanted access rights
*/
2535 unsigned int attributes
; /* object attributes
*/
2536 VARARG(name
,unicode_str
); /* object name
*/
2538 obj_handle_t handle
; /* handle to the desktop
*/
2542 /* Close a desktop
*/
2544 obj_handle_t handle
; /* handle to the desktop
*/
2548 /* Get the thread current desktop
*/
2549 @
REQ(get_thread_desktop
)
2550 thread_id_t tid
; /* thread id
*/
2552 obj_handle_t handle
; /* handle to the desktop
*/
2556 /* Set the thread current desktop
*/
2557 @
REQ(set_thread_desktop
)
2558 obj_handle_t handle
; /* handle to the desktop
*/
2562 /* Enumerate desktops
*/
2564 obj_handle_t winstation
; /* handle to the window station
*/
2565 unsigned int index
; /* current index
*/
2567 unsigned int next
; /* next index
*/
2568 VARARG(name
,unicode_str
); /* window station name
*/
2572 /* Get
/set information about a user
object (window station or desktop
) */
2573 @
REQ(set_user_object_info
)
2574 obj_handle_t handle
; /* handle to the object
*/
2575 unsigned int flags
; /* information to set
*/
2576 unsigned int obj_flags
; /* new object flags
*/
2578 int is_desktop
; /* is object a desktop?
*/
2579 unsigned int old_obj_flags
; /* old object flags
*/
2580 VARARG(name
,unicode_str
); /* object name
*/
2582 #define SET_USER_OBJECT_FLAGS
1
2585 /* Attach (or detach
) thread inputs
*/
2586 @
REQ(attach_thread_input
)
2587 thread_id_t tid_from
; /* thread to be attached
*/
2588 thread_id_t tid_to
; /* thread to which tid_from should be attached
*/
2589 int attach
; /* is it an attach?
*/
2593 /* Get input data for a given thread
*/
2594 @
REQ(get_thread_input
)
2595 thread_id_t tid
; /* id of thread
*/
2597 user_handle_t focus
; /* handle to the focus window
*/
2598 user_handle_t capture
; /* handle to the capture window
*/
2599 user_handle_t active
; /* handle to the active window
*/
2600 user_handle_t foreground
; /* handle to the global foreground window
*/
2601 user_handle_t menu_owner
; /* handle to the menu owner
*/
2602 user_handle_t move_size
; /* handle to the moving
/resizing window
*/
2603 user_handle_t caret
; /* handle to the caret window
*/
2604 rectangle_t rect
; /* caret rectangle
*/
2608 /* Get the time of the last input event
*/
2609 @
REQ(get_last_input_time
)
2615 /* Retrieve queue keyboard state for a given thread
*/
2617 thread_id_t tid
; /* id of thread
*/
2618 int key
; /* optional key code or
-1 */
2620 unsigned char state
; /* state of specified key
*/
2621 VARARG(keystate
,bytes
); /* state array for all the keys
*/
2624 /* Set queue keyboard state for a given thread
*/
2626 thread_id_t tid
; /* id of thread
*/
2627 VARARG(keystate
,bytes
); /* state array for all the keys
*/
2630 /* Set the system foreground window
*/
2631 @
REQ(set_foreground_window
)
2632 user_handle_t handle
; /* handle to the foreground window
*/
2634 user_handle_t previous
; /* handle to the previous foreground window
*/
2635 int send_msg_old
; /* whether we have to send a msg to the old window
*/
2636 int send_msg_new
; /* whether we have to send a msg to the new window
*/
2639 /* Set the current thread focus window
*/
2640 @
REQ(set_focus_window
)
2641 user_handle_t handle
; /* handle to the focus window
*/
2643 user_handle_t previous
; /* handle to the previous focus window
*/
2646 /* Set the current thread active window
*/
2647 @
REQ(set_active_window
)
2648 user_handle_t handle
; /* handle to the active window
*/
2650 user_handle_t previous
; /* handle to the previous active window
*/
2653 /* Set the current thread capture window
*/
2654 @
REQ(set_capture_window
)
2655 user_handle_t handle
; /* handle to the capture window
*/
2656 unsigned int flags
; /* capture
flags (see below
) */
2658 user_handle_t previous
; /* handle to the previous capture window
*/
2659 user_handle_t full_handle
; /* full
32-bit handle of new capture window
*/
2661 #define CAPTURE_MENU
0x01 /* capture is for a menu
*/
2662 #define CAPTURE_MOVESIZE
0x02 /* capture is for moving
/resizing
*/
2665 /* Set the current thread caret window
*/
2666 @
REQ(set_caret_window
)
2667 user_handle_t handle
; /* handle to the caret window
*/
2668 int width
; /* caret width
*/
2669 int height
; /* caret height
*/
2671 user_handle_t previous
; /* handle to the previous caret window
*/
2672 rectangle_t old_rect
; /* previous caret rectangle
*/
2673 int old_hide
; /* previous hide count
*/
2674 int old_state
; /* previous caret
state (1=on
, 0=off
) */
2678 /* Set the current thread caret information
*/
2679 @
REQ(set_caret_info
)
2680 unsigned int flags
; /* caret
flags (see below
) */
2681 user_handle_t handle
; /* handle to the caret window
*/
2682 int x
; /* caret x position
*/
2683 int y
; /* caret y position
*/
2684 int hide
; /* increment for hide
count (can be negative to show it
) */
2685 int state
; /* caret
state (1=on
, 0=off
, -1=toggle current state
) */
2687 user_handle_t full_handle
; /* handle to the current caret window
*/
2688 rectangle_t old_rect
; /* previous caret rectangle
*/
2689 int old_hide
; /* previous hide count
*/
2690 int old_state
; /* previous caret
state (1=on
, 0=off
) */
2692 #define SET_CARET_POS
0x01 /* set the caret position from x
,y
*/
2693 #define SET_CARET_HIDE
0x02 /* increment the caret hide count
*/
2694 #define SET_CARET_STATE
0x04 /* set the caret on
/off state
*/
2697 /* Set a window hook
*/
2699 int id
; /* id of the hook
*/
2700 process_id_t pid
; /* id of process to set the hook into
*/
2701 thread_id_t tid
; /* id of thread to set the hook into
*/
2704 client_ptr_t proc
; /* hook procedure
*/
2706 int unicode
; /* is it a unicode hook?
*/
2707 VARARG(module
,unicode_str
); /* module name
*/
2709 user_handle_t handle
; /* handle to the hook
*/
2710 unsigned int active_hooks
; /* active hooks bitmap
*/
2714 /* Remove a window hook
*/
2716 user_handle_t handle
; /* handle to the hook
*/
2717 client_ptr_t proc
; /* hook procedure if handle is
0 */
2718 int id
; /* id of the hook if handle is
0 */
2720 unsigned int active_hooks
; /* active hooks bitmap
*/
2724 /* Start calling a hook chain
*/
2725 @
REQ(start_hook_chain
)
2726 int id
; /* id of the hook
*/
2727 int event
; /* signalled event
*/
2728 user_handle_t window
; /* handle to the event window
*/
2729 int object_id
; /* object id for out of context winevent
*/
2730 int child_id
; /* child id for out of context winevent
*/
2732 user_handle_t handle
; /* handle to the next hook
*/
2733 process_id_t pid
; /* process id for low
-level keyboard
/mouse hooks
*/
2734 thread_id_t tid
; /* thread id for low
-level keyboard
/mouse hooks
*/
2735 int unicode
; /* is it a unicode hook?
*/
2736 client_ptr_t proc
; /* hook procedure
*/
2737 unsigned int active_hooks
; /* active hooks bitmap
*/
2738 VARARG(module
,unicode_str
); /* module name
*/
2742 /* Finished calling a hook chain
*/
2743 @
REQ(finish_hook_chain
)
2744 int id
; /* id of the hook
*/
2748 /* Get the hook information
*/
2750 user_handle_t handle
; /* handle to the current hook
*/
2751 int get_next
; /* do we want info about current or next hook?
*/
2752 int event
; /* signalled event
*/
2753 user_handle_t window
; /* handle to the event window
*/
2754 int object_id
; /* object id for out of context winevent
*/
2755 int child_id
; /* child id for out of context winevent
*/
2757 user_handle_t handle
; /* handle to the hook
*/
2758 int id
; /* id of the hook
*/
2759 process_id_t pid
; /* process id for low
-level keyboard
/mouse hooks
*/
2760 thread_id_t tid
; /* thread id for low
-level keyboard
/mouse hooks
*/
2761 client_ptr_t proc
; /* hook procedure
*/
2762 int unicode
; /* is it a unicode hook?
*/
2763 VARARG(module
,unicode_str
); /* module name
*/
2767 /* Create a window class
*/
2769 int local
; /* is it a local class?
*/
2770 atom_t atom
; /* class atom
*/
2771 unsigned int style
; /* class style
*/
2772 mod_handle_t instance
; /* module instance
*/
2773 int extra
; /* number of extra class bytes
*/
2774 int win_extra
; /* number of window extra bytes
*/
2775 client_ptr_t client_ptr
; /* pointer to class in client address space
*/
2776 VARARG(name
,unicode_str
); /* class name
*/
2778 atom_t atom
; /* resulting class atom
*/
2782 /* Destroy a window class
*/
2784 atom_t atom
; /* class atom
*/
2785 mod_handle_t instance
; /* module instance
*/
2786 VARARG(name
,unicode_str
); /* class name
*/
2788 client_ptr_t client_ptr
; /* pointer to class in client address space
*/
2792 /* Set some information in a class
*/
2793 @
REQ(set_class_info
)
2794 user_handle_t window
; /* handle to the window
*/
2795 unsigned int flags
; /* flags for info to
set (see below
) */
2796 atom_t atom
; /* class atom
*/
2797 unsigned int style
; /* class style
*/
2798 int win_extra
; /* number of window extra bytes
*/
2799 mod_handle_t instance
; /* module instance
*/
2800 int extra_offset
; /* offset to set in extra bytes
*/
2801 data_size_t extra_size
; /* size to set in extra bytes
*/
2802 lparam_t extra_value
; /* value to set in extra bytes
*/
2804 atom_t old_atom
; /* previous class atom
*/
2805 unsigned int old_style
; /* previous class style
*/
2806 int old_extra
; /* previous number of class extra bytes
*/
2807 int old_win_extra
; /* previous number of window extra bytes
*/
2808 mod_handle_t old_instance
; /* previous module instance
*/
2809 lparam_t old_extra_value
; /* old value in extra bytes
*/
2811 #define SET_CLASS_ATOM
0x0001
2812 #define SET_CLASS_STYLE
0x0002
2813 #define SET_CLASS_WINEXTRA
0x0004
2814 #define SET_CLASS_INSTANCE
0x0008
2815 #define SET_CLASS_EXTRA
0x0010
2818 /* Set
/get clipboard information
*/
2819 @
REQ(set_clipboard_info
)
2820 unsigned int flags
; /* flags for fields to
set (see below
) */
2821 user_handle_t clipboard
; /* clipboard window
*/
2822 user_handle_t owner
; /* clipboard owner
*/
2823 user_handle_t viewer
; /* first clipboard viewer
*/
2824 unsigned int seqno
; /* change sequence number
*/
2826 unsigned int flags
; /* status
flags (see below
) */
2827 user_handle_t old_clipboard
; /* old clipboard window
*/
2828 user_handle_t old_owner
; /* old clipboard owner
*/
2829 user_handle_t old_viewer
; /* old clipboard viewer
*/
2830 unsigned int seqno
; /* current sequence number
*/
2833 #define SET_CB_OPEN
0x001
2834 #define SET_CB_OWNER
0x002
2835 #define SET_CB_VIEWER
0x004
2836 #define SET_CB_SEQNO
0x008
2837 #define SET_CB_RELOWNER
0x010
2838 #define SET_CB_CLOSE
0x020
2839 #define CB_OPEN
0x040
2840 #define CB_OWNER
0x080
2841 #define CB_PROCESS
0x100
2844 /* Open a security token
*/
2846 obj_handle_t handle
; /* handle to the thread or process
*/
2847 unsigned int access
; /* access rights to the new token
*/
2848 unsigned int attributes
;/* object attributes
*/
2849 unsigned int flags
; /* flags (see below
) */
2851 obj_handle_t token
; /* handle to the token
*/
2853 #define OPEN_TOKEN_THREAD
1
2854 #define OPEN_TOKEN_AS_SELF
2
2857 /* Set
/get the global windows
*/
2858 @
REQ(set_global_windows
)
2859 unsigned int flags
; /* flags for fields to
set (see below
) */
2860 user_handle_t shell_window
; /* handle to the new shell window
*/
2861 user_handle_t shell_listview
; /* handle to the new shell listview window
*/
2862 user_handle_t progman_window
; /* handle to the new program manager window
*/
2863 user_handle_t taskman_window
; /* handle to the new task manager window
*/
2865 user_handle_t old_shell_window
; /* handle to the shell window
*/
2866 user_handle_t old_shell_listview
; /* handle to the shell listview window
*/
2867 user_handle_t old_progman_window
; /* handle to the new program manager window
*/
2868 user_handle_t old_taskman_window
; /* handle to the new task manager window
*/
2870 #define SET_GLOBAL_SHELL_WINDOWS
0x01 /* set both main shell and listview windows
*/
2871 #define SET_GLOBAL_PROGMAN_WINDOW
0x02
2872 #define SET_GLOBAL_TASKMAN_WINDOW
0x04
2874 /* Adjust the privileges held by a token
*/
2875 @
REQ(adjust_token_privileges
)
2876 obj_handle_t handle
; /* handle to the token
*/
2877 int disable_all
; /* disable all privileges?
*/
2878 int get_modified_state
; /* get modified privileges?
*/
2879 VARARG(privileges
,LUID_AND_ATTRIBUTES
); /* privileges to enable
/disable
/remove
*/
2881 unsigned int len
; /* total length in bytes required to store token privileges
*/
2882 VARARG(privileges
,LUID_AND_ATTRIBUTES
); /* modified privileges
*/
2885 /* Retrieves the set of privileges held by or available to a token
*/
2886 @
REQ(get_token_privileges
)
2887 obj_handle_t handle
; /* handle to the token
*/
2889 unsigned int len
; /* total length in bytes required to store token privileges
*/
2890 VARARG(privileges
,LUID_AND_ATTRIBUTES
); /* privileges held by or available to a token
*/
2893 /* Check the token has the required privileges
*/
2894 @
REQ(check_token_privileges
)
2895 obj_handle_t handle
; /* handle to the token
*/
2896 int all_required
; /* are all the privileges required for the check to succeed?
*/
2897 VARARG(privileges
,LUID_AND_ATTRIBUTES
); /* privileges to check
*/
2899 int has_privileges
; /* does the token have the required privileges?
*/
2900 VARARG(privileges
,LUID_AND_ATTRIBUTES
); /* privileges held by or available to a token
*/
2903 @
REQ(duplicate_token
)
2904 obj_handle_t handle
; /* handle to the token to duplicate
*/
2905 unsigned int access
; /* access rights to the new token
*/
2906 unsigned int attributes
; /* object attributes
*/
2907 int primary
; /* is the new token to be a primary one?
*/
2908 int impersonation_level
; /* impersonation level of the new token
*/
2910 obj_handle_t new_handle
; /* duplicated handle
*/
2914 obj_handle_t handle
; /* handle to the token
*/
2915 unsigned int desired_access
; /* desired access to the object
*/
2916 unsigned int mapping_read
; /* mapping from generic read to specific rights
*/
2917 unsigned int mapping_write
; /* mapping from generic write to specific rights
*/
2918 unsigned int mapping_execute
; /* mapping from generic execute to specific rights
*/
2919 unsigned int mapping_all
; /* mapping from generic all to specific rights
*/
2920 VARARG(sd
,security_descriptor
); /* security descriptor to check
*/
2922 unsigned int access_granted
; /* access rights actually granted
*/
2923 unsigned int access_status
; /* was access granted?
*/
2924 unsigned int privileges_len
; /* length needed to store privileges
*/
2925 VARARG(privileges
,LUID_AND_ATTRIBUTES
); /* privileges used during access check
*/
2929 obj_handle_t handle
; /* handle to the token
*/
2930 unsigned int which_sid
; /* which SID to retrieve from the token
*/
2932 data_size_t sid_len
; /* length needed to store sid
*/
2933 VARARG(sid
,SID
); /* the sid specified by which_sid from the token
*/
2936 @
REQ(get_token_groups
)
2937 obj_handle_t handle
; /* handle to the token
*/
2939 data_size_t user_len
; /* length needed to store user
*/
2940 VARARG(user
,token_groups
); /* groups the token
's user belongs to */
2943 @REQ(get_token_default_dacl)
2944 obj_handle_t handle; /* handle to the token */
2946 data_size_t acl_len; /* length needed to store access control list */
2947 VARARG(acl,ACL); /* access control list */
2950 @REQ(set_token_default_dacl)
2951 obj_handle_t handle; /* handle to the token */
2952 VARARG(acl,ACL); /* default dacl to set */
2955 @REQ(set_security_object)
2956 obj_handle_t handle; /* handle to the object */
2957 unsigned int security_info; /* which parts of security descriptor to set */
2958 VARARG(sd,security_descriptor); /* security descriptor to set */
2961 @REQ(get_security_object)
2962 obj_handle_t handle; /* handle to the object */
2963 unsigned int security_info; /* which parts of security descriptor to get */
2965 unsigned int sd_len; /* buffer size needed for sd */
2966 VARARG(sd,security_descriptor); /* retrieved security descriptor */
2969 /* Create a mailslot */
2970 @REQ(create_mailslot)
2971 unsigned int access; /* wanted access rights */
2972 unsigned int attributes; /* object attributes */
2973 obj_handle_t rootdir; /* root directory */
2974 timeout_t read_timeout;
2975 unsigned int max_msgsize;
2976 VARARG(name,unicode_str); /* mailslot name */
2978 obj_handle_t handle; /* handle to the mailslot */
2982 /* Set mailslot information */
2983 @REQ(set_mailslot_info)
2984 obj_handle_t handle; /* handle to the mailslot */
2985 timeout_t read_timeout;
2988 timeout_t read_timeout;
2989 unsigned int max_msgsize;
2991 #define MAILSLOT_SET_READ_TIMEOUT 1
2994 /* Create a directory object */
2995 @REQ(create_directory)
2996 unsigned int access; /* access flags */
2997 unsigned int attributes; /* object attributes */
2998 obj_handle_t rootdir; /* root directory */
2999 VARARG(directory_name,unicode_str); /* Directory name */
3001 obj_handle_t handle; /* handle to the directory */
3005 /* Open a directory object */
3006 @REQ(open_directory)
3007 unsigned int access; /* access flags */
3008 unsigned int attributes; /* object attributes */
3009 obj_handle_t rootdir; /* root directory */
3010 VARARG(directory_name,unicode_str); /* Directory name */
3012 obj_handle_t handle; /* handle to the directory */
3016 /* Get a directory entry by index */
3017 @REQ(get_directory_entry)
3018 obj_handle_t handle; /* handle to the directory */
3019 unsigned int index; /* entry index */
3021 data_size_t name_len; /* length of the entry name in bytes */
3022 VARARG(name,unicode_str,name_len); /* entry name */
3023 VARARG(type,unicode_str); /* entry type */
3027 /* Create a symbolic link object */
3028 @REQ(create_symlink)
3029 unsigned int access; /* access flags */
3030 unsigned int attributes; /* object attributes */
3031 obj_handle_t rootdir; /* root directory */
3032 data_size_t name_len; /* length of the symlink name in bytes */
3033 VARARG(name,unicode_str,name_len); /* symlink name */
3034 VARARG(target_name,unicode_str); /* target name */
3036 obj_handle_t handle; /* handle to the symlink */
3040 /* Open a symbolic link object */
3042 unsigned int access; /* access flags */
3043 unsigned int attributes; /* object attributes */
3044 obj_handle_t rootdir; /* root directory */
3045 VARARG(name,unicode_str); /* symlink name */
3047 obj_handle_t handle; /* handle to the symlink */
3051 /* Query a symbolic link object */
3053 obj_handle_t handle; /* handle to the symlink */
3055 VARARG(target_name,unicode_str); /* target name */
3059 /* Query basic object information */
3060 @REQ(get_object_info)
3061 obj_handle_t handle; /* handle to the object */
3063 unsigned int access; /* granted access mask */
3064 unsigned int ref_count; /* object ref count */
3065 data_size_t total; /* total needed size for name */
3066 VARARG(name,unicode_str); /* object name */
3070 /* Unlink a named object */
3072 obj_handle_t handle; /* handle to the object */
3076 /* Query the impersonation level of an impersonation token */
3077 @REQ(get_token_impersonation_level)
3078 obj_handle_t handle; /* handle to the object */
3080 int impersonation_level; /* impersonation level of the impersonation token */
3083 /* Allocate a locally-unique identifier */
3084 @REQ(allocate_locally_unique_id)
3090 /* Create a device manager */
3091 @REQ(create_device_manager)
3092 unsigned int access; /* wanted access rights */
3093 unsigned int attributes; /* object attributes */
3095 obj_handle_t handle; /* handle to the device */
3099 /* Create a device */
3101 unsigned int access; /* wanted access rights */
3102 unsigned int attributes; /* object attributes */
3103 obj_handle_t rootdir; /* root directory */
3104 client_ptr_t user_ptr; /* opaque ptr for use by client */
3105 obj_handle_t manager; /* device manager */
3106 VARARG(name,unicode_str); /* object name */
3108 obj_handle_t handle; /* handle to the device */
3112 /* Delete a device */
3114 obj_handle_t handle; /* handle to the device */
3118 /* Retrieve the next pending device ioctl request */
3119 @REQ(get_next_device_request)
3120 obj_handle_t manager; /* handle to the device manager */
3121 obj_handle_t prev; /* handle to the previous ioctl */
3122 unsigned int status; /* status of the previous ioctl */
3123 VARARG(prev_data,bytes); /* output data of the previous ioctl */
3125 obj_handle_t next; /* handle to the next ioctl */
3126 ioctl_code_t code; /* ioctl code */
3127 client_ptr_t user_ptr; /* opaque ptr for the device */
3128 data_size_t in_size; /* total needed input size */
3129 data_size_t out_size; /* needed output size */
3130 VARARG(next_data,bytes); /* input data of the next ioctl */
3134 /* Make the current process a system process */
3135 @REQ(make_process_system)
3137 obj_handle_t event; /* event signaled when all user processes have exited */
3141 /* Get detailed fixed-size information about a token */
3142 @REQ(get_token_statistics)
3143 obj_handle_t handle; /* handle to the object */
3145 luid_t token_id; /* locally-unique identifier of the token */
3146 luid_t modified_id; /* locally-unique identifier of the modified version of the token */
3147 int primary; /* is the token primary or impersonation? */
3148 int impersonation_level; /* level of impersonation */
3149 int group_count; /* the number of groups the token is a member of */
3150 int privilege_count; /* the number of privileges the token has */
3154 /* Create I/O completion port */
3155 @REQ(create_completion)
3156 unsigned int access; /* desired access to a port */
3157 unsigned int attributes; /* object attributes */
3158 unsigned int concurrent; /* max number of concurrent active threads */
3159 obj_handle_t rootdir; /* root directory */
3160 VARARG(filename,string); /* port name */
3162 obj_handle_t handle; /* port handle */
3166 /* Open I/O completion port */
3167 @REQ(open_completion)
3168 unsigned int access; /* desired access to a port */
3169 unsigned int attributes; /* object attributes */
3170 obj_handle_t rootdir; /* root directory */
3171 VARARG(filename,string); /* port name */
3173 obj_handle_t handle; /* port handle */
3177 /* add completion to completion port */
3178 @REQ(add_completion)
3179 obj_handle_t handle; /* port handle */
3180 apc_param_t ckey; /* completion key */
3181 apc_param_t cvalue; /* completion value */
3182 unsigned int information; /* IO_STATUS_BLOCK Information */
3183 unsigned int status; /* completion result */
3187 /* get completion from completion port queue */
3188 @REQ(remove_completion)
3189 obj_handle_t handle; /* port handle */
3191 apc_param_t ckey; /* completion key */
3192 apc_param_t cvalue; /* completion value */
3193 unsigned int information; /* IO_STATUS_BLOCK Information */
3194 unsigned int status; /* completion result */
3198 /* get completion queue depth */
3199 @REQ(query_completion)
3200 obj_handle_t handle; /* port handle */
3202 unsigned int depth; /* completion queue depth */
3206 /* associate object with completion port */
3207 @REQ(set_completion_info)
3208 obj_handle_t handle; /* object handle */
3209 apc_param_t ckey; /* completion key */
3210 obj_handle_t chandle; /* port handle */
3214 /* check for associated completion and push msg */
3215 @REQ(add_fd_completion)
3216 obj_handle_t handle; /* async' object
*/
3217 apc_param_t cvalue
; /* completion value
*/
3218 unsigned int status
; /* completion status
*/
3219 unsigned int information
; /* IO_STATUS_BLOCK Information
*/
3223 /* Retrieve layered info for a window
*/
3224 @
REQ(get_window_layered_info
)
3225 user_handle_t handle
; /* handle to the window
*/
3227 unsigned int color_key
; /* color key
*/
3228 unsigned int alpha
; /* alpha (0.
.255) */
3229 unsigned int flags
; /* LWA_
* flags
*/
3233 /* Set layered info for a window
*/
3234 @
REQ(set_window_layered_info
)
3235 user_handle_t handle
; /* handle to the window
*/
3236 unsigned int color_key
; /* color key
*/
3237 unsigned int alpha
; /* alpha (0.
.255) */
3238 unsigned int flags
; /* LWA_
* flags
*/
3242 /* Allocate an arbitrary user handle
*/
3243 @
REQ(alloc_user_handle
)
3245 user_handle_t handle
; /* allocated handle
*/
3249 /* Free an arbitrary user handle
*/
3250 @
REQ(free_user_handle
)
3251 user_handle_t handle
; /* handle to free
*/
3255 /* Set
/get the current cursor
*/
3257 unsigned int flags
; /* flags for fields to
set (see below
) */
3258 user_handle_t handle
; /* handle to the cursor
*/
3259 int show_count
; /* show count increment
/decrement
*/
3261 user_handle_t prev_handle
; /* previous handle
*/
3262 int prev_count
; /* previous show count
*/
3264 #define SET_CURSOR_HANDLE
0x01
3265 #define SET_CURSOR_COUNT
0x02