blob: 6984bc516564d193eb94f10693613fc032fe6891 [file] [log] [blame]
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001/* -*- C -*-
2 *
3 * Wine server protocol definition
4 *
5 * Copyright (C) 2001 Alexandre Julliard
6 *
7 * This file is used by tools/make_requests to build the
8 * protocol structures in include/wine/server_protocol.h
Alexandre Julliard0799c1a2002-03-09 23:29:33 +00009 *
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.
14 *
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.
19 *
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
Jonathan Ernst360a3f92006-05-18 14:49:52 +020022 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
Alexandre Julliard37ec9272001-07-19 00:35:37 +000023 */
24
25@HEADER /* start of C declarations */
26
Alexandre Julliarde0b52702003-09-08 19:04:01 +000027#include <stdarg.h>
Alexandre Julliard37ec9272001-07-19 00:35:37 +000028#include <stdlib.h>
29#include <time.h>
Alexandre Julliarde0b52702003-09-08 19:04:01 +000030
31#include <windef.h>
32#include <winbase.h>
Alexandre Julliard37ec9272001-07-19 00:35:37 +000033
Alexandre Julliard0d3d4562008-12-08 16:04:20 +010034typedef unsigned int obj_handle_t;
Alexandre Julliardd7641072008-12-08 16:57:38 +010035typedef unsigned int user_handle_t;
Alexandre Julliard0c914e42008-12-30 23:17:52 +010036typedef unsigned int atom_t;
Alexandre Julliard0f273c12006-07-26 10:43:25 +020037typedef unsigned int process_id_t;
38typedef unsigned int thread_id_t;
39typedef unsigned int data_size_t;
Alexandre Julliard737148c2007-04-17 22:06:13 +020040typedef unsigned int ioctl_code_t;
Alexandre Julliard3cd817b2008-12-24 12:06:18 +010041typedef unsigned __int64 lparam_t;
Alexandre Julliarda6216ab2008-12-17 19:43:40 +010042typedef unsigned __int64 apc_param_t;
Alexandre Julliard401f4b72008-12-17 19:25:09 +010043typedef unsigned __int64 mem_size_t;
Alexandre Julliard235532c2007-10-10 14:06:25 +020044typedef unsigned __int64 file_pos_t;
Alexandre Julliardf2c4e092008-12-29 16:47:51 +010045typedef unsigned __int64 client_ptr_t;
Alexandre Julliard913e7922009-01-19 14:15:51 +010046typedef unsigned __int64 affinity_t;
Alexandre Julliardcb2788e2008-12-29 16:41:44 +010047typedef client_ptr_t mod_handle_t;
Alexandre Julliard0f273c12006-07-26 10:43:25 +020048
Alexandre Julliard37ec9272001-07-19 00:35:37 +000049struct request_header
50{
Alexandre Julliard9caa71e2001-11-30 18:46:42 +000051 int req; /* request code */
Alexandre Julliard0f273c12006-07-26 10:43:25 +020052 data_size_t request_size; /* request variable part size */
53 data_size_t reply_size; /* reply variable part maximum size */
Alexandre Julliard37ec9272001-07-19 00:35:37 +000054};
55
56struct reply_header
57{
Alexandre Julliard9caa71e2001-11-30 18:46:42 +000058 unsigned int error; /* error result */
Alexandre Julliard0f273c12006-07-26 10:43:25 +020059 data_size_t reply_size; /* reply variable part size */
Alexandre Julliard37ec9272001-07-19 00:35:37 +000060};
61
62/* placeholder structure for the maximum allowed request size */
63/* this is used to construct the generic_request union */
64struct request_max_size
65{
66 int pad[16]; /* the max request size is 16 ints */
67};
68
Alexandre Julliard7695d692001-09-24 01:19:59 +000069#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 */
71
72
Alexandre Julliard37ec9272001-07-19 00:35:37 +000073/* debug event data */
Alexandre Julliardbc03f0e2009-01-02 20:09:25 +010074typedef union
Alexandre Julliard37ec9272001-07-19 00:35:37 +000075{
Alexandre Julliardbc03f0e2009-01-02 20:09:25 +010076 int code; /* event code */
77 struct
78 {
Alexandre Julliard9f365e72009-01-02 20:12:46 +010079 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 */
86 int __pad;
87 client_ptr_t params[15]; /* parameters */
Alexandre Julliardbc03f0e2009-01-02 20:09:25 +010088 } exception;
89 struct
90 {
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 */
95 } create_thread;
96 struct
97 {
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? */
109 } create_process;
110 struct
111 {
112 int code; /* EXIT_THREAD_DEBUG_EVENT/EXIT_PROCESS_DEBUG_EVENT */
113 int exit_code; /* thread or process exit code */
114 } exit;
115 struct
116 {
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? */
124 } load_dll;
125 struct
126 {
127 int code; /* UNLOAD_DLL_DEBUG_EVENT */
128 int __pad;
129 mod_handle_t base; /* base address of the dll */
130 } unload_dll;
131 struct
132 {
133 int code; /* OUTPUT_DEBUG_STRING_EVENT */
Alexandre Julliardbc03f0e2009-01-02 20:09:25 +0100134 data_size_t length; /* string length */
Andrey Turkin3eaecf02009-10-05 21:42:22 +0400135 client_ptr_t string; /* string to display (in debugged process address space) */
Alexandre Julliardbc03f0e2009-01-02 20:09:25 +0100136 } output_string;
137 struct
138 {
139 int code; /* RIP_EVENT */
140 int error; /* ??? */
141 int type; /* ??? */
142 } rip_info;
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000143} debug_event_t;
144
Alexandre Julliard653d2c42009-04-03 14:49:10 +0200145/* supported CPU types */
146enum cpu_type
147{
André Hentschel417e9262011-04-19 19:27:36 +0200148 CPU_x86, CPU_x86_64, CPU_POWERPC, CPU_ARM, CPU_SPARC
Alexandre Julliard653d2c42009-04-03 14:49:10 +0200149};
150typedef int cpu_type_t;
151
Alexandre Julliard5316dd02009-04-08 19:38:02 +0200152/* context data */
153typedef struct
154{
155 cpu_type_t cpu; /* cpu type */
156 unsigned int flags; /* SERVER_CTX_* flags */
157 union
158 {
159 struct { unsigned int eip, ebp, esp, eflags, cs, ss; } i386_regs;
160 struct { unsigned __int64 rip, rbp, rsp;
Alexandre Julliard27f2a352010-04-01 19:56:09 +0200161 unsigned int cs, ss, flags, __pad; } x86_64_regs;
Alexandre Julliard27f2a352010-04-01 19:56:09 +0200162 struct { unsigned int iar, msr, ctr, lr, dar, dsisr, trap, __pad; } powerpc_regs;
André Hentschelccaeb3e2010-09-18 18:03:56 +0200163 struct { unsigned int sp, lr, pc, cpsr; } arm_regs;
Alexandre Julliard5316dd02009-04-08 19:38:02 +0200164 struct { unsigned int psr, pc, npc, y, wim, tbr; } sparc_regs;
165 } ctl; /* selected by SERVER_CTX_CONTROL */
166 union
167 {
168 struct { unsigned int eax, ebx, ecx, edx, esi, edi; } i386_regs;
169 struct { unsigned __int64 rax,rbx, rcx, rdx, rsi, rdi,
170 r8, r9, r10, r11, r12, r13, r14, r15; } x86_64_regs;
Alexandre Julliard5316dd02009-04-08 19:38:02 +0200171 struct { unsigned int gpr[32], cr, xer; } powerpc_regs;
André Hentschelccaeb3e2010-09-18 18:03:56 +0200172 struct { unsigned int r[13]; } arm_regs;
Alexandre Julliard5316dd02009-04-08 19:38:02 +0200173 struct { unsigned int g[8], o[8], l[8], i[8]; } sparc_regs;
174 } integer; /* selected by SERVER_CTX_INTEGER */
175 union
176 {
177 struct { unsigned int ds, es, fs, gs; } i386_regs;
178 struct { unsigned int ds, es, fs, gs; } x86_64_regs;
179 } seg; /* selected by SERVER_CTX_SEGMENTS */
180 union
181 {
182 struct { unsigned int ctrl, status, tag, err_off, err_sel, data_off, data_sel, cr0npx;
183 unsigned char regs[80]; } i386_regs;
184 struct { struct { unsigned __int64 low, high; } fpregs[32]; } x86_64_regs;
Alexandre Julliard5316dd02009-04-08 19:38:02 +0200185 struct { double fpr[32], fpscr; } powerpc_regs;
186 } fp; /* selected by SERVER_CTX_FLOATING_POINT */
187 union
188 {
189 struct { unsigned int dr0, dr1, dr2, dr3, dr6, dr7; } i386_regs;
190 struct { unsigned __int64 dr0, dr1, dr2, dr3, dr6, dr7; } x86_64_regs;
191 struct { unsigned int dr[8]; } powerpc_regs;
192 } debug; /* selected by SERVER_CTX_DEBUG_REGISTERS */
193 union
194 {
195 unsigned char i386_regs[512];
196 } ext; /* selected by SERVER_CTX_EXTENDED_REGISTERS */
197} context_t;
198
199#define SERVER_CTX_CONTROL 0x01
200#define SERVER_CTX_INTEGER 0x02
201#define SERVER_CTX_SEGMENTS 0x04
202#define SERVER_CTX_FLOATING_POINT 0x08
203#define SERVER_CTX_DEBUG_REGISTERS 0x10
204#define SERVER_CTX_EXTENDED_REGISTERS 0x20
205
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000206/* structure used in sending an fd from client to server */
207struct send_fd
208{
Alexandre Julliard54f22872002-10-03 19:54:57 +0000209 thread_id_t tid; /* thread id */
210 int fd; /* file descriptor on client-side */
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000211};
212
213/* structure sent by the server on the wait fifo */
214struct wake_up_reply
215{
Alexandre Julliard45c99192008-12-29 17:19:26 +0100216 client_ptr_t cookie; /* magic cookie that was passed in select_request */
217 int signaled; /* wait result */
Alexandre Julliard7560a892008-12-30 15:15:06 +0100218 int __pad;
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000219};
220
Alexandre Julliardaaf477f2007-04-17 20:08:59 +0200221/* NT-style timeout, in 100ns units, negative means relative timeout */
222typedef __int64 timeout_t;
223#define TIMEOUT_INFINITE (((timeout_t)0x7fffffff) << 32 | 0xffffffff)
Alexandre Julliard462172a2003-04-02 22:48:59 +0000224
Alexandre Julliardda8acbc2009-08-20 20:05:21 +0200225/* structure for process startup info */
226typedef struct
227{
228 unsigned int debug_flags;
229 unsigned int console_flags;
230 obj_handle_t console;
231 obj_handle_t hstdin;
232 obj_handle_t hstdout;
233 obj_handle_t hstderr;
234 unsigned int x;
235 unsigned int y;
236 unsigned int xsize;
237 unsigned int ysize;
238 unsigned int xchars;
239 unsigned int ychars;
240 unsigned int attribute;
241 unsigned int flags;
242 unsigned int show;
243 data_size_t curdir_len;
244 data_size_t dllpath_len;
245 data_size_t imagepath_len;
246 data_size_t cmdline_len;
247 data_size_t title_len;
248 data_size_t desktop_len;
249 data_size_t shellinfo_len;
250 data_size_t runtime_len;
251 /* VARARG(curdir,unicode_str,curdir_len); */
252 /* VARARG(dllpath,unicode_str,dllpath_len); */
253 /* VARARG(imagepath,unicode_str,imagepath_len); */
254 /* VARARG(cmdline,unicode_str,cmdline_len); */
255 /* VARARG(title,unicode_str,title_len); */
256 /* VARARG(desktop,unicode_str,desktop_len); */
257 /* VARARG(shellinfo,unicode_str,shellinfo_len); */
258 /* VARARG(runtime,unicode_str,runtime_len); */
259} startup_info_t;
260
Alexandre Julliard7a2017d2001-10-12 19:10:26 +0000261/* structure returned in the list of window properties */
262typedef struct
263{
264 atom_t atom; /* property atom */
Alexandre Julliard0c914e42008-12-30 23:17:52 +0100265 int string; /* was atom a string originally? */
Alexandre Julliard517b2f62008-12-10 16:21:32 +0100266 lparam_t data; /* data stored in property */
Alexandre Julliard7a2017d2001-10-12 19:10:26 +0000267} property_data_t;
268
Alexandre Julliard0d509652001-10-16 21:55:37 +0000269/* structure to specify window rectangles */
270typedef struct
271{
272 int left;
273 int top;
274 int right;
275 int bottom;
276} rectangle_t;
277
Alexandre Julliard111610c2007-03-20 20:21:12 +0100278/* structure for parameters of async I/O calls */
279typedef struct
280{
Alexandre Julliarda7b3efd2008-12-26 12:17:20 +0100281 obj_handle_t handle; /* object to perform I/O on */
282 obj_handle_t event; /* event to signal when done */
Alexandre Julliard6db20102008-12-30 21:09:41 +0100283 client_ptr_t callback; /* client-side callback to call upon end of async */
284 client_ptr_t iosb; /* I/O status block in client addr space */
285 client_ptr_t arg; /* opaque user data to pass to callback */
Alexandre Julliarddc7f1702008-12-15 13:29:38 +0100286 apc_param_t cvalue; /* completion value to use for completion events */
Alexandre Julliard111610c2007-03-20 20:21:12 +0100287} async_data_t;
288
Alexandre Julliard59dc4562006-10-04 16:04:53 +0200289/* structures for extra message data */
Alexandre Julliard29a3ce92006-10-04 16:29:45 +0200290
Alexandre Julliardd1d7b9f2008-12-24 11:59:09 +0100291struct hardware_msg_data
292{
293 lparam_t info; /* extra info */
294 int x; /* x position */
295 int y; /* y position */
296 unsigned int hw_id; /* unique id */
Alexandre Julliardc7efa292011-03-02 19:53:03 +0100297 unsigned int flags; /* hook flags */
Alexandre Julliardd1d7b9f2008-12-24 11:59:09 +0100298};
299
Alexandre Julliard29a3ce92006-10-04 16:29:45 +0200300struct callback_msg_data
301{
Alexandre Julliard42614762008-12-30 14:02:07 +0100302 client_ptr_t callback; /* callback function */
Alexandre Julliard31282b32008-12-10 16:01:50 +0100303 lparam_t data; /* user data for callback */
304 lparam_t result; /* message result */
Alexandre Julliard29a3ce92006-10-04 16:29:45 +0200305};
306
Alexandre Julliard59dc4562006-10-04 16:04:53 +0200307struct winevent_msg_data
308{
309 user_handle_t hook; /* hook handle */
310 thread_id_t tid; /* thread id */
Alexandre Julliardcc55fd32008-12-29 17:35:35 +0100311 client_ptr_t hook_proc; /* hook proc address */
Alexandre Julliard59dc4562006-10-04 16:04:53 +0200312 /* followed by module name if any */
313};
314
315typedef union
316{
Alexandre Julliard02e30f52011-03-01 20:33:15 +0100317 int type;
318 struct
319 {
320 int type; /* INPUT_KEYBOARD */
321 unsigned short vkey; /* virtual key code */
322 unsigned short scan; /* scan code */
323 unsigned int flags; /* event flags */
324 unsigned int time; /* event time */
325 lparam_t info; /* extra info */
326 } kbd;
327 struct
328 {
329 int type; /* INPUT_MOUSE */
330 int x; /* coordinates */
331 int y;
332 unsigned int data; /* mouse data */
333 unsigned int flags; /* event flags */
334 unsigned int time; /* event time */
335 lparam_t info; /* extra info */
336 } mouse;
337 struct
338 {
339 int type; /* INPUT_HARDWARE */
340 unsigned int msg; /* message code */
341 lparam_t lparam; /* message param */
342 } hw;
343} hw_input_t;
344
345typedef union
346{
Alexandre Julliard59dc4562006-10-04 16:04:53 +0200347 unsigned char bytes[1]; /* raw data for sent messages */
Alexandre Julliard0ffd26a2009-01-15 12:50:59 +0100348 struct hardware_msg_data hardware;
Alexandre Julliard29a3ce92006-10-04 16:29:45 +0200349 struct callback_msg_data callback;
Alexandre Julliard59dc4562006-10-04 16:04:53 +0200350 struct winevent_msg_data winevent;
351} message_data_t;
352
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000353/* structure for console char/attribute info */
354typedef struct
355{
356 WCHAR ch;
357 unsigned short attr;
358} char_info_t;
359
Piotr Cabanb614a152011-01-18 11:24:33 +0100360/* structure returned in filesystem events */
361struct filesystem_event
362{
363 int action;
364 data_size_t len;
365 char name[1];
366};
367
Juan Langc2cb2962007-03-06 16:33:26 -0800368typedef struct
369{
370 unsigned int low_part;
371 int high_part;
372} luid_t;
373
Robert Shearman7bff3542005-05-23 16:33:00 +0000374#define MAX_ACL_LEN 65535
375
376struct security_descriptor
377{
378 unsigned int control; /* SE_ flags */
Alexandre Julliard0f273c12006-07-26 10:43:25 +0200379 data_size_t owner_len;
380 data_size_t group_len;
381 data_size_t sacl_len;
382 data_size_t dacl_len;
Rob Shearmandd9e3922007-10-24 16:04:42 +0100383 /* VARARG(owner,SID); */
384 /* VARARG(group,SID); */
385 /* VARARG(sacl,ACL); */
386 /* VARARG(dacl,ACL); */
387};
388
389struct object_attributes
390{
391 obj_handle_t rootdir; /* root directory */
392 data_size_t sd_len; /* length of security_descriptor data. may be 0 */
Rob Shearmanf98556c2007-10-26 17:01:33 +0100393 data_size_t name_len; /* length of the name string. may be 0 */
Rob Shearmandd9e3922007-10-24 16:04:42 +0100394 /* VARARG(sd,security_descriptor); */
395 /* VARARG(name,unicode_str); */
Robert Shearman7bff3542005-05-23 16:33:00 +0000396};
397
Robert Shearman3396a662006-05-13 16:58:19 +0100398struct token_groups
399{
400 unsigned int count;
401 /* unsigned int attributes[count]; */
Rob Shearmandd9e3922007-10-24 16:04:42 +0100402 /* VARARG(sids,SID); */
Robert Shearman3396a662006-05-13 16:58:19 +0100403};
404
Alexandre Julliardfb40dc42007-01-15 22:24:40 +0100405enum apc_type
406{
407 APC_NONE,
408 APC_USER,
409 APC_TIMER,
410 APC_ASYNC_IO,
411 APC_VIRTUAL_ALLOC,
Alexandre Julliard3d002392007-01-15 22:28:42 +0100412 APC_VIRTUAL_FREE,
Alexandre Julliard1ea96802007-01-15 22:30:04 +0100413 APC_VIRTUAL_QUERY,
Alexandre Julliard5a1ad742007-01-15 22:31:07 +0100414 APC_VIRTUAL_PROTECT,
Alexandre Julliardc1222602007-01-16 09:50:08 +0100415 APC_VIRTUAL_FLUSH,
416 APC_VIRTUAL_LOCK,
Alexandre Julliard8025f792007-01-18 15:02:55 +0100417 APC_VIRTUAL_UNLOCK,
Alexandre Julliard02e2fa772007-01-18 15:17:51 +0100418 APC_MAP_VIEW,
419 APC_UNMAP_VIEW,
Alexandre Julliard8025f792007-01-18 15:02:55 +0100420 APC_CREATE_THREAD
Alexandre Julliardfb40dc42007-01-15 22:24:40 +0100421};
Alexandre Julliard5c8421d2007-01-04 13:40:09 +0100422
423typedef union
424{
425 enum apc_type type;
426 struct
427 {
428 enum apc_type type; /* APC_USER */
Alexandre Julliard6db20102008-12-30 21:09:41 +0100429 int __pad;
430 client_ptr_t func; /* void (__stdcall *func)(ULONG_PTR,ULONG_PTR,ULONG_PTR); */
Alexandre Julliarddc7f1702008-12-15 13:29:38 +0100431 apc_param_t args[3]; /* arguments for user function */
Alexandre Julliard5c8421d2007-01-04 13:40:09 +0100432 } user;
433 struct
434 {
Alexandre Julliard9b92a592008-12-29 17:43:01 +0100435 enum apc_type type; /* APC_TIMER */
Alexandre Julliard838803c2008-12-30 15:05:38 +0100436 int __pad;
Alexandre Julliard9b92a592008-12-29 17:43:01 +0100437 client_ptr_t func; /* void (__stdcall *func)(void*, unsigned int, unsigned int); */
Alexandre Julliardaaf477f2007-04-17 20:08:59 +0200438 timeout_t time; /* absolute time of expiration */
Alexandre Julliard9b92a592008-12-29 17:43:01 +0100439 client_ptr_t arg; /* user argument */
Alexandre Julliard5c8421d2007-01-04 13:40:09 +0100440 } timer;
441 struct
442 {
443 enum apc_type type; /* APC_ASYNC_IO */
Alexandre Julliard5c8421d2007-01-04 13:40:09 +0100444 unsigned int status; /* I/O status */
Alexandre Julliard6db20102008-12-30 21:09:41 +0100445 client_ptr_t func; /* unsigned int (*func)(void*, void*, unsigned int, void **); */
446 client_ptr_t user; /* user pointer */
447 client_ptr_t sb; /* status block */
Alexandre Julliard5c8421d2007-01-04 13:40:09 +0100448 } async_io;
Alexandre Julliardfb40dc42007-01-15 22:24:40 +0100449 struct
450 {
451 enum apc_type type; /* APC_VIRTUAL_ALLOC */
Alexandre Julliard838803c2008-12-30 15:05:38 +0100452 unsigned int op_type; /* type of operation */
453 client_ptr_t addr; /* requested address */
Alexandre Julliard992d3ce2008-12-17 19:24:33 +0100454 mem_size_t size; /* allocation size */
Alexandre Julliardfb40dc42007-01-15 22:24:40 +0100455 unsigned int zero_bits; /* allocation alignment */
Alexandre Julliardfb40dc42007-01-15 22:24:40 +0100456 unsigned int prot; /* memory protection flags */
457 } virtual_alloc;
458 struct
459 {
460 enum apc_type type; /* APC_VIRTUAL_FREE */
Alexandre Julliardfb40dc42007-01-15 22:24:40 +0100461 unsigned int op_type; /* type of operation */
Alexandre Julliard838803c2008-12-30 15:05:38 +0100462 client_ptr_t addr; /* requested address */
463 mem_size_t size; /* allocation size */
Alexandre Julliardfb40dc42007-01-15 22:24:40 +0100464 } virtual_free;
Alexandre Julliard3d002392007-01-15 22:28:42 +0100465 struct
466 {
467 enum apc_type type; /* APC_VIRTUAL_QUERY */
Alexandre Julliard838803c2008-12-30 15:05:38 +0100468 int __pad;
469 client_ptr_t addr; /* requested address */
Alexandre Julliard3d002392007-01-15 22:28:42 +0100470 } virtual_query;
Alexandre Julliard1ea96802007-01-15 22:30:04 +0100471 struct
472 {
473 enum apc_type type; /* APC_VIRTUAL_PROTECT */
Alexandre Julliard1ea96802007-01-15 22:30:04 +0100474 unsigned int prot; /* new protection flags */
Alexandre Julliard838803c2008-12-30 15:05:38 +0100475 client_ptr_t addr; /* requested address */
476 mem_size_t size; /* requested size */
Alexandre Julliard1ea96802007-01-15 22:30:04 +0100477 } virtual_protect;
Alexandre Julliard5a1ad742007-01-15 22:31:07 +0100478 struct
479 {
480 enum apc_type type; /* APC_VIRTUAL_FLUSH */
Alexandre Julliard838803c2008-12-30 15:05:38 +0100481 int __pad;
482 client_ptr_t addr; /* requested address */
Alexandre Julliard992d3ce2008-12-17 19:24:33 +0100483 mem_size_t size; /* requested size */
Alexandre Julliard5a1ad742007-01-15 22:31:07 +0100484 } virtual_flush;
Alexandre Julliardc1222602007-01-16 09:50:08 +0100485 struct
486 {
487 enum apc_type type; /* APC_VIRTUAL_LOCK */
Alexandre Julliard838803c2008-12-30 15:05:38 +0100488 int __pad;
489 client_ptr_t addr; /* requested address */
Alexandre Julliard992d3ce2008-12-17 19:24:33 +0100490 mem_size_t size; /* requested size */
Alexandre Julliardc1222602007-01-16 09:50:08 +0100491 } virtual_lock;
492 struct
493 {
494 enum apc_type type; /* APC_VIRTUAL_UNLOCK */
Alexandre Julliard838803c2008-12-30 15:05:38 +0100495 int __pad;
496 client_ptr_t addr; /* requested address */
Alexandre Julliard992d3ce2008-12-17 19:24:33 +0100497 mem_size_t size; /* requested size */
Alexandre Julliardc1222602007-01-16 09:50:08 +0100498 } virtual_unlock;
Alexandre Julliard8025f792007-01-18 15:02:55 +0100499 struct
500 {
Alexandre Julliard02e2fa772007-01-18 15:17:51 +0100501 enum apc_type type; /* APC_MAP_VIEW */
502 obj_handle_t handle; /* mapping handle */
Alexandre Julliard838803c2008-12-30 15:05:38 +0100503 client_ptr_t addr; /* requested address */
Alexandre Julliard992d3ce2008-12-17 19:24:33 +0100504 mem_size_t size; /* allocation size */
Alexandre Julliard235532c2007-10-10 14:06:25 +0200505 file_pos_t offset; /* file offset */
Alexandre Julliard02e2fa772007-01-18 15:17:51 +0100506 unsigned int alloc_type;/* allocation type */
Alexandre Julliardc86ec642008-12-30 15:22:45 +0100507 unsigned short zero_bits; /* allocation alignment */
508 unsigned short prot; /* memory protection flags */
Alexandre Julliard02e2fa772007-01-18 15:17:51 +0100509 } map_view;
510 struct
511 {
512 enum apc_type type; /* APC_UNMAP_VIEW */
Alexandre Julliard838803c2008-12-30 15:05:38 +0100513 int __pad;
514 client_ptr_t addr; /* view address */
Alexandre Julliard02e2fa772007-01-18 15:17:51 +0100515 } unmap_view;
516 struct
517 {
Alexandre Julliard8025f792007-01-18 15:02:55 +0100518 enum apc_type type; /* APC_CREATE_THREAD */
Alexandre Julliardf69e6222008-12-30 15:30:11 +0100519 int suspend; /* suspended thread? */
520 client_ptr_t func; /* void (__stdcall *func)(void*); start function */
521 client_ptr_t arg; /* argument for start function */
Alexandre Julliard992d3ce2008-12-17 19:24:33 +0100522 mem_size_t reserve; /* reserve size for thread stack */
523 mem_size_t commit; /* commit size for thread stack */
Alexandre Julliard8025f792007-01-18 15:02:55 +0100524 } create_thread;
Alexandre Julliard5c8421d2007-01-04 13:40:09 +0100525} apc_call_t;
526
Alexandre Julliardfb40dc42007-01-15 22:24:40 +0100527typedef union
528{
529 enum apc_type type;
530 struct
531 {
Alexandre Julliard50975c82007-03-20 19:27:10 +0100532 enum apc_type type; /* APC_ASYNC_IO */
533 unsigned int status; /* new status of async operation */
Alexandre Julliard6db20102008-12-30 21:09:41 +0100534 client_ptr_t apc; /* user APC to call */
Alexandre Julliardf6fa72d2008-12-15 13:30:25 +0100535 unsigned int total; /* bytes transferred */
Alexandre Julliard50975c82007-03-20 19:27:10 +0100536 } async_io;
537 struct
538 {
Alexandre Julliardfb40dc42007-01-15 22:24:40 +0100539 enum apc_type type; /* APC_VIRTUAL_ALLOC */
540 unsigned int status; /* status returned by call */
Alexandre Julliard838803c2008-12-30 15:05:38 +0100541 client_ptr_t addr; /* resulting address */
Alexandre Julliard992d3ce2008-12-17 19:24:33 +0100542 mem_size_t size; /* resulting size */
Alexandre Julliardfb40dc42007-01-15 22:24:40 +0100543 } virtual_alloc;
544 struct
545 {
546 enum apc_type type; /* APC_VIRTUAL_FREE */
547 unsigned int status; /* status returned by call */
Alexandre Julliard838803c2008-12-30 15:05:38 +0100548 client_ptr_t addr; /* resulting address */
Alexandre Julliard992d3ce2008-12-17 19:24:33 +0100549 mem_size_t size; /* resulting size */
Alexandre Julliardfb40dc42007-01-15 22:24:40 +0100550 } virtual_free;
Alexandre Julliard3d002392007-01-15 22:28:42 +0100551 struct
552 {
553 enum apc_type type; /* APC_VIRTUAL_QUERY */
554 unsigned int status; /* status returned by call */
Alexandre Julliard838803c2008-12-30 15:05:38 +0100555 client_ptr_t base; /* resulting base address */
556 client_ptr_t alloc_base;/* resulting allocation base */
Alexandre Julliard992d3ce2008-12-17 19:24:33 +0100557 mem_size_t size; /* resulting region size */
Alexandre Julliardc86ec642008-12-30 15:22:45 +0100558 unsigned short state; /* resulting region state */
559 unsigned short prot; /* resulting region protection */
560 unsigned short alloc_prot;/* resulting allocation protection */
561 unsigned short alloc_type;/* resulting region allocation type */
Alexandre Julliard3d002392007-01-15 22:28:42 +0100562 } virtual_query;
Alexandre Julliard1ea96802007-01-15 22:30:04 +0100563 struct
564 {
565 enum apc_type type; /* APC_VIRTUAL_PROTECT */
566 unsigned int status; /* status returned by call */
Alexandre Julliard838803c2008-12-30 15:05:38 +0100567 client_ptr_t addr; /* resulting address */
Alexandre Julliard992d3ce2008-12-17 19:24:33 +0100568 mem_size_t size; /* resulting size */
Alexandre Julliard1ea96802007-01-15 22:30:04 +0100569 unsigned int prot; /* old protection flags */
570 } virtual_protect;
Alexandre Julliard5a1ad742007-01-15 22:31:07 +0100571 struct
572 {
573 enum apc_type type; /* APC_VIRTUAL_FLUSH */
574 unsigned int status; /* status returned by call */
Alexandre Julliard838803c2008-12-30 15:05:38 +0100575 client_ptr_t addr; /* resulting address */
Alexandre Julliard992d3ce2008-12-17 19:24:33 +0100576 mem_size_t size; /* resulting size */
Alexandre Julliard5a1ad742007-01-15 22:31:07 +0100577 } virtual_flush;
Alexandre Julliardc1222602007-01-16 09:50:08 +0100578 struct
579 {
580 enum apc_type type; /* APC_VIRTUAL_LOCK */
581 unsigned int status; /* status returned by call */
Alexandre Julliard838803c2008-12-30 15:05:38 +0100582 client_ptr_t addr; /* resulting address */
Alexandre Julliard992d3ce2008-12-17 19:24:33 +0100583 mem_size_t size; /* resulting size */
Alexandre Julliardc1222602007-01-16 09:50:08 +0100584 } virtual_lock;
585 struct
586 {
587 enum apc_type type; /* APC_VIRTUAL_UNLOCK */
588 unsigned int status; /* status returned by call */
Alexandre Julliard838803c2008-12-30 15:05:38 +0100589 client_ptr_t addr; /* resulting address */
Alexandre Julliard992d3ce2008-12-17 19:24:33 +0100590 mem_size_t size; /* resulting size */
Alexandre Julliardc1222602007-01-16 09:50:08 +0100591 } virtual_unlock;
Alexandre Julliard8025f792007-01-18 15:02:55 +0100592 struct
593 {
Alexandre Julliard02e2fa772007-01-18 15:17:51 +0100594 enum apc_type type; /* APC_MAP_VIEW */
595 unsigned int status; /* status returned by call */
Alexandre Julliard838803c2008-12-30 15:05:38 +0100596 client_ptr_t addr; /* resulting address */
Alexandre Julliard992d3ce2008-12-17 19:24:33 +0100597 mem_size_t size; /* resulting size */
Alexandre Julliard02e2fa772007-01-18 15:17:51 +0100598 } map_view;
599 struct
600 {
601 enum apc_type type; /* APC_MAP_VIEW */
602 unsigned int status; /* status returned by call */
603 } unmap_view;
604 struct
605 {
Alexandre Julliard8025f792007-01-18 15:02:55 +0100606 enum apc_type type; /* APC_CREATE_THREAD */
607 unsigned int status; /* status returned by call */
608 thread_id_t tid; /* thread id */
609 obj_handle_t handle; /* handle to new thread */
610 } create_thread;
Alexandre Julliardfb40dc42007-01-15 22:24:40 +0100611} apc_result_t;
612
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000613/****************************************************************/
614/* Request declarations */
615
616/* Create a new process from the context of the parent */
617@REQ(new_process)
Alexandre Julliardc316f0e2006-07-19 14:00:10 +0200618 int inherit_all; /* inherit all handles from parent */
619 unsigned int create_flags; /* creation flags */
620 int socket_fd; /* file descriptor for process socket */
621 obj_handle_t exe_file; /* file handle for main exe */
Alexandre Julliardc316f0e2006-07-19 14:00:10 +0200622 unsigned int process_access; /* access rights for process object */
623 unsigned int process_attr; /* attributes for process object */
624 unsigned int thread_access; /* access rights for thread object */
625 unsigned int thread_attr; /* attributes for thread object */
Alexandre Julliardda8acbc2009-08-20 20:05:21 +0200626 data_size_t info_size; /* size of startup info */
627 VARARG(info,startup_info,info_size); /* startup information */
Alexandre Julliardc316f0e2006-07-19 14:00:10 +0200628 VARARG(env,unicode_str); /* environment for new process */
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000629@REPLY
Alexandre Julliardc316f0e2006-07-19 14:00:10 +0200630 obj_handle_t info; /* new process info handle */
631 process_id_t pid; /* process id */
632 obj_handle_t phandle; /* process handle (in the current process) */
633 thread_id_t tid; /* thread id */
634 obj_handle_t thandle; /* thread handle (in the current process) */
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000635@END
636
637
638/* Retrieve information about a newly started process */
639@REQ(get_new_process_info)
Alexandre Julliardf2d7dd62005-12-09 12:13:11 +0100640 obj_handle_t info; /* info handle returned from new_process_request */
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000641@REPLY
Alexandre Julliard9d802152002-05-24 21:20:27 +0000642 int success; /* did the process start successfully? */
Alexandre Julliardc316f0e2006-07-19 14:00:10 +0200643 int exit_code; /* process exit code if failed */
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000644@END
645
646
647/* Create a new thread from the context of the parent */
648@REQ(new_thread)
Alexandre Julliardf2d7dd62005-12-09 12:13:11 +0100649 unsigned int access; /* wanted access rights */
650 unsigned int attributes; /* object attributes */
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000651 int suspend; /* new thread should be suspended on creation */
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000652 int request_fd; /* fd for request pipe */
653@REPLY
Alexandre Julliard54f22872002-10-03 19:54:57 +0000654 thread_id_t tid; /* thread id */
Alexandre Julliard51885742002-05-30 20:12:58 +0000655 obj_handle_t handle; /* thread handle (in the current process) */
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000656@END
657
658
Alexandre Julliard6543a652002-03-29 18:28:56 +0000659/* Retrieve the new process startup info */
660@REQ(get_startup_info)
Alexandre Julliard6543a652002-03-29 18:28:56 +0000661@REPLY
Alexandre Julliard01caa5e2005-07-12 20:27:09 +0000662 obj_handle_t exe_file; /* file handle for main exe */
Alexandre Julliardda8acbc2009-08-20 20:05:21 +0200663 data_size_t info_size; /* size of startup info */
664 VARARG(info,startup_info,info_size); /* startup information */
Alexandre Julliardc4ec2102004-07-16 03:54:35 +0000665 VARARG(env,unicode_str); /* environment */
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000666@END
667
668
669/* Signal the end of the process initialization */
670@REQ(init_process_done)
Alexandre Julliardf2c4e092008-12-29 16:47:51 +0100671 int gui; /* is it a GUI process? */
Alexandre Julliardcb2788e2008-12-29 16:41:44 +0100672 mod_handle_t module; /* main module base address */
Alexandre Julliard2cf868c2008-12-30 22:47:48 +0100673 client_ptr_t ldt_copy; /* address of LDT copy (in thread address space) */
Alexandre Julliardc6c335d2008-12-30 22:56:15 +0100674 client_ptr_t entry; /* process entry point */
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000675@END
676
677
678/* Initialize a thread; called from the child after fork()/clone() */
679@REQ(init_thread)
680 int unix_pid; /* Unix pid of new thread */
Alexandre Julliarda8497bd2003-03-22 21:00:09 +0000681 int unix_tid; /* Unix tid of new thread */
Alexandre Julliarde0dcf4f2006-10-04 21:41:32 +0200682 int debug_level; /* new debug level */
Alexandre Julliardfa864382008-12-30 23:02:33 +0100683 client_ptr_t teb; /* TEB of new thread (in thread address space) */
Alexandre Julliardb06a9192009-04-03 14:30:34 +0200684 client_ptr_t entry; /* entry point or PEB if initial thread (in thread address space) */
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000685 int reply_fd; /* fd for reply pipe */
686 int wait_fd; /* fd for blocking calls pipe */
Alexandre Julliard653d2c42009-04-03 14:49:10 +0200687 cpu_type_t cpu; /* CPU that this thread is running on */
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000688@REPLY
Alexandre Julliard54f22872002-10-03 19:54:57 +0000689 process_id_t pid; /* process id of the new thread's process */
690 thread_id_t tid; /* thread id of the new thread */
Alexandre Julliardaaf477f2007-04-17 20:08:59 +0200691 timeout_t server_start; /* server start time */
Alexandre Julliard8c8c6652008-12-31 15:14:29 +0100692 data_size_t info_size; /* total size of startup info */
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000693 int version; /* protocol version */
Alexandre Julliard279defe2009-04-03 14:59:12 +0200694 unsigned int all_cpus; /* bitset of supported CPUs */
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000695@END
696
697
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000698/* Terminate a process */
699@REQ(terminate_process)
Alexandre Julliard51885742002-05-30 20:12:58 +0000700 obj_handle_t handle; /* process handle to terminate */
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000701 int exit_code; /* process exit code */
702@REPLY
703 int self; /* suicide? */
704@END
705
706
707/* Terminate a thread */
708@REQ(terminate_thread)
Alexandre Julliard51885742002-05-30 20:12:58 +0000709 obj_handle_t handle; /* thread handle to terminate */
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000710 int exit_code; /* thread exit code */
711@REPLY
712 int self; /* suicide? */
713 int last; /* last thread in this process? */
714@END
715
716
717/* Retrieve information about a process */
718@REQ(get_process_info)
Alexandre Julliard51885742002-05-30 20:12:58 +0000719 obj_handle_t handle; /* process handle */
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000720@REPLY
Alexandre Julliard54f22872002-10-03 19:54:57 +0000721 process_id_t pid; /* server process id */
Eric Pouechb0fd2ad2004-06-14 17:02:00 +0000722 process_id_t ppid; /* server process id of parent */
Alexandre Julliard913e7922009-01-19 14:15:51 +0100723 affinity_t affinity; /* process affinity mask */
Alexandre Julliardfa864382008-12-30 23:02:33 +0100724 client_ptr_t peb; /* PEB address in process address space */
Alexandre Julliardaaf477f2007-04-17 20:08:59 +0200725 timeout_t start_time; /* process start time */
726 timeout_t end_time; /* process end time */
Alexandre Julliardfa864382008-12-30 23:02:33 +0100727 int exit_code; /* process exit code */
Alexandre Julliard913e7922009-01-19 14:15:51 +0100728 int priority; /* priority class */
Alexandre Julliard6056e8a2009-07-07 11:37:47 +0200729 cpu_type_t cpu; /* CPU that this process is running on */
Henri Verbeetf0a50452010-03-14 21:53:27 +0100730 int debugger_present; /* process is being debugged */
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000731@END
732
733
734/* Set a process informations */
735@REQ(set_process_info)
Alexandre Julliard51885742002-05-30 20:12:58 +0000736 obj_handle_t handle; /* process handle */
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000737 int mask; /* setting mask (see below) */
738 int priority; /* priority class */
Alexandre Julliard913e7922009-01-19 14:15:51 +0100739 affinity_t affinity; /* affinity mask */
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000740@END
741#define SET_PROCESS_INFO_PRIORITY 0x01
742#define SET_PROCESS_INFO_AFFINITY 0x02
743
744
745/* Retrieve information about a thread */
746@REQ(get_thread_info)
Ryan Cumming24f4ece2002-11-25 01:33:38 +0000747 obj_handle_t handle; /* thread handle */
748 thread_id_t tid_in; /* thread id (optional) */
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000749@REPLY
Alexandre Julliard4f196ea2003-07-09 02:57:57 +0000750 process_id_t pid; /* server process id */
Ryan Cumming24f4ece2002-11-25 01:33:38 +0000751 thread_id_t tid; /* server thread id */
Alexandre Julliardfa864382008-12-30 23:02:33 +0100752 client_ptr_t teb; /* thread teb pointer */
Alexandre Julliard913e7922009-01-19 14:15:51 +0100753 affinity_t affinity; /* thread affinity mask */
Alexandre Julliardaaf477f2007-04-17 20:08:59 +0200754 timeout_t creation_time; /* thread creation time */
755 timeout_t exit_time; /* thread exit time */
Alexandre Julliardfa864382008-12-30 23:02:33 +0100756 int exit_code; /* thread exit code */
Alexandre Julliard913e7922009-01-19 14:15:51 +0100757 int priority; /* thread priority level */
Eric Pouech8cb932e2006-10-01 08:17:27 +0200758 int last; /* last thread in process */
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000759@END
760
761
762/* Set a thread informations */
763@REQ(set_thread_info)
Alexandre Julliard51885742002-05-30 20:12:58 +0000764 obj_handle_t handle; /* thread handle */
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000765 int mask; /* setting mask (see below) */
766 int priority; /* priority class */
Alexandre Julliard913e7922009-01-19 14:15:51 +0100767 affinity_t affinity; /* affinity mask */
Robert Shearman4bba2162005-06-20 13:18:38 +0000768 obj_handle_t token; /* impersonation token */
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000769@END
770#define SET_THREAD_INFO_PRIORITY 0x01
771#define SET_THREAD_INFO_AFFINITY 0x02
Robert Shearman4bba2162005-06-20 13:18:38 +0000772#define SET_THREAD_INFO_TOKEN 0x04
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000773
774
Eric Pouech2359b572003-01-09 00:01:28 +0000775/* Retrieve information about a module */
776@REQ(get_dll_info)
777 obj_handle_t handle; /* process handle */
Alexandre Julliardcb2788e2008-12-29 16:41:44 +0100778 mod_handle_t base_address; /* base address of module */
Eric Pouech2359b572003-01-09 00:01:28 +0000779@REPLY
Alexandre Julliardc6c335d2008-12-30 22:56:15 +0100780 client_ptr_t entry_point;
Alexandre Julliard77cf8032008-12-09 11:50:05 +0100781 data_size_t size; /* module size */
Rob Shearmanbf2a35b2007-11-20 09:30:50 +0000782 data_size_t filename_len; /* buffer len in bytes required to store filename */
Alexandre Julliardc30cefb2003-09-30 01:04:19 +0000783 VARARG(filename,unicode_str); /* file name of module */
Eric Pouech2359b572003-01-09 00:01:28 +0000784@END
785
786
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000787/* Suspend a thread */
788@REQ(suspend_thread)
Alexandre Julliard51885742002-05-30 20:12:58 +0000789 obj_handle_t handle; /* thread handle */
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000790@REPLY
791 int count; /* new suspend count */
792@END
793
794
795/* Resume a thread */
796@REQ(resume_thread)
Alexandre Julliard51885742002-05-30 20:12:58 +0000797 obj_handle_t handle; /* thread handle */
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000798@REPLY
799 int count; /* new suspend count */
800@END
801
802
803/* Notify the server that a dll has been loaded */
804@REQ(load_dll)
Alexandre Julliard900352b2011-04-18 14:14:40 +0200805 obj_handle_t mapping; /* file mapping handle */
Alexandre Julliardcb2788e2008-12-29 16:41:44 +0100806 mod_handle_t base; /* base address */
Alexandre Julliard947976f2008-12-29 17:10:11 +0100807 client_ptr_t name; /* ptr to ptr to name (in process addr space) */
Alexandre Julliard77cf8032008-12-09 11:50:05 +0100808 data_size_t size; /* dll size */
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000809 int dbg_offset; /* debug info offset */
810 int dbg_size; /* debug info size */
Alexandre Julliardc30cefb2003-09-30 01:04:19 +0000811 VARARG(filename,unicode_str); /* file name of dll */
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000812@END
813
814
815/* Notify the server that a dll is being unloaded */
816@REQ(unload_dll)
Alexandre Julliardcb2788e2008-12-29 16:41:44 +0100817 mod_handle_t base; /* base address */
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000818@END
819
820
Alexandre Julliard6ca1d1b2007-01-15 22:26:32 +0100821/* Queue an APC for a thread or process */
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000822@REQ(queue_apc)
Alexandre Julliardb660aaa2008-12-26 12:19:41 +0100823 obj_handle_t handle; /* thread or process handle */
Alexandre Julliard5c8421d2007-01-04 13:40:09 +0100824 apc_call_t call; /* call arguments */
Alexandre Julliard6ca1d1b2007-01-15 22:26:32 +0100825@REPLY
826 obj_handle_t handle; /* APC handle */
Alexandre Julliardf3cb4f72007-01-18 15:41:05 +0100827 int self; /* run APC in caller itself? */
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000828@END
829
830
Alexandre Julliardfb40dc42007-01-15 22:24:40 +0100831/* Get the result of an APC call */
832@REQ(get_apc_result)
833 obj_handle_t handle; /* handle to the APC */
834@REPLY
835 apc_result_t result; /* result of the APC */
836@END
837
838
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000839/* Close a handle for the current process */
840@REQ(close_handle)
Alexandre Julliard51885742002-05-30 20:12:58 +0000841 obj_handle_t handle; /* handle to close */
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000842@END
843
844
845/* Set a handle information */
846@REQ(set_handle_info)
Alexandre Julliard51885742002-05-30 20:12:58 +0000847 obj_handle_t handle; /* handle we are interested in */
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000848 int flags; /* new handle flags */
849 int mask; /* mask for flags to set */
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000850@REPLY
851 int old_flags; /* old flag value */
Alexandre Julliard38502f72005-08-23 18:43:50 +0000852@END
853
854
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000855/* Duplicate a handle */
856@REQ(dup_handle)
Alexandre Julliard51885742002-05-30 20:12:58 +0000857 obj_handle_t src_process; /* src process handle */
858 obj_handle_t src_handle; /* src handle to duplicate */
859 obj_handle_t dst_process; /* dst process handle */
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000860 unsigned int access; /* wanted access rights */
Alexandre Julliard7b910f42005-12-09 12:21:35 +0100861 unsigned int attributes; /* object attributes */
862 unsigned int options; /* duplicate options (see below) */
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000863@REPLY
Alexandre Julliard51885742002-05-30 20:12:58 +0000864 obj_handle_t handle; /* duplicated handle in dst process */
Alexandre Julliard34103542007-01-18 12:18:51 +0100865 int self; /* is the source the current process? */
Alexandre Julliard28418cc2006-11-02 20:48:19 +0100866 int closed; /* whether the source handle has been closed */
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000867@END
868#define DUP_HANDLE_CLOSE_SOURCE DUPLICATE_CLOSE_SOURCE
869#define DUP_HANDLE_SAME_ACCESS DUPLICATE_SAME_ACCESS
870#define DUP_HANDLE_MAKE_GLOBAL 0x80000000 /* Not a Windows flag */
871
872
873/* Open a handle to a process */
874@REQ(open_process)
Alexandre Julliard54f22872002-10-03 19:54:57 +0000875 process_id_t pid; /* process id to open */
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000876 unsigned int access; /* wanted access rights */
Alexandre Julliardf2d7dd62005-12-09 12:13:11 +0100877 unsigned int attributes; /* object attributes */
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000878@REPLY
Alexandre Julliard51885742002-05-30 20:12:58 +0000879 obj_handle_t handle; /* handle to the process */
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000880@END
881
882
Chris Morgan417296c2002-04-02 00:49:05 +0000883/* Open a handle to a thread */
884@REQ(open_thread)
Alexandre Julliard54f22872002-10-03 19:54:57 +0000885 thread_id_t tid; /* thread id to open */
Chris Morgan417296c2002-04-02 00:49:05 +0000886 unsigned int access; /* wanted access rights */
Alexandre Julliardf2d7dd62005-12-09 12:13:11 +0100887 unsigned int attributes; /* object attributes */
Chris Morgan417296c2002-04-02 00:49:05 +0000888@REPLY
Alexandre Julliard51885742002-05-30 20:12:58 +0000889 obj_handle_t handle; /* handle to the thread */
Chris Morgan417296c2002-04-02 00:49:05 +0000890@END
891
892
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000893/* Wait for handles */
894@REQ(select)
895 int flags; /* wait flags (see below) */
Alexandre Julliard45c99192008-12-29 17:19:26 +0100896 client_ptr_t cookie; /* magic cookie to return to client */
Mike McCormackf92fff62005-04-24 17:35:52 +0000897 obj_handle_t signal; /* object to signal (0 if none) */
Alexandre Julliardfec51172007-07-16 16:14:45 +0200898 obj_handle_t prev_apc; /* handle to previous APC */
Alexandre Julliardaaf477f2007-04-17 20:08:59 +0200899 timeout_t timeout; /* timeout */
Alexandre Julliardfec51172007-07-16 16:14:45 +0200900 VARARG(result,apc_result); /* result of previous APC */
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000901 VARARG(handles,handles); /* handles to select on */
Alexandre Julliardaaf477f2007-04-17 20:08:59 +0200902@REPLY
903 timeout_t timeout; /* timeout converted to absolute */
Alexandre Julliardfec51172007-07-16 16:14:45 +0200904 apc_call_t call; /* APC call arguments */
Alexandre Julliard838803c2008-12-30 15:05:38 +0100905 obj_handle_t apc_handle; /* handle to next APC */
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000906@END
907#define SELECT_ALL 1
908#define SELECT_ALERTABLE 2
909#define SELECT_INTERRUPTIBLE 4
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000910
911
912/* Create an event */
913@REQ(create_event)
Eric Pouech44158dd2004-12-02 18:05:37 +0000914 unsigned int access; /* wanted access rights */
Vitaliy Margolena9960002005-10-27 18:30:37 +0000915 unsigned int attributes; /* object attributes */
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000916 int manual_reset; /* manual reset event */
917 int initial_state; /* initial state of the event */
Rob Shearmandd9e3922007-10-24 16:04:42 +0100918 VARARG(objattr,object_attributes); /* object attributes */
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000919@REPLY
Alexandre Julliard51885742002-05-30 20:12:58 +0000920 obj_handle_t handle; /* handle to the event */
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000921@END
922
923/* Event operation */
924@REQ(event_op)
Alexandre Julliard51885742002-05-30 20:12:58 +0000925 obj_handle_t handle; /* handle to event */
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000926 int op; /* event operation (see below) */
927@END
928enum event_op { PULSE_EVENT, SET_EVENT, RESET_EVENT };
929
930
931/* Open an event */
932@REQ(open_event)
933 unsigned int access; /* wanted access rights */
Vitaliy Margolena9960002005-10-27 18:30:37 +0000934 unsigned int attributes; /* object attributes */
Vitaliy Margolenf676bc82005-12-02 15:55:48 +0100935 obj_handle_t rootdir; /* root directory */
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000936 VARARG(name,unicode_str); /* object name */
937@REPLY
Alexandre Julliard51885742002-05-30 20:12:58 +0000938 obj_handle_t handle; /* handle to the event */
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000939@END
940
941
942/* Create a mutex */
943@REQ(create_mutex)
Eric Pouech44158dd2004-12-02 18:05:37 +0000944 unsigned int access; /* wanted access rights */
Vitaliy Margolena9960002005-10-27 18:30:37 +0000945 unsigned int attributes; /* object attributes */
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000946 int owned; /* initially owned? */
Rob Shearman1f863212007-10-25 15:43:05 +0100947 VARARG(objattr,object_attributes); /* object attributes */
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000948@REPLY
Alexandre Julliard51885742002-05-30 20:12:58 +0000949 obj_handle_t handle; /* handle to the mutex */
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000950@END
951
952
953/* Release a mutex */
954@REQ(release_mutex)
Alexandre Julliard51885742002-05-30 20:12:58 +0000955 obj_handle_t handle; /* handle to the mutex */
Eric Pouech44158dd2004-12-02 18:05:37 +0000956@REPLY
957 unsigned int prev_count; /* value of internal counter, before release */
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000958@END
959
960
961/* Open a mutex */
962@REQ(open_mutex)
963 unsigned int access; /* wanted access rights */
Vitaliy Margolena9960002005-10-27 18:30:37 +0000964 unsigned int attributes; /* object attributes */
Vitaliy Margolenf676bc82005-12-02 15:55:48 +0100965 obj_handle_t rootdir; /* root directory */
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000966 VARARG(name,unicode_str); /* object name */
967@REPLY
Alexandre Julliard51885742002-05-30 20:12:58 +0000968 obj_handle_t handle; /* handle to the mutex */
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000969@END
970
971
972/* Create a semaphore */
973@REQ(create_semaphore)
Eric Pouech44158dd2004-12-02 18:05:37 +0000974 unsigned int access; /* wanted access rights */
Vitaliy Margolena9960002005-10-27 18:30:37 +0000975 unsigned int attributes; /* object attributes */
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000976 unsigned int initial; /* initial count */
977 unsigned int max; /* maximum count */
Rob Shearmanb0e5fb42007-10-25 15:42:53 +0100978 VARARG(objattr,object_attributes); /* object attributes */
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000979@REPLY
Alexandre Julliard51885742002-05-30 20:12:58 +0000980 obj_handle_t handle; /* handle to the semaphore */
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000981@END
982
983
984/* Release a semaphore */
985@REQ(release_semaphore)
Alexandre Julliard51885742002-05-30 20:12:58 +0000986 obj_handle_t handle; /* handle to the semaphore */
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000987 unsigned int count; /* count to add to semaphore */
988@REPLY
989 unsigned int prev_count; /* previous semaphore count */
990@END
991
992
993/* Open a semaphore */
994@REQ(open_semaphore)
995 unsigned int access; /* wanted access rights */
Vitaliy Margolena9960002005-10-27 18:30:37 +0000996 unsigned int attributes; /* object attributes */
Vitaliy Margolen5daae3d2005-12-02 16:01:17 +0100997 obj_handle_t rootdir; /* root directory */
Alexandre Julliard37ec9272001-07-19 00:35:37 +0000998 VARARG(name,unicode_str); /* object name */
999@REPLY
Alexandre Julliard51885742002-05-30 20:12:58 +00001000 obj_handle_t handle; /* handle to the semaphore */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001001@END
1002
1003
1004/* Create a file */
1005@REQ(create_file)
1006 unsigned int access; /* wanted access rights */
Alexandre Julliard27b1aec2005-12-09 12:00:48 +01001007 unsigned int attributes; /* object attributes */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001008 unsigned int sharing; /* sharing flags */
1009 int create; /* file create action */
Alexandre Julliard014099c2004-03-12 01:56:49 +00001010 unsigned int options; /* file options */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001011 unsigned int attrs; /* file attributes for creation */
Rob Shearman5f5df832007-10-26 17:02:16 +01001012 VARARG(objattr,object_attributes); /* object attributes */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001013 VARARG(filename,string); /* file name */
1014@REPLY
Alexandre Julliard51885742002-05-30 20:12:58 +00001015 obj_handle_t handle; /* handle to the file */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001016@END
1017
1018
Alexandre Julliard67505c02005-12-12 14:27:45 +01001019/* Open a file object */
1020@REQ(open_file_object)
1021 unsigned int access; /* wanted access rights */
1022 unsigned int attributes; /* open attributes */
1023 obj_handle_t rootdir; /* root directory */
1024 unsigned int sharing; /* sharing flags */
Alexandre Julliard94655c82007-03-22 11:52:40 +01001025 unsigned int options; /* file options */
Alexandre Julliard67505c02005-12-12 14:27:45 +01001026 VARARG(filename,unicode_str); /* file name */
1027@REPLY
1028 obj_handle_t handle; /* handle to the file */
1029@END
1030
1031
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001032/* Allocate a file handle for a Unix fd */
1033@REQ(alloc_file_handle)
1034 unsigned int access; /* wanted access rights */
Alexandre Julliard27b1aec2005-12-09 12:00:48 +01001035 unsigned int attributes; /* object attributes */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001036 int fd; /* file descriptor on the client side */
1037@REPLY
Alexandre Julliard51885742002-05-30 20:12:58 +00001038 obj_handle_t handle; /* handle to the file */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001039@END
1040
1041
Henri Verbeet27705d52009-11-12 15:10:12 +01001042/* Get the Unix name from a file handle */
1043@REQ(get_handle_unix_name)
1044 obj_handle_t handle; /* file handle */
1045@REPLY
1046 data_size_t name_len; /* unix name length */
1047 VARARG(name,string); /* unix name */
1048@END
1049
1050
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001051/* Get a Unix fd to access a file */
1052@REQ(get_handle_fd)
Alexandre Julliard51885742002-05-30 20:12:58 +00001053 obj_handle_t handle; /* handle to the file */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001054@REPLY
Alexandre Julliard89304272006-11-20 14:14:04 +01001055 int type; /* file type (see below) */
Alexandre Julliarda2ca2eb2010-08-23 17:09:45 +02001056 int cacheable; /* can fd be cached in the client? */
Alexandre Julliardd85121f2007-04-10 22:32:46 +02001057 unsigned int access; /* file access rights */
1058 unsigned int options; /* file open options */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001059@END
Alexandre Julliard89304272006-11-20 14:14:04 +01001060enum server_fd_type
1061{
1062 FD_TYPE_INVALID, /* invalid file (no associated fd) */
1063 FD_TYPE_FILE, /* regular file */
1064 FD_TYPE_DIR, /* directory */
1065 FD_TYPE_SOCKET, /* socket */
1066 FD_TYPE_SERIAL, /* serial port */
1067 FD_TYPE_PIPE, /* named pipe */
1068 FD_TYPE_MAILSLOT, /* mailslot */
Alexandre Julliard133b8bc2007-04-23 15:13:22 +02001069 FD_TYPE_CHAR, /* unspecified char device */
Alexandre Julliard89304272006-11-20 14:14:04 +01001070 FD_TYPE_DEVICE, /* Windows device file */
1071 FD_TYPE_NB_TYPES
1072};
Alexandre Julliardd85121f2007-04-10 22:32:46 +02001073
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001074
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001075/* Flush a file buffers */
1076@REQ(flush_file)
Alexandre Julliard51885742002-05-30 20:12:58 +00001077 obj_handle_t handle; /* handle to the file */
Mike McCormackef8b9462003-05-15 04:22:45 +00001078@REPLY
1079 obj_handle_t event; /* event set when finished */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001080@END
1081
1082
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001083/* Lock a region of a file */
1084@REQ(lock_file)
Alexandre Julliard51885742002-05-30 20:12:58 +00001085 obj_handle_t handle; /* handle to the file */
Alexandre Julliard235532c2007-10-10 14:06:25 +02001086 file_pos_t offset; /* offset of start of lock */
1087 file_pos_t count; /* count of bytes to lock */
Alexandre Julliardce613492003-03-18 05:04:33 +00001088 int shared; /* shared or exclusive lock? */
1089 int wait; /* do we want to wait? */
1090@REPLY
1091 obj_handle_t handle; /* handle to wait on */
1092 int overlapped; /* is it an overlapped I/O handle? */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001093@END
1094
1095
1096/* Unlock a region of a file */
1097@REQ(unlock_file)
Alexandre Julliard51885742002-05-30 20:12:58 +00001098 obj_handle_t handle; /* handle to the file */
Alexandre Julliard235532c2007-10-10 14:06:25 +02001099 file_pos_t offset; /* offset of start of unlock */
1100 file_pos_t count; /* count of bytes to unlock */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001101@END
1102
1103
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001104/* Create a socket */
1105@REQ(create_socket)
1106 unsigned int access; /* wanted access rights */
Alexandre Julliardbc303032005-12-09 11:58:55 +01001107 unsigned int attributes; /* object attributes */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001108 int family; /* family, see socket manpage */
1109 int type; /* type, see socket manpage */
1110 int protocol; /* protocol, see socket manpage */
Martin Wilckaa477052002-01-09 21:16:24 +00001111 unsigned int flags; /* socket flags */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001112@REPLY
Alexandre Julliard51885742002-05-30 20:12:58 +00001113 obj_handle_t handle; /* handle to the new socket */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001114@END
1115
1116
1117/* Accept a socket */
1118@REQ(accept_socket)
Alexandre Julliard51885742002-05-30 20:12:58 +00001119 obj_handle_t lhandle; /* handle to the listening socket */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001120 unsigned int access; /* wanted access rights */
Alexandre Julliardbc303032005-12-09 11:58:55 +01001121 unsigned int attributes; /* object attributes */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001122@REPLY
Alexandre Julliard51885742002-05-30 20:12:58 +00001123 obj_handle_t handle; /* handle to the new socket */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001124@END
1125
1126
Mike Kaplinskiyae5ad612010-08-29 18:09:53 -04001127/* Accept into an initialized socket */
1128@REQ(accept_into_socket)
1129 obj_handle_t lhandle; /* handle to the listening socket */
1130 obj_handle_t ahandle; /* handle to the accepting socket */
1131@END
1132
1133
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001134/* Set socket event parameters */
1135@REQ(set_socket_event)
Alexandre Julliard51885742002-05-30 20:12:58 +00001136 obj_handle_t handle; /* handle to the socket */
Alexandre Julliard81f2a732002-03-23 20:43:52 +00001137 unsigned int mask; /* event mask */
Alexandre Julliard51885742002-05-30 20:12:58 +00001138 obj_handle_t event; /* event object */
Alexandre Julliard81f2a732002-03-23 20:43:52 +00001139 user_handle_t window; /* window to send the message to */
1140 unsigned int msg; /* message to send */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001141@END
1142
1143
1144/* Get socket event parameters */
1145@REQ(get_socket_event)
Alexandre Julliard51885742002-05-30 20:12:58 +00001146 obj_handle_t handle; /* handle to the socket */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001147 int service; /* clear pending? */
Alexandre Julliard51885742002-05-30 20:12:58 +00001148 obj_handle_t c_event; /* event to clear */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001149@REPLY
1150 unsigned int mask; /* event mask */
1151 unsigned int pmask; /* pending events */
1152 unsigned int state; /* status bits */
1153 VARARG(errors,ints); /* event errors */
1154@END
1155
1156
1157/* Reenable pending socket events */
1158@REQ(enable_socket_event)
Alexandre Julliard51885742002-05-30 20:12:58 +00001159 obj_handle_t handle; /* handle to the socket */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001160 unsigned int mask; /* events to re-enable */
1161 unsigned int sstate; /* status bits to set */
1162 unsigned int cstate; /* status bits to clear */
1163@END
1164
Martin Wilckd15bf1c2002-04-23 22:03:42 +00001165@REQ(set_socket_deferred)
Alexandre Julliard51885742002-05-30 20:12:58 +00001166 obj_handle_t handle; /* handle to the socket */
1167 obj_handle_t deferred; /* handle to the socket for which accept() is deferred */
Martin Wilckd15bf1c2002-04-23 22:03:42 +00001168@END
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001169
Eric Pouech0b83d4c2001-11-23 23:04:58 +00001170/* Allocate a console (only used by a console renderer) */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001171@REQ(alloc_console)
1172 unsigned int access; /* wanted access rights */
Alexandre Julliard7a096602005-12-09 12:05:20 +01001173 unsigned int attributes; /* object attributes */
Alexandre Julliard54f22872002-10-03 19:54:57 +00001174 process_id_t pid; /* pid of process which shall be attached to the console */
Eric Pouechb39a8d92010-08-30 22:18:44 +02001175 int input_fd; /* if pid=-1 (bare console to current process), fd for input */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001176@REPLY
Alexandre Julliard51885742002-05-30 20:12:58 +00001177 obj_handle_t handle_in; /* handle to console input */
1178 obj_handle_t event; /* handle to renderer events change notification */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001179@END
1180
1181
1182/* Free the console of the current process */
1183@REQ(free_console)
1184@END
1185
1186
Eric Pouech0b83d4c2001-11-23 23:04:58 +00001187#define CONSOLE_RENDERER_NONE_EVENT 0x00
1188#define CONSOLE_RENDERER_TITLE_EVENT 0x01
1189#define CONSOLE_RENDERER_ACTIVE_SB_EVENT 0x02
1190#define CONSOLE_RENDERER_SB_RESIZE_EVENT 0x03
1191#define CONSOLE_RENDERER_UPDATE_EVENT 0x04
1192#define CONSOLE_RENDERER_CURSOR_POS_EVENT 0x05
1193#define CONSOLE_RENDERER_CURSOR_GEOM_EVENT 0x06
1194#define CONSOLE_RENDERER_DISPLAY_EVENT 0x07
1195#define CONSOLE_RENDERER_EXIT_EVENT 0x08
1196struct console_renderer_event
1197{
1198 short event;
1199 union
1200 {
1201 struct update
1202 {
1203 short top;
1204 short bottom;
1205 } update;
1206 struct resize
1207 {
1208 short width;
1209 short height;
1210 } resize;
1211 struct cursor_pos
1212 {
1213 short x;
1214 short y;
1215 } cursor_pos;
1216 struct cursor_geom
1217 {
1218 short visible;
1219 short size;
1220 } cursor_geom;
1221 struct display
1222 {
1223 short left;
1224 short top;
1225 short width;
1226 short height;
1227 } display;
1228 } u;
1229};
1230
1231/* retrieve console events for the renderer */
1232@REQ(get_console_renderer_events)
Alexandre Julliard51885742002-05-30 20:12:58 +00001233 obj_handle_t handle; /* handle to console input events */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001234@REPLY
Eric Pouech0b83d4c2001-11-23 23:04:58 +00001235 VARARG(data,bytes); /* the various console_renderer_events */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001236@END
1237
1238
Eric Pouech0b83d4c2001-11-23 23:04:58 +00001239/* Open a handle to the process console */
1240@REQ(open_console)
Mike McCormackfac494c2006-06-07 18:33:46 +09001241 obj_handle_t from; /* 0 (resp 1) input (resp output) of current process console */
Eric Pouech0b83d4c2001-11-23 23:04:58 +00001242 /* otherwise console_in handle to get active screen buffer? */
1243 unsigned int access; /* wanted access rights */
Alexandre Julliard7a096602005-12-09 12:05:20 +01001244 unsigned int attributes; /* object attributes */
Eric Pouech0b83d4c2001-11-23 23:04:58 +00001245 int share; /* share mask (only for output handles) */
1246@REPLY
Alexandre Julliard51885742002-05-30 20:12:58 +00001247 obj_handle_t handle; /* handle to the console */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001248@END
1249
1250
Eric Pouech412d37f2003-06-21 02:07:10 +00001251/* Get the input queue wait event */
1252@REQ(get_console_wait_event)
1253@REPLY
1254 obj_handle_t handle;
1255@END
1256
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001257/* Get a console mode (input or output) */
1258@REQ(get_console_mode)
Alexandre Julliard51885742002-05-30 20:12:58 +00001259 obj_handle_t handle; /* handle to the console */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001260@REPLY
1261 int mode; /* console mode */
1262@END
1263
1264
1265/* Set a console mode (input or output) */
1266@REQ(set_console_mode)
Alexandre Julliard51885742002-05-30 20:12:58 +00001267 obj_handle_t handle; /* handle to the console */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001268 int mode; /* console mode */
1269@END
1270
1271
Eric Pouech0b83d4c2001-11-23 23:04:58 +00001272/* Set info about a console (input only) */
1273@REQ(set_console_input_info)
Kirill K. Smirnovf3e13172007-08-23 19:17:17 +04001274 obj_handle_t handle; /* handle to console input, or 0 for process' console */
1275 int mask; /* setting mask (see below) */
1276 obj_handle_t active_sb; /* active screen buffer */
1277 int history_mode; /* whether we duplicate lines in history */
1278 int history_size; /* number of lines in history */
1279 int edition_mode; /* index to the edition mode flavors */
1280 int input_cp; /* console input codepage */
1281 int output_cp; /* console output codepage */
1282 user_handle_t win; /* console window if backend supports it */
1283 VARARG(title,unicode_str); /* console title */
Eric Pouech0b83d4c2001-11-23 23:04:58 +00001284@END
1285#define SET_CONSOLE_INPUT_INFO_ACTIVE_SB 0x01
1286#define SET_CONSOLE_INPUT_INFO_TITLE 0x02
1287#define SET_CONSOLE_INPUT_INFO_HISTORY_MODE 0x04
1288#define SET_CONSOLE_INPUT_INFO_HISTORY_SIZE 0x08
Eric Pouechfa8b85a2003-01-09 06:01:32 +00001289#define SET_CONSOLE_INPUT_INFO_EDITION_MODE 0x10
Kirill K. Smirnov9d746612007-05-10 21:19:47 +04001290#define SET_CONSOLE_INPUT_INFO_INPUT_CODEPAGE 0x20
1291#define SET_CONSOLE_INPUT_INFO_OUTPUT_CODEPAGE 0x40
Kirill K. Smirnovf3e13172007-08-23 19:17:17 +04001292#define SET_CONSOLE_INPUT_INFO_WIN 0x80
Eric Pouech0b83d4c2001-11-23 23:04:58 +00001293
1294
1295/* Get info about a console (input only) */
1296@REQ(get_console_input_info)
Kirill K. Smirnovf3e13172007-08-23 19:17:17 +04001297 obj_handle_t handle; /* handle to console input, or 0 for process' console */
Eric Pouech0b83d4c2001-11-23 23:04:58 +00001298@REPLY
Kirill K. Smirnovf3e13172007-08-23 19:17:17 +04001299 int history_mode; /* whether we duplicate lines in history */
1300 int history_size; /* number of lines in history */
1301 int history_index; /* number of used lines in history */
1302 int edition_mode; /* index to the edition mode flavors */
1303 int input_cp; /* console input codepage */
1304 int output_cp; /* console output codepage */
1305 user_handle_t win; /* console window if backend supports it */
1306 VARARG(title,unicode_str); /* console title */
Eric Pouech0b83d4c2001-11-23 23:04:58 +00001307@END
1308
1309
1310/* appends a string to console's history */
1311@REQ(append_console_input_history)
Alexandre Julliard51885742002-05-30 20:12:58 +00001312 obj_handle_t handle; /* handle to console input, or 0 for process' console */
Eric Pouech0b83d4c2001-11-23 23:04:58 +00001313 VARARG(line,unicode_str); /* line to add */
1314@END
1315
1316
1317/* appends a string to console's history */
1318@REQ(get_console_input_history)
Alexandre Julliard51885742002-05-30 20:12:58 +00001319 obj_handle_t handle; /* handle to console input, or 0 for process' console */
Eric Pouech0b83d4c2001-11-23 23:04:58 +00001320 int index; /* index to get line from */
1321@REPLY
Alexandre Julliard9caa71e2001-11-30 18:46:42 +00001322 int total; /* total length of line in Unicode chars */
Eric Pouech0b83d4c2001-11-23 23:04:58 +00001323 VARARG(line,unicode_str); /* line to add */
1324@END
1325
1326
1327/* creates a new screen buffer on process' console */
1328@REQ(create_console_output)
Alexandre Julliard51885742002-05-30 20:12:58 +00001329 obj_handle_t handle_in; /* handle to console input, or 0 for process' console */
Alexandre Julliard7a096602005-12-09 12:05:20 +01001330 unsigned int access; /* wanted access rights */
1331 unsigned int attributes; /* object attributes */
1332 unsigned int share; /* sharing credentials */
Eric Pouech6f326442010-08-30 22:18:52 +02001333 int fd; /* for bare consoles, fd the screen-buffer is attached to */
Eric Pouech0b83d4c2001-11-23 23:04:58 +00001334@REPLY
Alexandre Julliard51885742002-05-30 20:12:58 +00001335 obj_handle_t handle_out; /* handle to the screen buffer */
Eric Pouech0b83d4c2001-11-23 23:04:58 +00001336@END
1337
1338
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001339/* Set info about a console (output only) */
Eric Pouech0b83d4c2001-11-23 23:04:58 +00001340@REQ(set_console_output_info)
Alexandre Julliard51885742002-05-30 20:12:58 +00001341 obj_handle_t handle; /* handle to the console */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001342 int mask; /* setting mask (see below) */
Eric Pouech0b83d4c2001-11-23 23:04:58 +00001343 short int cursor_size; /* size of cursor (percentage filled) */
1344 short int cursor_visible;/* cursor visibility flag */
1345 short int cursor_x; /* position of cursor (x, y) */
1346 short int cursor_y;
1347 short int width; /* width of the screen buffer */
1348 short int height; /* height of the screen buffer */
1349 short int attr; /* default attribute */
1350 short int win_left; /* window actually displayed by renderer */
1351 short int win_top; /* the rect area is expressed withing the */
1352 short int win_right; /* boundaries of the screen buffer */
1353 short int win_bottom;
1354 short int max_width; /* maximum size (width x height) for the window */
1355 short int max_height;
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001356@END
Eric Pouech0b83d4c2001-11-23 23:04:58 +00001357#define SET_CONSOLE_OUTPUT_INFO_CURSOR_GEOM 0x01
1358#define SET_CONSOLE_OUTPUT_INFO_CURSOR_POS 0x02
1359#define SET_CONSOLE_OUTPUT_INFO_SIZE 0x04
1360#define SET_CONSOLE_OUTPUT_INFO_ATTR 0x08
1361#define SET_CONSOLE_OUTPUT_INFO_DISPLAY_WINDOW 0x10
1362#define SET_CONSOLE_OUTPUT_INFO_MAX_SIZE 0x20
1363
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001364
1365/* Get info about a console (output only) */
Eric Pouech0b83d4c2001-11-23 23:04:58 +00001366@REQ(get_console_output_info)
Alexandre Julliard51885742002-05-30 20:12:58 +00001367 obj_handle_t handle; /* handle to the console */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001368@REPLY
Eric Pouech0b83d4c2001-11-23 23:04:58 +00001369 short int cursor_size; /* size of cursor (percentage filled) */
1370 short int cursor_visible;/* cursor visibility flag */
1371 short int cursor_x; /* position of cursor (x, y) */
1372 short int cursor_y;
1373 short int width; /* width of the screen buffer */
1374 short int height; /* height of the screen buffer */
1375 short int attr; /* default attribute */
1376 short int win_left; /* window actually displayed by renderer */
1377 short int win_top; /* the rect area is expressed withing the */
1378 short int win_right; /* boundaries of the screen buffer */
1379 short int win_bottom;
1380 short int max_width; /* maximum size (width x height) for the window */
1381 short int max_height;
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001382@END
1383
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001384/* Add input records to a console input queue */
1385@REQ(write_console_input)
Alexandre Julliard51885742002-05-30 20:12:58 +00001386 obj_handle_t handle; /* handle to the console input */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001387 VARARG(rec,input_records); /* input records */
1388@REPLY
1389 int written; /* number of records written */
1390@END
1391
Eric Pouech0b83d4c2001-11-23 23:04:58 +00001392
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001393/* Fetch input records from a console input queue */
1394@REQ(read_console_input)
Alexandre Julliard51885742002-05-30 20:12:58 +00001395 obj_handle_t handle; /* handle to the console input */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001396 int flush; /* flush the retrieved records from the queue? */
1397@REPLY
1398 int read; /* number of records read */
1399 VARARG(rec,input_records); /* input records */
1400@END
1401
1402
Eric Pouech0b83d4c2001-11-23 23:04:58 +00001403/* write data (chars and/or attributes) in a screen buffer */
1404@REQ(write_console_output)
Alexandre Julliard51885742002-05-30 20:12:58 +00001405 obj_handle_t handle; /* handle to the console output */
Alexandre Julliard9caa71e2001-11-30 18:46:42 +00001406 int x; /* position where to start writing */
1407 int y;
1408 int mode; /* char info (see below) */
1409 int wrap; /* wrap around at end of line? */
Eric Pouech0b83d4c2001-11-23 23:04:58 +00001410 VARARG(data,bytes); /* info to write */
1411@REPLY
Alexandre Julliard9caa71e2001-11-30 18:46:42 +00001412 int written; /* number of char infos actually written */
1413 int width; /* width of screen buffer */
1414 int height; /* height of screen buffer */
Eric Pouech0b83d4c2001-11-23 23:04:58 +00001415@END
Alexandre Julliard9caa71e2001-11-30 18:46:42 +00001416enum char_info_mode
1417{
1418 CHAR_INFO_MODE_TEXT, /* characters only */
1419 CHAR_INFO_MODE_ATTR, /* attributes only */
1420 CHAR_INFO_MODE_TEXTATTR, /* both characters and attributes */
1421 CHAR_INFO_MODE_TEXTSTDATTR /* characters but use standard attributes */
1422};
Eric Pouech0b83d4c2001-11-23 23:04:58 +00001423
1424
Alexandre Julliard9caa71e2001-11-30 18:46:42 +00001425/* fill a screen buffer with constant data (chars and/or attributes) */
1426@REQ(fill_console_output)
Alexandre Julliard51885742002-05-30 20:12:58 +00001427 obj_handle_t handle; /* handle to the console output */
Alexandre Julliard9caa71e2001-11-30 18:46:42 +00001428 int x; /* position where to start writing */
1429 int y;
1430 int mode; /* char info mode */
1431 int count; /* number to write */
1432 int wrap; /* wrap around at end of line? */
1433 char_info_t data; /* data to write */
Eric Pouech0b83d4c2001-11-23 23:04:58 +00001434@REPLY
Alexandre Julliard9caa71e2001-11-30 18:46:42 +00001435 int written; /* number of char infos actually written */
1436@END
1437
1438
1439/* read data (chars and/or attributes) from a screen buffer */
1440@REQ(read_console_output)
Alexandre Julliard51885742002-05-30 20:12:58 +00001441 obj_handle_t handle; /* handle to the console output */
Alexandre Julliard9caa71e2001-11-30 18:46:42 +00001442 int x; /* position (x,y) where to start reading */
1443 int y;
1444 int mode; /* char info mode */
1445 int wrap; /* wrap around at end of line? */
1446@REPLY
1447 int width; /* width of screen buffer */
1448 int height; /* height of screen buffer */
Eric Pouech0b83d4c2001-11-23 23:04:58 +00001449 VARARG(data,bytes);
1450@END
1451
Eric Pouech93bfa0d2002-06-02 21:22:22 +00001452
Eric Pouech0b83d4c2001-11-23 23:04:58 +00001453/* move a rect (of data) in screen buffer content */
1454@REQ(move_console_output)
Alexandre Julliard51885742002-05-30 20:12:58 +00001455 obj_handle_t handle; /* handle to the console output */
Eric Pouech0b83d4c2001-11-23 23:04:58 +00001456 short int x_src; /* position (x, y) of rect to start moving from */
1457 short int y_src;
1458 short int x_dst; /* position (x, y) of rect to move to */
1459 short int y_dst;
1460 short int w; /* size of the rect (width, height) to move */
1461 short int h;
1462@END
1463
1464
Eric Pouech93bfa0d2002-06-02 21:22:22 +00001465/* Sends a signal to a process group */
1466@REQ(send_console_signal)
1467 int signal; /* the signal to send */
Alexandre Julliard54f22872002-10-03 19:54:57 +00001468 process_id_t group_id; /* the group to send the signal to */
Eric Pouech93bfa0d2002-06-02 21:22:22 +00001469@END
1470
1471
Mike McCormack08351072006-01-27 12:13:56 +01001472/* enable directory change notifications */
1473@REQ(read_directory_changes)
Alexandre Julliarde0dcf4f2006-10-04 21:41:32 +02001474 unsigned int filter; /* notification filter */
Mike McCormacke4faabf2006-02-21 16:58:19 +09001475 int subtree; /* watch the subtree? */
Mike McCormack0790f952006-02-07 16:50:36 +01001476 int want_data; /* flag indicating whether change data should be collected */
Alexandre Julliard111610c2007-03-20 20:21:12 +01001477 async_data_t async; /* async I/O parameters */
Mike McCormack01932112006-02-06 11:58:55 +01001478@END
1479
1480
1481@REQ(read_change)
1482 obj_handle_t handle;
1483@REPLY
Piotr Cabanb614a152011-01-18 11:24:33 +01001484 VARARG(events,filesystem_event); /* collected filesystem events */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001485@END
1486
1487
1488/* Create a file mapping */
1489@REQ(create_mapping)
Vitaliy Margolena9960002005-10-27 18:30:37 +00001490 unsigned int access; /* wanted access rights */
1491 unsigned int attributes; /* object attributes */
Alexandre Julliard0b0b6c32008-11-04 13:05:32 +01001492 unsigned int protect; /* protection flags (see below) */
Alexandre Julliard8c8c6652008-12-31 15:14:29 +01001493 mem_size_t size; /* mapping size */
Alexandre Julliard51885742002-05-30 20:12:58 +00001494 obj_handle_t file_handle; /* file handle */
Rob Shearman23df4532007-10-25 19:09:54 +01001495 VARARG(objattr,object_attributes); /* object attributes */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001496@REPLY
Alexandre Julliard51885742002-05-30 20:12:58 +00001497 obj_handle_t handle; /* handle to the mapping */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001498@END
Alexandre Julliard0b0b6c32008-11-04 13:05:32 +01001499/* per-page protection flags */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001500#define VPROT_READ 0x01
1501#define VPROT_WRITE 0x02
1502#define VPROT_EXEC 0x04
1503#define VPROT_WRITECOPY 0x08
1504#define VPROT_GUARD 0x10
1505#define VPROT_NOCACHE 0x20
1506#define VPROT_COMMITTED 0x40
Alexandre Julliardaf8bb2e2008-11-25 12:07:35 +01001507#define VPROT_WRITEWATCH 0x80
Alexandre Julliard0b0b6c32008-11-04 13:05:32 +01001508/* per-mapping protection flags */
1509#define VPROT_IMAGE 0x0100 /* mapping for an exe image */
1510#define VPROT_SYSTEM 0x0200 /* system view (underlying mmap not under our control) */
1511#define VPROT_VALLOC 0x0400 /* allocated by VirtualAlloc */
Alexandre Julliard7e947872008-11-04 13:16:01 +01001512#define VPROT_NOEXEC 0x0800 /* don't force exec permission */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001513
1514
1515/* Open a mapping */
1516@REQ(open_mapping)
1517 unsigned int access; /* wanted access rights */
Vitaliy Margolena9960002005-10-27 18:30:37 +00001518 unsigned int attributes; /* object attributes */
Vitaliy Margolen348a3d92005-12-02 16:13:13 +01001519 obj_handle_t rootdir; /* root directory */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001520 VARARG(name,unicode_str); /* object name */
1521@REPLY
Alexandre Julliard51885742002-05-30 20:12:58 +00001522 obj_handle_t handle; /* handle to the mapping */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001523@END
1524
1525
1526/* Get information about a file mapping */
1527@REQ(get_mapping_info)
Alexandre Julliard51885742002-05-30 20:12:58 +00001528 obj_handle_t handle; /* handle to the mapping */
Alexandre Julliard5e2ed6b2008-11-05 20:32:32 +01001529 unsigned int access; /* wanted access rights */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001530@REPLY
Alexandre Julliard29d97592008-12-17 19:25:49 +01001531 mem_size_t size; /* mapping size */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001532 int protect; /* protection flags */
1533 int header_size; /* header size (for VPROT_IMAGE mapping) */
Alexandre Julliardd066a9a2008-12-30 14:18:21 +01001534 client_ptr_t base; /* default base addr (for VPROT_IMAGE mapping) */
Alexandre Julliard4cbe8672007-01-12 14:55:31 +01001535 obj_handle_t mapping; /* duplicate mapping handle unless removable */
Alexandre Julliard51885742002-05-30 20:12:58 +00001536 obj_handle_t shared_file; /* shared mapping file handle */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001537@END
1538
1539
Alexandre Julliardcdce50f2008-11-05 12:24:05 +01001540/* Get a range of committed pages in a file mapping */
1541@REQ(get_mapping_committed_range)
1542 obj_handle_t handle; /* handle to the mapping */
1543 file_pos_t offset; /* starting offset (page-aligned, in bytes) */
1544@REPLY
Alexandre Julliard29d97592008-12-17 19:25:49 +01001545 mem_size_t size; /* size of range starting at offset (page-aligned, in bytes) */
Alexandre Julliardcdce50f2008-11-05 12:24:05 +01001546 int committed; /* whether it is a committed range */
1547@END
1548
1549
1550/* Add a range to the committed pages in a file mapping */
1551@REQ(add_mapping_committed_range)
1552 obj_handle_t handle; /* handle to the mapping */
1553 file_pos_t offset; /* starting offset (page-aligned, in bytes) */
Alexandre Julliard29d97592008-12-17 19:25:49 +01001554 mem_size_t size; /* size to set (page-aligned, in bytes) or 0 if only retrieving */
Alexandre Julliardcdce50f2008-11-05 12:24:05 +01001555@END
1556
1557
Alexandre Julliarddb6e4542008-12-09 11:49:37 +01001558#define SNAP_PROCESS 0x00000001
1559#define SNAP_THREAD 0x00000002
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001560/* Create a snapshot */
1561@REQ(create_snapshot)
Alexandre Julliardf11d0a32005-12-09 12:09:44 +01001562 unsigned int attributes; /* object attributes */
Alexandre Julliarddb6e4542008-12-09 11:49:37 +01001563 unsigned int flags; /* snapshot flags (SNAP_*) */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001564@REPLY
Alexandre Julliard51885742002-05-30 20:12:58 +00001565 obj_handle_t handle; /* handle to the snapshot */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001566@END
1567
1568
1569/* Get the next process from a snapshot */
1570@REQ(next_process)
Alexandre Julliard51885742002-05-30 20:12:58 +00001571 obj_handle_t handle; /* handle to the snapshot */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001572 int reset; /* reset snapshot position? */
1573@REPLY
1574 int count; /* process usage count */
Alexandre Julliard54f22872002-10-03 19:54:57 +00001575 process_id_t pid; /* process id */
1576 process_id_t ppid; /* parent process id */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001577 int threads; /* number of threads */
1578 int priority; /* process priority */
Eric Pouech9fd54b22003-09-16 01:07:21 +00001579 int handles; /* number of handles */
Alexandre Julliardc30cefb2003-09-30 01:04:19 +00001580 VARARG(filename,unicode_str); /* file name of main exe */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001581@END
1582
1583
1584/* Get the next thread from a snapshot */
1585@REQ(next_thread)
Alexandre Julliard51885742002-05-30 20:12:58 +00001586 obj_handle_t handle; /* handle to the snapshot */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001587 int reset; /* reset snapshot position? */
1588@REPLY
1589 int count; /* thread usage count */
Alexandre Julliard54f22872002-10-03 19:54:57 +00001590 process_id_t pid; /* process id */
1591 thread_id_t tid; /* thread id */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001592 int base_pri; /* base priority */
1593 int delta_pri; /* delta priority */
1594@END
1595
1596
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001597/* Wait for a debug event */
1598@REQ(wait_debug_event)
1599 int get_handle; /* should we alloc a handle for waiting? */
1600@REPLY
Alexandre Julliard54f22872002-10-03 19:54:57 +00001601 process_id_t pid; /* process id */
1602 thread_id_t tid; /* thread id */
Alexandre Julliard51885742002-05-30 20:12:58 +00001603 obj_handle_t wait; /* wait handle if no event ready */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001604 VARARG(event,debug_event); /* debug event data */
1605@END
1606
1607
1608/* Queue an exception event */
1609@REQ(queue_exception_event)
Alexandre Julliard9f365e72009-01-02 20:12:46 +01001610 int first; /* first chance exception? */
1611 unsigned int code; /* exception code */
1612 unsigned int flags; /* exception flags */
1613 client_ptr_t record; /* exception record */
1614 client_ptr_t address; /* exception address */
1615 data_size_t len; /* size of parameters */
1616 VARARG(params,uints64,len);/* exception parameters */
1617 VARARG(context,context); /* thread context */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001618@REPLY
Alexandre Julliard51885742002-05-30 20:12:58 +00001619 obj_handle_t handle; /* handle to the queued event */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001620@END
1621
1622
1623/* Retrieve the status of an exception event */
1624@REQ(get_exception_status)
Alexandre Julliard51885742002-05-30 20:12:58 +00001625 obj_handle_t handle; /* handle to the queued event */
Alexandre Julliard9caa71e2001-11-30 18:46:42 +00001626@REPLY
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001627 VARARG(context,context); /* modified thread context */
1628@END
1629
1630
1631/* Send an output string to the debugger */
1632@REQ(output_debug_string)
Alexandre Julliard93737d52008-12-29 17:12:20 +01001633 data_size_t length; /* string length */
1634 client_ptr_t string; /* string to display (in debugged process address space) */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001635@END
1636
1637
1638/* Continue a debug event */
1639@REQ(continue_debug_event)
Alexandre Julliard54f22872002-10-03 19:54:57 +00001640 process_id_t pid; /* process id to continue */
1641 thread_id_t tid; /* thread id to continue */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001642 int status; /* continuation status */
1643@END
1644
1645
Eric Pouechfbccb382002-02-27 01:28:30 +00001646/* Start/stop debugging an existing process */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001647@REQ(debug_process)
Alexandre Julliard54f22872002-10-03 19:54:57 +00001648 process_id_t pid; /* id of the process to debug */
Eric Pouechfbccb382002-02-27 01:28:30 +00001649 int attach; /* 1=attaching / 0=detaching from the process */
1650@END
1651
1652
Alexandre Julliard3c4538c2002-02-27 01:55:02 +00001653/* Simulate a breakpoint in a process */
1654@REQ(debug_break)
Alexandre Julliard51885742002-05-30 20:12:58 +00001655 obj_handle_t handle; /* process handle */
Alexandre Julliard3c4538c2002-02-27 01:55:02 +00001656@REPLY
1657 int self; /* was it the caller itself? */
1658@END
1659
1660
Eric Pouechfbccb382002-02-27 01:28:30 +00001661/* Set debugger kill on exit flag */
1662@REQ(set_debugger_kill_on_exit)
1663 int kill_on_exit; /* 0=detach/1=kill debuggee when debugger dies */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001664@END
1665
1666
1667/* Read data from a process address space */
1668@REQ(read_process_memory)
Alexandre Julliard51885742002-05-30 20:12:58 +00001669 obj_handle_t handle; /* process handle */
Alexandre Julliard8e9c1562008-12-30 14:11:58 +01001670 client_ptr_t addr; /* addr to read from */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001671@REPLY
1672 VARARG(data,bytes); /* result data */
1673@END
1674
1675
1676/* Write data to a process address space */
1677@REQ(write_process_memory)
Alexandre Julliard51885742002-05-30 20:12:58 +00001678 obj_handle_t handle; /* process handle */
Alexandre Julliard8e9c1562008-12-30 14:11:58 +01001679 client_ptr_t addr; /* addr to write to */
Alexandre Julliard9caa71e2001-11-30 18:46:42 +00001680 VARARG(data,bytes); /* data to write */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001681@END
1682
1683
1684/* Create a registry key */
1685@REQ(create_key)
Alexandre Julliard51885742002-05-30 20:12:58 +00001686 obj_handle_t parent; /* handle to the parent key */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001687 unsigned int access; /* desired access rights */
Alexandre Julliard03b040c2005-12-09 14:52:04 +01001688 unsigned int attributes; /* object attributes */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001689 unsigned int options; /* creation options */
Alexandre Julliard0f273c12006-07-26 10:43:25 +02001690 data_size_t namelen; /* length of key name in bytes */
Alexandre Julliard9caa71e2001-11-30 18:46:42 +00001691 VARARG(name,unicode_str,namelen); /* key name */
1692 VARARG(class,unicode_str); /* class name */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001693@REPLY
Alexandre Julliard51885742002-05-30 20:12:58 +00001694 obj_handle_t hkey; /* handle to the created key */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001695 int created; /* has it been newly created? */
1696@END
1697
1698/* Open a registry key */
1699@REQ(open_key)
Alexandre Julliard51885742002-05-30 20:12:58 +00001700 obj_handle_t parent; /* handle to the parent key */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001701 unsigned int access; /* desired access rights */
Alexandre Julliard03b040c2005-12-09 14:52:04 +01001702 unsigned int attributes; /* object attributes */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001703 VARARG(name,unicode_str); /* key name */
1704@REPLY
Alexandre Julliard51885742002-05-30 20:12:58 +00001705 obj_handle_t hkey; /* handle to the open key */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001706@END
1707
1708
1709/* Delete a registry key */
1710@REQ(delete_key)
Alexandre Julliard51885742002-05-30 20:12:58 +00001711 obj_handle_t hkey; /* handle to the key */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001712@END
1713
1714
Mike Hearn43cb03b2004-01-03 00:38:30 +00001715/* Flush a registry key */
1716@REQ(flush_key)
1717 obj_handle_t hkey; /* handle to the key */
1718@END
1719
1720
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001721/* Enumerate registry subkeys */
1722@REQ(enum_key)
Alexandre Julliard51885742002-05-30 20:12:58 +00001723 obj_handle_t hkey; /* handle to registry key */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001724 int index; /* index of subkey (or -1 for current key) */
Alexandre Julliard9caa71e2001-11-30 18:46:42 +00001725 int info_class; /* requested information class */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001726@REPLY
1727 int subkeys; /* number of subkeys */
1728 int max_subkey; /* longest subkey name */
1729 int max_class; /* longest class name */
1730 int values; /* number of values */
1731 int max_value; /* longest value name */
1732 int max_data; /* longest value data */
Alexandre Julliard3343c402008-12-06 17:29:01 +01001733 timeout_t modif; /* last modification time */
Alexandre Julliard0f273c12006-07-26 10:43:25 +02001734 data_size_t total; /* total length needed for full name and class */
1735 data_size_t namelen; /* length of key name in bytes */
Alexandre Julliard9caa71e2001-11-30 18:46:42 +00001736 VARARG(name,unicode_str,namelen); /* key name */
1737 VARARG(class,unicode_str); /* class name */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001738@END
1739
1740
1741/* Set a value of a registry key */
1742@REQ(set_key_value)
Alexandre Julliard51885742002-05-30 20:12:58 +00001743 obj_handle_t hkey; /* handle to registry key */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001744 int type; /* value type */
Alexandre Julliard0f273c12006-07-26 10:43:25 +02001745 data_size_t namelen; /* length of value name in bytes */
Alexandre Julliard9caa71e2001-11-30 18:46:42 +00001746 VARARG(name,unicode_str,namelen); /* value name */
1747 VARARG(data,bytes); /* value data */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001748@END
1749
1750
1751/* Retrieve the value of a registry key */
1752@REQ(get_key_value)
Alexandre Julliard51885742002-05-30 20:12:58 +00001753 obj_handle_t hkey; /* handle to registry key */
Alexandre Julliard9caa71e2001-11-30 18:46:42 +00001754 VARARG(name,unicode_str); /* value name */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001755@REPLY
1756 int type; /* value type */
Alexandre Julliard0f273c12006-07-26 10:43:25 +02001757 data_size_t total; /* total length needed for data */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001758 VARARG(data,bytes); /* value data */
1759@END
1760
1761
1762/* Enumerate a value of a registry key */
1763@REQ(enum_key_value)
Alexandre Julliard51885742002-05-30 20:12:58 +00001764 obj_handle_t hkey; /* handle to registry key */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001765 int index; /* value index */
Alexandre Julliard9caa71e2001-11-30 18:46:42 +00001766 int info_class; /* requested information class */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001767@REPLY
1768 int type; /* value type */
Alexandre Julliard0f273c12006-07-26 10:43:25 +02001769 data_size_t total; /* total length needed for full name and data */
1770 data_size_t namelen; /* length of value name in bytes */
Alexandre Julliard9caa71e2001-11-30 18:46:42 +00001771 VARARG(name,unicode_str,namelen); /* value name */
1772 VARARG(data,bytes); /* value data */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001773@END
1774
1775
1776/* Delete a value of a registry key */
1777@REQ(delete_key_value)
Alexandre Julliard51885742002-05-30 20:12:58 +00001778 obj_handle_t hkey; /* handle to registry key */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001779 VARARG(name,unicode_str); /* value name */
1780@END
1781
1782
1783/* Load a registry branch from a file */
1784@REQ(load_registry)
Alexandre Julliard51885742002-05-30 20:12:58 +00001785 obj_handle_t hkey; /* root key to load to */
1786 obj_handle_t file; /* file to load from */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001787 VARARG(name,unicode_str); /* subkey name */
1788@END
1789
1790
Mike McCormack5ac945c2003-08-19 03:08:17 +00001791/* UnLoad a registry branch from a file */
1792@REQ(unload_registry)
1793 obj_handle_t hkey; /* root key to unload to */
1794@END
1795
1796
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001797/* Save a registry branch to a file */
1798@REQ(save_registry)
Alexandre Julliard51885742002-05-30 20:12:58 +00001799 obj_handle_t hkey; /* key to save */
1800 obj_handle_t file; /* file to save to */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001801@END
1802
1803
Alexandre Julliardc07ce052004-05-07 04:13:21 +00001804/* Add a registry key change notification */
Mike McCormack11f4b442002-11-25 02:47:32 +00001805@REQ(set_registry_notification)
1806 obj_handle_t hkey; /* key to watch for changes */
1807 obj_handle_t event; /* event to set */
1808 int subtree; /* should we watch the whole subtree? */
1809 unsigned int filter; /* things to watch */
1810@END
1811
1812
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001813/* Create a waitable timer */
1814@REQ(create_timer)
Eric Pouech44158dd2004-12-02 18:05:37 +00001815 unsigned int access; /* wanted access rights */
Vitaliy Margolena9960002005-10-27 18:30:37 +00001816 unsigned int attributes; /* object attributes */
Vitaliy Margolen7c5cb7a2005-12-02 16:05:54 +01001817 obj_handle_t rootdir; /* root directory */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001818 int manual; /* manual reset */
1819 VARARG(name,unicode_str); /* object name */
1820@REPLY
Alexandre Julliard51885742002-05-30 20:12:58 +00001821 obj_handle_t handle; /* handle to the timer */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001822@END
1823
1824
1825/* Open a waitable timer */
1826@REQ(open_timer)
1827 unsigned int access; /* wanted access rights */
Vitaliy Margolena9960002005-10-27 18:30:37 +00001828 unsigned int attributes; /* object attributes */
Vitaliy Margolen7c5cb7a2005-12-02 16:05:54 +01001829 obj_handle_t rootdir; /* root directory */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001830 VARARG(name,unicode_str); /* object name */
1831@REPLY
Alexandre Julliard51885742002-05-30 20:12:58 +00001832 obj_handle_t handle; /* handle to the timer */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001833@END
1834
1835/* Set a waitable timer */
1836@REQ(set_timer)
Alexandre Julliard51885742002-05-30 20:12:58 +00001837 obj_handle_t handle; /* handle to the timer */
Alexandre Julliardaaf477f2007-04-17 20:08:59 +02001838 timeout_t expire; /* next expiration absolute time */
Alexandre Julliard9b92a592008-12-29 17:43:01 +01001839 client_ptr_t callback; /* callback function */
1840 client_ptr_t arg; /* callback argument */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001841 int period; /* timer period in ms */
Eric Pouech4c591d42003-05-20 04:00:42 +00001842@REPLY
1843 int signaled; /* was the timer signaled before this call ? */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001844@END
1845
1846/* Cancel a waitable timer */
1847@REQ(cancel_timer)
Alexandre Julliard51885742002-05-30 20:12:58 +00001848 obj_handle_t handle; /* handle to the timer */
Eric Pouech4c591d42003-05-20 04:00:42 +00001849@REPLY
1850 int signaled; /* was the timer signaled before this calltime ? */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001851@END
1852
Robert Shearman7572b122004-12-13 21:10:58 +00001853/* Get information on a waitable timer */
1854@REQ(get_timer_info)
1855 obj_handle_t handle; /* handle to the timer */
1856@REPLY
Alexandre Julliardaaf477f2007-04-17 20:08:59 +02001857 timeout_t when; /* absolute time when the timer next expires */
Robert Shearman7572b122004-12-13 21:10:58 +00001858 int signaled; /* is the timer signaled? */
1859@END
1860
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001861
1862/* Retrieve the current context of a thread */
1863@REQ(get_thread_context)
Alexandre Julliard51885742002-05-30 20:12:58 +00001864 obj_handle_t handle; /* thread handle */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001865 unsigned int flags; /* context flags */
Alexandre Julliard73c72392005-11-02 20:54:12 +00001866 int suspend; /* if getting context during suspend */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001867@REPLY
Alexandre Julliard2878d992006-01-13 13:58:14 +01001868 int self; /* was it a handle to the current thread? */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001869 VARARG(context,context); /* thread context */
1870@END
1871
1872
1873/* Set the current context of a thread */
1874@REQ(set_thread_context)
Alexandre Julliard51885742002-05-30 20:12:58 +00001875 obj_handle_t handle; /* thread handle */
Alexandre Julliard73c72392005-11-02 20:54:12 +00001876 int suspend; /* if setting context during suspend */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001877 VARARG(context,context); /* thread context */
Alexandre Julliard2654be02006-01-11 20:20:32 +01001878@REPLY
1879 int self; /* was it a handle to the current thread? */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001880@END
1881
1882
1883/* Fetch a selector entry for a thread */
1884@REQ(get_selector_entry)
Alexandre Julliard51885742002-05-30 20:12:58 +00001885 obj_handle_t handle; /* thread handle */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001886 int entry; /* LDT entry */
1887@REPLY
1888 unsigned int base; /* selector base */
1889 unsigned int limit; /* selector limit */
1890 unsigned char flags; /* selector flags */
1891@END
1892
1893
1894/* Add an atom */
1895@REQ(add_atom)
Eric Poueche6267362005-05-10 15:15:50 +00001896 obj_handle_t table; /* which table to add atom to */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001897 VARARG(name,unicode_str); /* atom name */
1898@REPLY
Alexandre Julliardd8a8c112001-10-12 18:45:29 +00001899 atom_t atom; /* resulting atom */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001900@END
1901
1902
1903/* Delete an atom */
1904@REQ(delete_atom)
Eric Poueche6267362005-05-10 15:15:50 +00001905 obj_handle_t table; /* which table to delete atom from */
Alexandre Julliardd8a8c112001-10-12 18:45:29 +00001906 atom_t atom; /* atom handle */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001907@END
1908
1909
1910/* Find an atom */
1911@REQ(find_atom)
Eric Poueche6267362005-05-10 15:15:50 +00001912 obj_handle_t table; /* which table to find atom from */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001913 VARARG(name,unicode_str); /* atom name */
1914@REPLY
Alexandre Julliardd8a8c112001-10-12 18:45:29 +00001915 atom_t atom; /* atom handle */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001916@END
1917
1918
Eric Poueche6267362005-05-10 15:15:50 +00001919/* Get information about an atom */
1920@REQ(get_atom_information)
1921 obj_handle_t table; /* which table to find atom from */
Alexandre Julliardd8a8c112001-10-12 18:45:29 +00001922 atom_t atom; /* atom handle */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001923@REPLY
1924 int count; /* atom lock count */
Eric Poueche6267362005-05-10 15:15:50 +00001925 int pinned; /* whether the atom has been pinned */
Alexandre Julliard0f273c12006-07-26 10:43:25 +02001926 data_size_t total; /* actual length of atom name */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001927 VARARG(name,unicode_str); /* atom name */
1928@END
1929
1930
Eric Poueche6267362005-05-10 15:15:50 +00001931/* Set information about an atom */
1932@REQ(set_atom_information)
1933 obj_handle_t table; /* which table to find atom from */
1934 atom_t atom; /* atom handle */
1935 int pinned; /* whether to bump atom information */
1936@END
1937
1938
1939/* Empty an atom table */
1940@REQ(empty_atom_table)
1941 obj_handle_t table; /* which table to find atom from */
1942 int if_pinned; /* whether to delete pinned atoms */
1943@END
1944
1945
1946/* Init an atom table */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001947@REQ(init_atom_table)
Eric Poueche6267362005-05-10 15:15:50 +00001948 int entries; /* number of entries (only for local) */
1949@REPLY
1950 obj_handle_t table; /* handle to the atom table */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001951@END
1952
1953
1954/* Get the message queue of the current thread */
1955@REQ(get_msg_queue)
1956@REPLY
Alexandre Julliard51885742002-05-30 20:12:58 +00001957 obj_handle_t handle; /* handle to the queue */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001958@END
1959
1960
Alexandre Julliard0cb29f42007-04-04 18:02:01 +02001961/* Set the file descriptor associated to the current thread queue */
1962@REQ(set_queue_fd)
1963 obj_handle_t handle; /* handle to the file descriptor */
1964@END
1965
1966
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001967/* Set the current message queue wakeup mask */
1968@REQ(set_queue_mask)
1969 unsigned int wake_mask; /* wakeup bits mask */
1970 unsigned int changed_mask; /* changed bits mask */
1971 int skip_wait; /* will we skip waiting if signaled? */
1972@REPLY
1973 unsigned int wake_bits; /* current wake bits */
1974 unsigned int changed_bits; /* current changed bits */
1975@END
1976
1977
1978/* Get the current message queue status */
1979@REQ(get_queue_status)
1980 int clear; /* should we clear the change bits? */
1981@REPLY
1982 unsigned int wake_bits; /* wake bits */
1983 unsigned int changed_bits; /* changed bits since last time */
1984@END
1985
1986
Alexandre Julliardce40ef12006-07-26 11:48:25 +02001987/* Retrieve the process idle event */
1988@REQ(get_process_idle_event)
Alexandre Julliard51885742002-05-30 20:12:58 +00001989 obj_handle_t handle; /* process handle */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001990@REPLY
Alexandre Julliard51885742002-05-30 20:12:58 +00001991 obj_handle_t event; /* handle to idle event */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00001992@END
1993
1994
1995/* Send a message to a thread queue */
1996@REQ(send_message)
Alexandre Julliard54f22872002-10-03 19:54:57 +00001997 thread_id_t id; /* thread id */
Alexandre Julliardd253c582001-08-07 19:19:08 +00001998 int type; /* message type (see below) */
Alexandre Julliard09029b22003-07-11 04:09:42 +00001999 int flags; /* message flags (see below) */
Alexandre Julliard1a66d222001-08-28 18:44:52 +00002000 user_handle_t win; /* window handle */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00002001 unsigned int msg; /* message code */
Alexandre Julliard31282b32008-12-10 16:01:50 +01002002 lparam_t wparam; /* parameters */
2003 lparam_t lparam; /* parameters */
Alexandre Julliardaaf477f2007-04-17 20:08:59 +02002004 timeout_t timeout; /* timeout for reply */
Alexandre Julliard3ad97982006-10-04 20:25:42 +02002005 VARARG(data,message_data); /* message data for sent messages */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00002006@END
Alexandre Julliardd253c582001-08-07 19:19:08 +00002007
Robert Shearmana40ce392006-01-17 13:14:31 +01002008@REQ(post_quit_message)
2009 int exit_code; /* exit code to return */
2010@END
2011
Alexandre Julliardd253c582001-08-07 19:19:08 +00002012enum message_type
2013{
2014 MSG_ASCII, /* Ascii message (from SendMessageA) */
2015 MSG_UNICODE, /* Unicode message (from SendMessageW) */
2016 MSG_NOTIFY, /* notify message (from SendNotifyMessageW), always Unicode */
2017 MSG_CALLBACK, /* callback message (from SendMessageCallbackW), always Unicode */
Alexandre Julliard039e1312003-07-26 20:36:43 +00002018 MSG_CALLBACK_RESULT,/* result of a callback message */
Alexandre Julliardd253c582001-08-07 19:19:08 +00002019 MSG_OTHER_PROCESS, /* sent from other process, may include vararg data, always Unicode */
2020 MSG_POSTED, /* posted message (from PostMessageW), always Unicode */
Dmitry Timoshkov6dba0a72005-02-03 16:40:20 +00002021 MSG_HARDWARE, /* hardware message */
Alexandre Julliardc7efa292011-03-02 19:53:03 +01002022 MSG_WINEVENT, /* winevent message */
2023 MSG_HOOK_LL /* low-level hardware hook */
Alexandre Julliardd253c582001-08-07 19:19:08 +00002024};
Alexandre Julliard09029b22003-07-11 04:09:42 +00002025#define SEND_MSG_ABORT_IF_HUNG 0x01
Alexandre Julliard37ec9272001-07-19 00:35:37 +00002026
2027
Alexandre Julliardd3b30962006-08-09 16:45:26 +02002028/* Send a hardware message to a thread queue */
2029@REQ(send_hardware_message)
Alexandre Julliardd3b30962006-08-09 16:45:26 +02002030 user_handle_t win; /* window handle */
Alexandre Julliard02e30f52011-03-01 20:33:15 +01002031 hw_input_t input; /* input data */
2032 unsigned int flags; /* flags (see below) */
Alexandre Julliardc7efa292011-03-02 19:53:03 +01002033@REPLY
2034 int wait; /* do we need to wait for a reply? */
Alexandre Julliardd3b30962006-08-09 16:45:26 +02002035@END
Alexandre Julliard02e30f52011-03-01 20:33:15 +01002036#define SEND_HWMSG_INJECTED 0x01
Alexandre Julliardd3b30962006-08-09 16:45:26 +02002037
2038
Alexandre Julliard37ec9272001-07-19 00:35:37 +00002039/* Get a message from the current queue */
2040@REQ(get_message)
Alexandre Julliard89faee02007-02-21 15:21:05 +01002041 unsigned int flags; /* PM_* flags */
Alexandre Julliard1a66d222001-08-28 18:44:52 +00002042 user_handle_t get_win; /* window handle to get */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00002043 unsigned int get_first; /* first message code to get */
2044 unsigned int get_last; /* last message code to get */
Alexandre Julliard3e2f2a52005-04-20 13:03:59 +00002045 unsigned int hw_id; /* id of the previous hardware message (or 0) */
Alexandre Julliard28965402007-08-29 18:13:13 +02002046 unsigned int wake_mask; /* wakeup bits mask */
2047 unsigned int changed_mask; /* changed bits mask */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00002048@REPLY
Alexandre Julliard1a66d222001-08-28 18:44:52 +00002049 user_handle_t win; /* window handle */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00002050 unsigned int msg; /* message code */
Alexandre Julliard31282b32008-12-10 16:01:50 +01002051 lparam_t wparam; /* parameters */
2052 lparam_t lparam; /* parameters */
Alexandre Julliardd1d7b9f2008-12-24 11:59:09 +01002053 int type; /* message type */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00002054 unsigned int time; /* message time */
Alexandre Julliard63342352005-05-11 13:03:15 +00002055 unsigned int active_hooks; /* active hooks bitmap */
Alexandre Julliard0f273c12006-07-26 10:43:25 +02002056 data_size_t total; /* total size of extra data */
Alexandre Julliard59dc4562006-10-04 16:04:53 +02002057 VARARG(data,message_data); /* message data for sent messages */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00002058@END
Alexandre Julliard89faee02007-02-21 15:21:05 +01002059
Alexandre Julliard37ec9272001-07-19 00:35:37 +00002060
2061/* Reply to a sent message */
2062@REQ(reply_message)
Alexandre Julliard37ec9272001-07-19 00:35:37 +00002063 int remove; /* should we remove the message? */
Alexandre Julliard3cd817b2008-12-24 12:06:18 +01002064 lparam_t result; /* message result */
Alexandre Julliardd253c582001-08-07 19:19:08 +00002065 VARARG(data,bytes); /* message data for sent messages */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00002066@END
2067
2068
Alexandre Julliard0bc83772005-03-23 10:33:17 +00002069/* Accept the current hardware message */
2070@REQ(accept_hardware_message)
Alexandre Julliard3e2f2a52005-04-20 13:03:59 +00002071 unsigned int hw_id; /* id of the hardware message */
Alexandre Julliard0bc83772005-03-23 10:33:17 +00002072 int remove; /* should we remove the message? */
2073 user_handle_t new_win; /* new destination window for current message */
2074@END
2075
2076
Alexandre Julliard37ec9272001-07-19 00:35:37 +00002077/* Retrieve the reply for the last message sent */
2078@REQ(get_message_reply)
2079 int cancel; /* cancel message if not ready? */
2080@REPLY
Alexandre Julliard31282b32008-12-10 16:01:50 +01002081 lparam_t result; /* message result */
Alexandre Julliardd253c582001-08-07 19:19:08 +00002082 VARARG(data,bytes); /* message data for sent messages */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00002083@END
2084
2085
Alexandre Julliard37ec9272001-07-19 00:35:37 +00002086/* Set a window timer */
2087@REQ(set_win_timer)
Alexandre Julliard1a66d222001-08-28 18:44:52 +00002088 user_handle_t win; /* window handle */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00002089 unsigned int msg; /* message to post */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00002090 unsigned int rate; /* timer rate in ms */
Alexandre Julliard31282b32008-12-10 16:01:50 +01002091 lparam_t id; /* timer id */
2092 lparam_t lparam; /* message lparam (callback proc) */
Alexandre Julliardff986a52004-11-29 18:08:18 +00002093@REPLY
Alexandre Julliard31282b32008-12-10 16:01:50 +01002094 lparam_t id; /* timer id */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00002095@END
2096
2097
2098/* Kill a window timer */
2099@REQ(kill_win_timer)
Alexandre Julliard1a66d222001-08-28 18:44:52 +00002100 user_handle_t win; /* window handle */
Alexandre Julliard31282b32008-12-10 16:01:50 +01002101 lparam_t id; /* timer id */
Alexandre Julliard3cd817b2008-12-24 12:06:18 +01002102 unsigned int msg; /* message to post */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00002103@END
2104
2105
Dmitry Timoshkove735e192007-12-28 10:59:13 +08002106/* check if the thread owning the window is hung */
2107@REQ(is_window_hung)
2108 user_handle_t win; /* window handle */
2109@REPLY
2110 int is_hung;
2111@END
2112
2113
Alexandre Julliard37ec9272001-07-19 00:35:37 +00002114/* Retrieve info about a serial port */
2115@REQ(get_serial_info)
Alexandre Julliard51885742002-05-30 20:12:58 +00002116 obj_handle_t handle; /* handle to comm port */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00002117@REPLY
2118 unsigned int readinterval;
2119 unsigned int readconst;
2120 unsigned int readmult;
2121 unsigned int writeconst;
2122 unsigned int writemult;
2123 unsigned int eventmask;
Alexandre Julliard37ec9272001-07-19 00:35:37 +00002124@END
2125
2126
2127/* Set info about a serial port */
2128@REQ(set_serial_info)
Alexandre Julliard51885742002-05-30 20:12:58 +00002129 obj_handle_t handle; /* handle to comm port */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00002130 int flags; /* bitmask to set values (see below) */
2131 unsigned int readinterval;
2132 unsigned int readconst;
2133 unsigned int readmult;
2134 unsigned int writeconst;
2135 unsigned int writemult;
2136 unsigned int eventmask;
Alexandre Julliard37ec9272001-07-19 00:35:37 +00002137@END
2138#define SERIALINFO_SET_TIMEOUTS 0x01
2139#define SERIALINFO_SET_MASK 0x02
Alexandre Julliard37ec9272001-07-19 00:35:37 +00002140
2141
Eric Pouech46344472005-01-14 19:54:38 +00002142/* Create an async I/O */
Mike McCormack6f011c02001-12-20 00:07:05 +00002143@REQ(register_async)
Eric Pouech46344472005-01-14 19:54:38 +00002144 int type; /* type of queue to look after */
Alexandre Julliard111610c2007-03-20 20:21:12 +01002145 async_data_t async; /* async I/O parameters */
Alexandre Julliard8c8c6652008-12-31 15:14:29 +01002146 int count; /* count - usually # of bytes to be read/written */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00002147@END
2148#define ASYNC_TYPE_READ 0x01
2149#define ASYNC_TYPE_WRITE 0x02
2150#define ASYNC_TYPE_WAIT 0x03
2151
2152
Eric Pouech46344472005-01-14 19:54:38 +00002153/* Cancel all async op on a fd */
2154@REQ(cancel_async)
2155 obj_handle_t handle; /* handle to comm port, socket or file */
Mike Kaplinskiyb05774e2009-08-09 00:08:27 -04002156 client_ptr_t iosb; /* I/O status block (NULL=all) */
2157 int only_thread; /* cancel matching this thread */
Eric Pouech46344472005-01-14 19:54:38 +00002158@END
2159
2160
Alexandre Julliard63571432007-04-16 14:45:03 +02002161/* Perform an ioctl on a file */
2162@REQ(ioctl)
Alexandre Julliard737148c2007-04-17 22:06:13 +02002163 ioctl_code_t code; /* ioctl code */
Alexandre Julliard63571432007-04-16 14:45:03 +02002164 async_data_t async; /* async I/O parameters */
Alexandre Julliard7ec95c52008-12-30 20:37:20 +01002165 int blocking; /* whether it's a blocking ioctl */
Alexandre Julliard63571432007-04-16 14:45:03 +02002166 VARARG(in_data,bytes); /* ioctl input data */
2167@REPLY
Alexandre Julliardfd59e152007-05-03 17:43:18 +02002168 obj_handle_t wait; /* handle to wait on for blocking ioctl */
2169 unsigned int options; /* device open options */
Alexandre Julliard63571432007-04-16 14:45:03 +02002170 VARARG(out_data,bytes); /* ioctl output data */
2171@END
2172
2173
Alexandre Julliardaafcfe72007-05-08 20:45:44 +02002174/* Retrieve results of an async ioctl */
2175@REQ(get_ioctl_result)
2176 obj_handle_t handle; /* handle to the device */
Alexandre Julliard6db20102008-12-30 21:09:41 +01002177 client_ptr_t user_arg; /* user arg used to identify the request */
Alexandre Julliardaafcfe72007-05-08 20:45:44 +02002178@REPLY
2179 VARARG(out_data,bytes); /* ioctl output data */
2180@END
2181
2182
Alexandre Julliard37ec9272001-07-19 00:35:37 +00002183/* Create a named pipe */
2184@REQ(create_named_pipe)
Eric Poueche21aa6a2005-09-26 11:02:45 +00002185 unsigned int access;
Vitaliy Margolena9960002005-10-27 18:30:37 +00002186 unsigned int attributes; /* object attributes */
Vitaliy Margolenbabfa792005-12-05 13:09:35 +01002187 obj_handle_t rootdir; /* root directory */
Eric Pouech5a2591d2005-04-18 14:57:04 +00002188 unsigned int options;
Alexandre Julliard37ec9272001-07-19 00:35:37 +00002189 unsigned int maxinstances;
2190 unsigned int outsize;
2191 unsigned int insize;
Alexandre Julliardaaf477f2007-04-17 20:08:59 +02002192 timeout_t timeout;
Alexandre Julliard8c8c6652008-12-31 15:14:29 +01002193 unsigned int flags;
Alexandre Julliard8ae57612001-12-31 22:26:51 +00002194 VARARG(name,unicode_str); /* pipe name */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00002195@REPLY
Alexandre Julliard51885742002-05-30 20:12:58 +00002196 obj_handle_t handle; /* handle to the pipe */
Alexandre Julliard37ec9272001-07-19 00:35:37 +00002197@END
2198
Eric Pouech5a2591d2005-04-18 14:57:04 +00002199/* flags in create_named_pipe and get_named_pipe_info */
2200#define NAMED_PIPE_MESSAGE_STREAM_WRITE 0x0001
2201#define NAMED_PIPE_MESSAGE_STREAM_READ 0x0002
2202#define NAMED_PIPE_NONBLOCKING_MODE 0x0004
Eric Pouech1d6e2592006-05-26 12:10:11 +02002203#define NAMED_PIPE_SERVER_END 0x8000
Alexandre Julliard37ec9272001-07-19 00:35:37 +00002204
Mike McCormackbf554572001-08-23 23:29:20 +00002205
Mike McCormackf2e7ce72001-08-27 19:03:42 +00002206@REQ(get_named_pipe_info)
Alexandre Julliard51885742002-05-30 20:12:58 +00002207 obj_handle_t handle;
Mike McCormackf2e7ce72001-08-27 19:03:42 +00002208@REPLY
2209 unsigned int flags;
2210 unsigned int maxinstances;
Eric Pouech1d6e2592006-05-26 12:10:11 +02002211 unsigned int instances;
Mike McCormackf2e7ce72001-08-27 19:03:42 +00002212 unsigned int outsize;
2213 unsigned int insize;
2214@END
2215
Alexandre Julliard1a66d222001-08-28 18:44:52 +00002216
Alexandre Julliard1a66d222001-08-28 18:44:52 +00002217/* Create a window */
2218@REQ(create_window)
Alexandre Julliarda09da0c2001-09-21 21:08:40 +00002219 user_handle_t parent; /* parent window */
2220 user_handle_t owner; /* owner window */
Alexandre Julliardd8a8c112001-10-12 18:45:29 +00002221 atom_t atom; /* class atom */
Alexandre Julliardcb2788e2008-12-29 16:41:44 +01002222 mod_handle_t instance; /* module instance */
Alexandre Julliard1fc461f2007-11-02 15:16:25 +01002223 VARARG(class,unicode_str); /* class name */
Alexandre Julliard1a66d222001-08-28 18:44:52 +00002224@REPLY
Alexandre Julliarda09da0c2001-09-21 21:08:40 +00002225 user_handle_t handle; /* created window */
Alexandre Julliard4be3d4c2006-03-06 15:00:37 +01002226 user_handle_t parent; /* full handle of parent */
2227 user_handle_t owner; /* full handle of owner */
Alexandre Julliardbd13ab82003-12-11 05:34:53 +00002228 int extra; /* number of extra bytes */
Alexandre Julliard0cd3ff62008-12-29 17:24:33 +01002229 client_ptr_t class_ptr; /* pointer to class in client address space */
Alexandre Julliard1a66d222001-08-28 18:44:52 +00002230@END
2231
2232
Alexandre Julliard1a66d222001-08-28 18:44:52 +00002233/* Destroy a window */
2234@REQ(destroy_window)
2235 user_handle_t handle; /* handle to the window */
2236@END
2237
2238
Alexandre Julliard8c518802005-07-08 11:37:40 +00002239/* Retrieve the desktop window for the current thread */
2240@REQ(get_desktop_window)
Alexandre Julliard1a4f6e52006-03-07 11:42:35 +01002241 int force; /* force creation if it doesn't exist */
Alexandre Julliard8c518802005-07-08 11:37:40 +00002242@REPLY
Alexandre Julliard6b36e212008-06-25 14:26:14 +02002243 user_handle_t top_window; /* handle to the desktop window */
2244 user_handle_t msg_window; /* handle to the top-level HWND_MESSAGE parent */
Alexandre Julliard8c518802005-07-08 11:37:40 +00002245@END
2246
2247
Alexandre Julliardddc33172001-10-22 19:08:33 +00002248/* Set a window owner */
2249@REQ(set_window_owner)
2250 user_handle_t handle; /* handle to the window */
2251 user_handle_t owner; /* new owner */
2252@REPLY
2253 user_handle_t full_owner; /* full handle of new owner */
Alexandre Julliard7dafa612002-09-25 00:21:56 +00002254 user_handle_t prev_owner; /* full handle of previous owner */
Alexandre Julliardddc33172001-10-22 19:08:33 +00002255@END
2256
2257
Alexandre Julliard1a66d222001-08-28 18:44:52 +00002258/* Get information from a window handle */
2259@REQ(get_window_info)
2260 user_handle_t handle; /* handle to the window */
2261@REPLY
2262 user_handle_t full_handle; /* full 32-bit handle */
Alexandre Julliard5030bda2002-10-11 23:41:06 +00002263 user_handle_t last_active; /* last active popup */
Alexandre Julliard54f22872002-10-03 19:54:57 +00002264 process_id_t pid; /* process owning the window */
2265 thread_id_t tid; /* thread owning the window */
Alexandre Julliardddc33172001-10-22 19:08:33 +00002266 atom_t atom; /* class atom */
Alexandre Julliard0c914e42008-12-30 23:17:52 +01002267 int is_unicode; /* ANSI or unicode */
Alexandre Julliard1a66d222001-08-28 18:44:52 +00002268@END
Alexandre Julliarda09da0c2001-09-21 21:08:40 +00002269
2270
Alexandre Julliardddc33172001-10-22 19:08:33 +00002271/* Set some information in a window */
2272@REQ(set_window_info)
Alexandre Julliardf2c4e092008-12-29 16:47:51 +01002273 unsigned short flags; /* flags for fields to set (see below) */
2274 short int is_unicode; /* ANSI or unicode */
Alexandre Julliarde0dcf4f2006-10-04 21:41:32 +02002275 user_handle_t handle; /* handle to the window */
Alexandre Julliardddc33172001-10-22 19:08:33 +00002276 unsigned int style; /* window style */
2277 unsigned int ex_style; /* window extended style */
2278 unsigned int id; /* window id */
Alexandre Julliardcb2788e2008-12-29 16:41:44 +01002279 mod_handle_t instance; /* creator instance */
Alexandre Julliard31282b32008-12-10 16:01:50 +01002280 lparam_t user_data; /* user-specific data */
Alexandre Julliard97903d22003-11-26 22:15:41 +00002281 int extra_offset; /* offset to set in extra bytes */
Alexandre Julliard0f273c12006-07-26 10:43:25 +02002282 data_size_t extra_size; /* size to set in extra bytes */
Alexandre Julliard31282b32008-12-10 16:01:50 +01002283 lparam_t extra_value; /* value to set in extra bytes */
Alexandre Julliardddc33172001-10-22 19:08:33 +00002284@REPLY
2285 unsigned int old_style; /* old window style */
2286 unsigned int old_ex_style; /* old window extended style */
Alexandre Julliardcb2788e2008-12-29 16:41:44 +01002287 mod_handle_t old_instance; /* old creator instance */
Alexandre Julliard31282b32008-12-10 16:01:50 +01002288 lparam_t old_user_data; /* old user-specific data */
2289 lparam_t old_extra_value; /* old value in extra bytes */
Alexandre Julliardf2c4e092008-12-29 16:47:51 +01002290 unsigned int old_id; /* old window id */
Alexandre Julliardddc33172001-10-22 19:08:33 +00002291@END
2292#define SET_WIN_STYLE 0x01
2293#define SET_WIN_EXSTYLE 0x02
2294#define SET_WIN_ID 0x04
2295#define SET_WIN_INSTANCE 0x08
2296#define SET_WIN_USERDATA 0x10
Alexandre Julliardebf12432003-12-10 01:34:51 +00002297#define SET_WIN_EXTRA 0x20
Dmitry Timoshkov86af38c2005-07-07 12:02:31 +00002298#define SET_WIN_UNICODE 0x40
Alexandre Julliardddc33172001-10-22 19:08:33 +00002299
2300
Alexandre Julliard4d32a472005-03-25 10:38:56 +00002301/* Set the parent of a window */
2302@REQ(set_parent)
2303 user_handle_t handle; /* handle to the window */
2304 user_handle_t parent; /* handle to the parent */
2305@REPLY
2306 user_handle_t old_parent; /* old parent window */
2307 user_handle_t full_parent; /* full handle of new parent */
2308@END
2309
2310
Alexandre Julliarda09da0c2001-09-21 21:08:40 +00002311/* Get a list of the window parents, up to the root of the tree */
2312@REQ(get_window_parents)
2313 user_handle_t handle; /* handle to the window */
2314@REPLY
2315 int count; /* total count of parents */
2316 VARARG(parents,user_handles); /* parent handles */
2317@END
2318
2319
2320/* Get a list of the window children */
2321@REQ(get_window_children)
Alexandre Julliard34fe91b2008-03-18 15:17:40 +01002322 obj_handle_t desktop; /* handle to desktop */
Alexandre Julliarda09da0c2001-09-21 21:08:40 +00002323 user_handle_t parent; /* parent window */
Alexandre Julliardd8a8c112001-10-12 18:45:29 +00002324 atom_t atom; /* class atom for the listed children */
Alexandre Julliard54f22872002-10-03 19:54:57 +00002325 thread_id_t tid; /* thread owning the listed children */
Alexandre Julliarda54a9902007-11-02 15:26:49 +01002326 VARARG(class,unicode_str); /* class name */
Alexandre Julliarda09da0c2001-09-21 21:08:40 +00002327@REPLY
2328 int count; /* total count of children */
Alexandre Julliard7695d692001-09-24 01:19:59 +00002329 VARARG(children,user_handles); /* children handles */
Alexandre Julliarda09da0c2001-09-21 21:08:40 +00002330@END
2331
2332
Alexandre Julliard4616dcb2004-07-20 22:17:38 +00002333/* Get a list of the window children that contain a given point */
2334@REQ(get_window_children_from_point)
2335 user_handle_t parent; /* parent window */
2336 int x; /* point in parent coordinates */
2337 int y;
2338@REPLY
2339 int count; /* total count of children */
2340 VARARG(children,user_handles); /* children handles */
2341@END
2342
2343
Alexandre Julliarda09da0c2001-09-21 21:08:40 +00002344/* Get window tree information from a window handle */
2345@REQ(get_window_tree)
2346 user_handle_t handle; /* handle to the window */
2347@REPLY
2348 user_handle_t parent; /* parent window */
2349 user_handle_t owner; /* owner window */
2350 user_handle_t next_sibling; /* next sibling in Z-order */
2351 user_handle_t prev_sibling; /* prev sibling in Z-order */
2352 user_handle_t first_sibling; /* first sibling in Z-order */
2353 user_handle_t last_sibling; /* last sibling in Z-order */
2354 user_handle_t first_child; /* first child */
2355 user_handle_t last_child; /* last child */
2356@END
Alexandre Julliard7a2017d2001-10-12 19:10:26 +00002357
Alexandre Julliard5defa492004-12-07 17:31:53 +00002358/* Set the position and Z order of a window */
2359@REQ(set_window_pos)
Alexandre Julliarde0dcf4f2006-10-04 21:41:32 +02002360 unsigned int flags; /* SWP_* flags */
Alexandre Julliard0d509652001-10-16 21:55:37 +00002361 user_handle_t handle; /* handle to the window */
Alexandre Julliard5defa492004-12-07 17:31:53 +00002362 user_handle_t previous; /* previous window in Z order */
Alexandre Julliardbc20ff52010-09-23 15:47:46 +02002363 rectangle_t window; /* window rectangle (in parent coords) */
2364 rectangle_t client; /* client rectangle (in parent coords) */
Alexandre Julliardfcd68592010-10-07 14:43:29 +02002365 VARARG(valid,rectangles); /* valid rectangles from WM_NCCALCSIZE (in parent coords) */
Alexandre Julliard5defa492004-12-07 17:31:53 +00002366@REPLY
2367 unsigned int new_style; /* new window style */
Alexandre Julliard917f2882007-10-31 17:51:05 +01002368 unsigned int new_ex_style; /* new window extended style */
Alexandre Julliard0d509652001-10-16 21:55:37 +00002369@END
2370
2371
2372/* Get the window and client rectangles of a window */
2373@REQ(get_window_rectangles)
2374 user_handle_t handle; /* handle to the window */
Alexandre Julliard7295b672010-09-07 14:31:30 +02002375 int relative; /* coords relative to (see below) */
Alexandre Julliard0d509652001-10-16 21:55:37 +00002376@REPLY
2377 rectangle_t window; /* window rectangle */
Alexandre Julliardf7560902005-03-17 19:10:41 +00002378 rectangle_t visible; /* visible part of the window rectangle */
Alexandre Julliard0d509652001-10-16 21:55:37 +00002379 rectangle_t client; /* client rectangle */
2380@END
Alexandre Julliard7295b672010-09-07 14:31:30 +02002381enum coords_relative
2382{
2383 COORDS_CLIENT, /* relative to client area */
2384 COORDS_WINDOW, /* relative to whole window area */
2385 COORDS_PARENT, /* relative to parent's client area */
2386 COORDS_SCREEN /* relative to screen origin */
2387};
Alexandre Julliard0d509652001-10-16 21:55:37 +00002388
2389
Alexandre Julliard805bdc52001-11-13 22:23:48 +00002390/* Get the window text */
2391@REQ(get_window_text)
2392 user_handle_t handle; /* handle to the window */
2393@REPLY
2394 VARARG(text,unicode_str); /* window text */
2395@END
2396
2397
2398/* Set the window text */
2399@REQ(set_window_text)
2400 user_handle_t handle; /* handle to the window */
2401 VARARG(text,unicode_str); /* window text */
2402@END
2403
2404
Alexandre Julliard0d509652001-10-16 21:55:37 +00002405/* Get the coordinates offset between two windows */
2406@REQ(get_windows_offset)
2407 user_handle_t from; /* handle to the first window */
2408 user_handle_t to; /* handle to the second window */
2409@REPLY
2410 int x; /* x coordinate offset */
2411 int y; /* y coordinate offset */
Alexandre Julliard57023242010-09-22 20:27:52 +02002412 int mirror; /* whether to mirror the x coordinate */
Alexandre Julliard0d509652001-10-16 21:55:37 +00002413@END
2414
Alexandre Julliard7a2017d2001-10-12 19:10:26 +00002415
Alexandre Julliarde8d86b72004-06-23 20:44:58 +00002416/* Get the visible region of a window */
2417@REQ(get_visible_region)
2418 user_handle_t window; /* handle to the window */
Alexandre Julliarde8d86b72004-06-23 20:44:58 +00002419 unsigned int flags; /* DCX flags */
2420@REPLY
Alexandre Julliardbc75f2f2005-03-31 15:36:57 +00002421 user_handle_t top_win; /* top window to clip against */
Ulrich Czekalla4bdf4342006-12-07 10:43:59 -05002422 rectangle_t top_rect; /* top window visible rect with screen coords */
2423 rectangle_t win_rect; /* window rect in screen coords */
Alexandre Julliard0f273c12006-07-26 10:43:25 +02002424 data_size_t total_size; /* total size of the resulting region */
Alexandre Julliardbc75f2f2005-03-31 15:36:57 +00002425 VARARG(region,rectangles); /* list of rectangles for the region (in screen coords) */
Alexandre Julliarde8d86b72004-06-23 20:44:58 +00002426@END
2427
2428
Alexandre Julliard618a7e52004-06-29 03:53:25 +00002429/* Get the window region */
2430@REQ(get_window_region)
2431 user_handle_t window; /* handle to the window */
2432@REPLY
Alexandre Julliard0f273c12006-07-26 10:43:25 +02002433 data_size_t total_size; /* total size of the resulting region */
Alexandre Julliardd56ac062010-09-27 20:46:41 +02002434 VARARG(region,rectangles); /* list of rectangles for the region (in window coords) */
Alexandre Julliard618a7e52004-06-29 03:53:25 +00002435@END
2436
2437
2438/* Set the window region */
2439@REQ(set_window_region)
2440 user_handle_t window; /* handle to the window */
Alexandre Julliard1767b452007-03-05 16:43:09 +01002441 int redraw; /* redraw the window? */
Alexandre Julliardd56ac062010-09-27 20:46:41 +02002442 VARARG(region,rectangles); /* list of rectangles for the region (in window coords) */
Alexandre Julliard618a7e52004-06-29 03:53:25 +00002443@END
2444
2445
Alexandre Julliard5defa492004-12-07 17:31:53 +00002446/* Get the window update region */
2447@REQ(get_update_region)
2448 user_handle_t window; /* handle to the window */
Alexandre Julliarddb412aa2005-05-31 13:37:16 +00002449 user_handle_t from_child; /* child to start searching from */
Alexandre Julliard5defa492004-12-07 17:31:53 +00002450 unsigned int flags; /* update flags (see below) */
2451@REPLY
2452 user_handle_t child; /* child to repaint (or window itself) */
2453 unsigned int flags; /* resulting update flags (see below) */
Alexandre Julliard0f273c12006-07-26 10:43:25 +02002454 data_size_t total_size; /* total size of the resulting region */
Alexandre Julliardbc20ff52010-09-23 15:47:46 +02002455 VARARG(region,rectangles); /* list of rectangles for the region (in screen coords) */
Alexandre Julliard5defa492004-12-07 17:31:53 +00002456@END
2457#define UPDATE_NONCLIENT 0x01 /* get region for repainting non-client area */
2458#define UPDATE_ERASE 0x02 /* get region for erasing client area */
2459#define UPDATE_PAINT 0x04 /* get region for painting client area */
2460#define UPDATE_INTERNALPAINT 0x08 /* get region if internal paint is pending */
2461#define UPDATE_ALLCHILDREN 0x10 /* force repaint of all children */
2462#define UPDATE_NOCHILDREN 0x20 /* don't try to repaint any children */
2463#define UPDATE_NOREGION 0x40 /* don't return a region, only the flags */
Alexandre Julliarddf13cee2007-08-27 16:41:08 +02002464#define UPDATE_DELAYED_ERASE 0x80 /* still needs erase after BeginPaint */
Alexandre Julliard5defa492004-12-07 17:31:53 +00002465
2466
Alexandre Julliard5054c792005-03-21 12:37:00 +00002467/* Update the z order of a window so that a given rectangle is fully visible */
2468@REQ(update_window_zorder)
2469 user_handle_t window; /* handle to the window */
Alexandre Julliard6ee45212010-09-27 21:12:49 +02002470 rectangle_t rect; /* rectangle that must be visible (in client coords) */
Alexandre Julliard5054c792005-03-21 12:37:00 +00002471@END
2472
2473
Alexandre Julliard5defa492004-12-07 17:31:53 +00002474/* Mark parts of a window as needing a redraw */
2475@REQ(redraw_window)
2476 user_handle_t window; /* handle to the window */
2477 unsigned int flags; /* RDW_* flags */
Alexandre Julliardd56ac062010-09-27 20:46:41 +02002478 VARARG(region,rectangles); /* list of rectangles for the region (in window coords) */
Alexandre Julliard5defa492004-12-07 17:31:53 +00002479@END
2480
2481
Alexandre Julliard7a2017d2001-10-12 19:10:26 +00002482/* Set a window property */
2483@REQ(set_window_property)
2484 user_handle_t window; /* handle to the window */
Alexandre Julliard517b2f62008-12-10 16:21:32 +01002485 lparam_t data; /* data to store */
Alexandre Julliard3cd817b2008-12-24 12:06:18 +01002486 atom_t atom; /* property atom (if no name specified) */
Alexandre Julliard9e73cdd2005-05-11 19:01:10 +00002487 VARARG(name,unicode_str); /* property name */
Alexandre Julliard7a2017d2001-10-12 19:10:26 +00002488@END
2489
2490
2491/* Remove a window property */
2492@REQ(remove_window_property)
2493 user_handle_t window; /* handle to the window */
Alexandre Julliard9e73cdd2005-05-11 19:01:10 +00002494 atom_t atom; /* property atom (if no name specified) */
2495 VARARG(name,unicode_str); /* property name */
Alexandre Julliard7a2017d2001-10-12 19:10:26 +00002496@REPLY
Alexandre Julliard517b2f62008-12-10 16:21:32 +01002497 lparam_t data; /* data stored in property */
Alexandre Julliard7a2017d2001-10-12 19:10:26 +00002498@END
2499
2500
2501/* Get a window property */
2502@REQ(get_window_property)
2503 user_handle_t window; /* handle to the window */
Alexandre Julliard9e73cdd2005-05-11 19:01:10 +00002504 atom_t atom; /* property atom (if no name specified) */
2505 VARARG(name,unicode_str); /* property name */
Alexandre Julliard7a2017d2001-10-12 19:10:26 +00002506@REPLY
Alexandre Julliard517b2f62008-12-10 16:21:32 +01002507 lparam_t data; /* data stored in property */
Alexandre Julliard7a2017d2001-10-12 19:10:26 +00002508@END
2509
2510
2511/* Get the list of properties of a window */
2512@REQ(get_window_properties)
2513 user_handle_t window; /* handle to the window */
2514@REPLY
Alexandre Julliard9caa71e2001-11-30 18:46:42 +00002515 int total; /* total number of properties */
Alexandre Julliard7a2017d2001-10-12 19:10:26 +00002516 VARARG(props,properties); /* list of properties */
2517@END
Alexandre Julliardab5063b2002-10-11 18:50:15 +00002518
2519
Alexandre Julliard1bf96e02005-06-08 18:44:50 +00002520/* Create a window station */
2521@REQ(create_winstation)
2522 unsigned int flags; /* window station flags */
2523 unsigned int access; /* wanted access rights */
Vitaliy Margolen83ef91c2005-11-21 12:05:38 +00002524 unsigned int attributes; /* object attributes */
Alexandre Julliard1bf96e02005-06-08 18:44:50 +00002525 VARARG(name,unicode_str); /* object name */
2526@REPLY
2527 obj_handle_t handle; /* handle to the window station */
2528@END
2529
2530
2531/* Open a handle to a window station */
2532@REQ(open_winstation)
2533 unsigned int access; /* wanted access rights */
Vitaliy Margolen83ef91c2005-11-21 12:05:38 +00002534 unsigned int attributes; /* object attributes */
Alexandre Julliard1bf96e02005-06-08 18:44:50 +00002535 VARARG(name,unicode_str); /* object name */
2536@REPLY
2537 obj_handle_t handle; /* handle to the window station */
2538@END
2539
2540
2541/* Close a window station */
2542@REQ(close_winstation)
2543 obj_handle_t handle; /* handle to the window station */
2544@END
2545
2546
2547/* Get the process current window station */
2548@REQ(get_process_winstation)
2549@REPLY
2550 obj_handle_t handle; /* handle to the window station */
2551@END
2552
2553
2554/* Set the process current window station */
2555@REQ(set_process_winstation)
2556 obj_handle_t handle; /* handle to the window station */
2557@END
2558
2559
Alexandre Julliardd30b5742007-12-05 16:45:32 +01002560/* Enumerate window stations */
2561@REQ(enum_winstation)
2562 unsigned int index; /* current index */
2563@REPLY
2564 unsigned int next; /* next index */
2565 VARARG(name,unicode_str); /* window station name */
2566@END
2567
2568
Alexandre Julliard1bf96e02005-06-08 18:44:50 +00002569/* Create a desktop */
2570@REQ(create_desktop)
2571 unsigned int flags; /* desktop flags */
2572 unsigned int access; /* wanted access rights */
Vitaliy Margolen83ef91c2005-11-21 12:05:38 +00002573 unsigned int attributes; /* object attributes */
Alexandre Julliard1bf96e02005-06-08 18:44:50 +00002574 VARARG(name,unicode_str); /* object name */
2575@REPLY
2576 obj_handle_t handle; /* handle to the desktop */
2577@END
2578
2579
2580/* Open a handle to a desktop */
2581@REQ(open_desktop)
Maarten Lankhorst70a64952008-04-01 12:15:55 -07002582 obj_handle_t winsta; /* window station to open (null allowed) */
Alexandre Julliard1bf96e02005-06-08 18:44:50 +00002583 unsigned int flags; /* desktop flags */
2584 unsigned int access; /* wanted access rights */
Vitaliy Margolen83ef91c2005-11-21 12:05:38 +00002585 unsigned int attributes; /* object attributes */
Alexandre Julliard1bf96e02005-06-08 18:44:50 +00002586 VARARG(name,unicode_str); /* object name */
2587@REPLY
2588 obj_handle_t handle; /* handle to the desktop */
2589@END
2590
2591
2592/* Close a desktop */
2593@REQ(close_desktop)
2594 obj_handle_t handle; /* handle to the desktop */
2595@END
2596
2597
2598/* Get the thread current desktop */
2599@REQ(get_thread_desktop)
2600 thread_id_t tid; /* thread id */
2601@REPLY
2602 obj_handle_t handle; /* handle to the desktop */
2603@END
2604
2605
2606/* Set the thread current desktop */
2607@REQ(set_thread_desktop)
2608 obj_handle_t handle; /* handle to the desktop */
2609@END
2610
2611
Alexandre Julliardd30b5742007-12-05 16:45:32 +01002612/* Enumerate desktops */
2613@REQ(enum_desktop)
2614 obj_handle_t winstation; /* handle to the window station */
2615 unsigned int index; /* current index */
2616@REPLY
2617 unsigned int next; /* next index */
2618 VARARG(name,unicode_str); /* window station name */
2619@END
2620
2621
Alexandre Julliard1bf96e02005-06-08 18:44:50 +00002622/* Get/set information about a user object (window station or desktop) */
2623@REQ(set_user_object_info)
2624 obj_handle_t handle; /* handle to the object */
2625 unsigned int flags; /* information to set */
2626 unsigned int obj_flags; /* new object flags */
2627@REPLY
2628 int is_desktop; /* is object a desktop? */
2629 unsigned int old_obj_flags; /* old object flags */
2630 VARARG(name,unicode_str); /* object name */
2631@END
2632#define SET_USER_OBJECT_FLAGS 1
2633
2634
Alexandre Julliardab5063b2002-10-11 18:50:15 +00002635/* Attach (or detach) thread inputs */
2636@REQ(attach_thread_input)
2637 thread_id_t tid_from; /* thread to be attached */
2638 thread_id_t tid_to; /* thread to which tid_from should be attached */
2639 int attach; /* is it an attach? */
2640@END
2641
2642
2643/* Get input data for a given thread */
2644@REQ(get_thread_input)
2645 thread_id_t tid; /* id of thread */
2646@REPLY
2647 user_handle_t focus; /* handle to the focus window */
2648 user_handle_t capture; /* handle to the capture window */
2649 user_handle_t active; /* handle to the active window */
2650 user_handle_t foreground; /* handle to the global foreground window */
2651 user_handle_t menu_owner; /* handle to the menu owner */
2652 user_handle_t move_size; /* handle to the moving/resizing window */
2653 user_handle_t caret; /* handle to the caret window */
Alexandre Julliardc5459822010-05-11 11:21:03 +02002654 user_handle_t cursor; /* handle to the cursor */
2655 int show_count; /* cursor show count */
Alexandre Julliardab5063b2002-10-11 18:50:15 +00002656 rectangle_t rect; /* caret rectangle */
2657@END
Alexandre Julliard5030bda2002-10-11 23:41:06 +00002658
Mike McCormackabe70f72005-04-28 12:04:14 +00002659
2660/* Get the time of the last input event */
2661@REQ(get_last_input_time)
2662@REPLY
2663 unsigned int time;
2664@END
2665
2666
Alexandre Julliard8ba666f2003-01-08 19:56:31 +00002667/* Retrieve queue keyboard state for a given thread */
2668@REQ(get_key_state)
2669 thread_id_t tid; /* id of thread */
2670 int key; /* optional key code or -1 */
2671@REPLY
2672 unsigned char state; /* state of specified key */
2673 VARARG(keystate,bytes); /* state array for all the keys */
2674@END
2675
2676/* Set queue keyboard state for a given thread */
2677@REQ(set_key_state)
2678 thread_id_t tid; /* id of thread */
2679 VARARG(keystate,bytes); /* state array for all the keys */
2680@END
2681
Alexandre Julliard5030bda2002-10-11 23:41:06 +00002682/* Set the system foreground window */
2683@REQ(set_foreground_window)
2684 user_handle_t handle; /* handle to the foreground window */
2685@REPLY
2686 user_handle_t previous; /* handle to the previous foreground window */
2687 int send_msg_old; /* whether we have to send a msg to the old window */
2688 int send_msg_new; /* whether we have to send a msg to the new window */
2689@END
2690
2691/* Set the current thread focus window */
2692@REQ(set_focus_window)
2693 user_handle_t handle; /* handle to the focus window */
2694@REPLY
2695 user_handle_t previous; /* handle to the previous focus window */
2696@END
2697
2698/* Set the current thread active window */
2699@REQ(set_active_window)
2700 user_handle_t handle; /* handle to the active window */
2701@REPLY
2702 user_handle_t previous; /* handle to the previous active window */
2703@END
Alexandre Julliarda9e8f592002-10-12 01:24:37 +00002704
2705/* Set the current thread capture window */
2706@REQ(set_capture_window)
2707 user_handle_t handle; /* handle to the capture window */
2708 unsigned int flags; /* capture flags (see below) */
2709@REPLY
2710 user_handle_t previous; /* handle to the previous capture window */
2711 user_handle_t full_handle; /* full 32-bit handle of new capture window */
2712@END
2713#define CAPTURE_MENU 0x01 /* capture is for a menu */
2714#define CAPTURE_MOVESIZE 0x02 /* capture is for moving/resizing */
Alexandre Julliard11e35232002-10-17 01:24:33 +00002715
2716
2717/* Set the current thread caret window */
2718@REQ(set_caret_window)
2719 user_handle_t handle; /* handle to the caret window */
2720 int width; /* caret width */
2721 int height; /* caret height */
2722@REPLY
2723 user_handle_t previous; /* handle to the previous caret window */
2724 rectangle_t old_rect; /* previous caret rectangle */
2725 int old_hide; /* previous hide count */
2726 int old_state; /* previous caret state (1=on, 0=off) */
2727@END
2728
2729
2730/* Set the current thread caret information */
2731@REQ(set_caret_info)
2732 unsigned int flags; /* caret flags (see below) */
2733 user_handle_t handle; /* handle to the caret window */
2734 int x; /* caret x position */
2735 int y; /* caret y position */
2736 int hide; /* increment for hide count (can be negative to show it) */
2737 int state; /* caret state (1=on, 0=off, -1=toggle current state) */
2738@REPLY
2739 user_handle_t full_handle; /* handle to the current caret window */
2740 rectangle_t old_rect; /* previous caret rectangle */
2741 int old_hide; /* previous hide count */
2742 int old_state; /* previous caret state (1=on, 0=off) */
2743@END
2744#define SET_CARET_POS 0x01 /* set the caret position from x,y */
2745#define SET_CARET_HIDE 0x02 /* increment the caret hide count */
2746#define SET_CARET_STATE 0x04 /* set the caret on/off state */
Alexandre Julliard02861352002-10-29 00:41:42 +00002747
2748
2749/* Set a window hook */
2750@REQ(set_hook)
2751 int id; /* id of the hook */
Dmitry Timoshkov6dba0a72005-02-03 16:40:20 +00002752 process_id_t pid; /* id of process to set the hook into */
Alexandre Julliard02861352002-10-29 00:41:42 +00002753 thread_id_t tid; /* id of thread to set the hook into */
Dmitry Timoshkov6dba0a72005-02-03 16:40:20 +00002754 int event_min;
2755 int event_max;
Alexandre Julliardcc55fd32008-12-29 17:35:35 +01002756 client_ptr_t proc; /* hook procedure */
Dmitry Timoshkov6dba0a72005-02-03 16:40:20 +00002757 int flags;
Alexandre Julliard02861352002-10-29 00:41:42 +00002758 int unicode; /* is it a unicode hook? */
Alexandre Julliard14e68ba2002-11-20 19:54:32 +00002759 VARARG(module,unicode_str); /* module name */
Alexandre Julliard02861352002-10-29 00:41:42 +00002760@REPLY
2761 user_handle_t handle; /* handle to the hook */
Alexandre Julliard63342352005-05-11 13:03:15 +00002762 unsigned int active_hooks; /* active hooks bitmap */
Alexandre Julliard02861352002-10-29 00:41:42 +00002763@END
2764
2765
2766/* Remove a window hook */
2767@REQ(remove_hook)
2768 user_handle_t handle; /* handle to the hook */
Alexandre Julliardcc55fd32008-12-29 17:35:35 +01002769 client_ptr_t proc; /* hook procedure if handle is 0 */
Alexandre Julliard02861352002-10-29 00:41:42 +00002770 int id; /* id of the hook if handle is 0 */
Alexandre Julliard63342352005-05-11 13:03:15 +00002771@REPLY
2772 unsigned int active_hooks; /* active hooks bitmap */
Alexandre Julliard02861352002-10-29 00:41:42 +00002773@END
2774
2775
2776/* Start calling a hook chain */
2777@REQ(start_hook_chain)
2778 int id; /* id of the hook */
Dmitry Timoshkov6dba0a72005-02-03 16:40:20 +00002779 int event; /* signalled event */
2780 user_handle_t window; /* handle to the event window */
2781 int object_id; /* object id for out of context winevent */
2782 int child_id; /* child id for out of context winevent */
Alexandre Julliard02861352002-10-29 00:41:42 +00002783@REPLY
2784 user_handle_t handle; /* handle to the next hook */
Alexandre Julliardca3ac8f2003-07-11 21:55:58 +00002785 process_id_t pid; /* process id for low-level keyboard/mouse hooks */
2786 thread_id_t tid; /* thread id for low-level keyboard/mouse hooks */
Alexandre Julliard02861352002-10-29 00:41:42 +00002787 int unicode; /* is it a unicode hook? */
Alexandre Julliardcc55fd32008-12-29 17:35:35 +01002788 client_ptr_t proc; /* hook procedure */
Alexandre Julliard63342352005-05-11 13:03:15 +00002789 unsigned int active_hooks; /* active hooks bitmap */
Alexandre Julliard14e68ba2002-11-20 19:54:32 +00002790 VARARG(module,unicode_str); /* module name */
Alexandre Julliard02861352002-10-29 00:41:42 +00002791@END
2792
2793
2794/* Finished calling a hook chain */
2795@REQ(finish_hook_chain)
2796 int id; /* id of the hook */
2797@END
2798
2799
Alexandre Julliard2f80fcd2006-10-05 14:05:48 +02002800/* Get the hook information */
2801@REQ(get_hook_info)
Alexandre Julliard02861352002-10-29 00:41:42 +00002802 user_handle_t handle; /* handle to the current hook */
Alexandre Julliard2f80fcd2006-10-05 14:05:48 +02002803 int get_next; /* do we want info about current or next hook? */
Dmitry Timoshkov6dba0a72005-02-03 16:40:20 +00002804 int event; /* signalled event */
2805 user_handle_t window; /* handle to the event window */
2806 int object_id; /* object id for out of context winevent */
2807 int child_id; /* child id for out of context winevent */
Alexandre Julliard02861352002-10-29 00:41:42 +00002808@REPLY
Alexandre Julliard2f80fcd2006-10-05 14:05:48 +02002809 user_handle_t handle; /* handle to the hook */
2810 int id; /* id of the hook */
Alexandre Julliardca3ac8f2003-07-11 21:55:58 +00002811 process_id_t pid; /* process id for low-level keyboard/mouse hooks */
2812 thread_id_t tid; /* thread id for low-level keyboard/mouse hooks */
Alexandre Julliardcc55fd32008-12-29 17:35:35 +01002813 client_ptr_t proc; /* hook procedure */
Alexandre Julliard533f5192006-10-05 14:04:25 +02002814 int unicode; /* is it a unicode hook? */
Alexandre Julliard14e68ba2002-11-20 19:54:32 +00002815 VARARG(module,unicode_str); /* module name */
Alexandre Julliard02861352002-10-29 00:41:42 +00002816@END
Ulrich Czekallab2df5f92003-06-23 23:02:02 +00002817
2818
Alexandre Julliardbfce1512003-12-10 04:08:06 +00002819/* Create a window class */
2820@REQ(create_class)
2821 int local; /* is it a local class? */
2822 atom_t atom; /* class atom */
2823 unsigned int style; /* class style */
Alexandre Julliardcb2788e2008-12-29 16:41:44 +01002824 mod_handle_t instance; /* module instance */
Alexandre Julliardbfce1512003-12-10 04:08:06 +00002825 int extra; /* number of extra class bytes */
2826 int win_extra; /* number of window extra bytes */
Alexandre Julliard0cd3ff62008-12-29 17:24:33 +01002827 client_ptr_t client_ptr; /* pointer to class in client address space */
Alexandre Julliard0762d982007-11-01 13:02:01 +01002828 VARARG(name,unicode_str); /* class name */
2829@REPLY
2830 atom_t atom; /* resulting class atom */
Alexandre Julliardbfce1512003-12-10 04:08:06 +00002831@END
2832
2833
2834/* Destroy a window class */
2835@REQ(destroy_class)
2836 atom_t atom; /* class atom */
Alexandre Julliardcb2788e2008-12-29 16:41:44 +01002837 mod_handle_t instance; /* module instance */
Alexandre Julliardb9b940f2007-11-01 15:28:30 +01002838 VARARG(name,unicode_str); /* class name */
Alexandre Julliardbd13ab82003-12-11 05:34:53 +00002839@REPLY
Alexandre Julliard0cd3ff62008-12-29 17:24:33 +01002840 client_ptr_t client_ptr; /* pointer to class in client address space */
Alexandre Julliardbfce1512003-12-10 04:08:06 +00002841@END
2842
2843
2844/* Set some information in a class */
2845@REQ(set_class_info)
2846 user_handle_t window; /* handle to the window */
2847 unsigned int flags; /* flags for info to set (see below) */
2848 atom_t atom; /* class atom */
2849 unsigned int style; /* class style */
2850 int win_extra; /* number of window extra bytes */
Alexandre Julliardcb2788e2008-12-29 16:41:44 +01002851 mod_handle_t instance; /* module instance */
Alexandre Julliardbfce1512003-12-10 04:08:06 +00002852 int extra_offset; /* offset to set in extra bytes */
Alexandre Julliard0f273c12006-07-26 10:43:25 +02002853 data_size_t extra_size; /* size to set in extra bytes */
Alexandre Julliard31282b32008-12-10 16:01:50 +01002854 lparam_t extra_value; /* value to set in extra bytes */
Alexandre Julliardbfce1512003-12-10 04:08:06 +00002855@REPLY
2856 atom_t old_atom; /* previous class atom */
2857 unsigned int old_style; /* previous class style */
2858 int old_extra; /* previous number of class extra bytes */
2859 int old_win_extra; /* previous number of window extra bytes */
Alexandre Julliardcb2788e2008-12-29 16:41:44 +01002860 mod_handle_t old_instance; /* previous module instance */
Alexandre Julliard31282b32008-12-10 16:01:50 +01002861 lparam_t old_extra_value; /* old value in extra bytes */
Alexandre Julliardbfce1512003-12-10 04:08:06 +00002862@END
2863#define SET_CLASS_ATOM 0x0001
2864#define SET_CLASS_STYLE 0x0002
2865#define SET_CLASS_WINEXTRA 0x0004
2866#define SET_CLASS_INSTANCE 0x0008
2867#define SET_CLASS_EXTRA 0x0010
2868
2869
Ulrich Czekallab2df5f92003-06-23 23:02:02 +00002870/* Set/get clipboard information */
2871@REQ(set_clipboard_info)
2872 unsigned int flags; /* flags for fields to set (see below) */
2873 user_handle_t clipboard; /* clipboard window */
2874 user_handle_t owner; /* clipboard owner */
2875 user_handle_t viewer; /* first clipboard viewer */
2876 unsigned int seqno; /* change sequence number */
2877@REPLY
2878 unsigned int flags; /* status flags (see below) */
2879 user_handle_t old_clipboard; /* old clipboard window */
2880 user_handle_t old_owner; /* old clipboard owner */
2881 user_handle_t old_viewer; /* old clipboard viewer */
2882 unsigned int seqno; /* current sequence number */
2883@END
2884
2885#define SET_CB_OPEN 0x001
2886#define SET_CB_OWNER 0x002
2887#define SET_CB_VIEWER 0x004
2888#define SET_CB_SEQNO 0x008
2889#define SET_CB_RELOWNER 0x010
2890#define SET_CB_CLOSE 0x020
2891#define CB_OPEN 0x040
2892#define CB_OWNER 0x080
Ulrich Czekalla50679092005-03-07 19:31:46 +00002893#define CB_PROCESS 0x100
Mike McCormack36cd6f52003-07-24 00:07:00 +00002894
2895
2896/* Open a security token */
2897@REQ(open_token)
2898 obj_handle_t handle; /* handle to the thread or process */
Alexandre Julliard836d07c2005-12-09 12:17:19 +01002899 unsigned int access; /* access rights to the new token */
2900 unsigned int attributes;/* object attributes */
Mike McCormack36cd6f52003-07-24 00:07:00 +00002901 unsigned int flags; /* flags (see below) */
2902@REPLY
2903 obj_handle_t token; /* handle to the token */
2904@END
2905#define OPEN_TOKEN_THREAD 1
2906#define OPEN_TOKEN_AS_SELF 2
Alexandre Julliard8d174d32003-10-07 03:40:23 +00002907
2908
2909/* Set/get the global windows */
2910@REQ(set_global_windows)
2911 unsigned int flags; /* flags for fields to set (see below) */
2912 user_handle_t shell_window; /* handle to the new shell window */
2913 user_handle_t shell_listview; /* handle to the new shell listview window */
2914 user_handle_t progman_window; /* handle to the new program manager window */
2915 user_handle_t taskman_window; /* handle to the new task manager window */
2916@REPLY
2917 user_handle_t old_shell_window; /* handle to the shell window */
2918 user_handle_t old_shell_listview; /* handle to the shell listview window */
2919 user_handle_t old_progman_window; /* handle to the new program manager window */
2920 user_handle_t old_taskman_window; /* handle to the new task manager window */
2921@END
2922#define SET_GLOBAL_SHELL_WINDOWS 0x01 /* set both main shell and listview windows */
2923#define SET_GLOBAL_PROGMAN_WINDOW 0x02
2924#define SET_GLOBAL_TASKMAN_WINDOW 0x04
Robert Shearmanb0f02b22005-02-11 11:52:06 +00002925
2926/* Adjust the privileges held by a token */
2927@REQ(adjust_token_privileges)
2928 obj_handle_t handle; /* handle to the token */
2929 int disable_all; /* disable all privileges? */
2930 int get_modified_state; /* get modified privileges? */
2931 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges to enable/disable/remove */
2932@REPLY
2933 unsigned int len; /* total length in bytes required to store token privileges */
2934 VARARG(privileges,LUID_AND_ATTRIBUTES); /* modified privileges */
2935@END
2936
2937/* Retrieves the set of privileges held by or available to a token */
2938@REQ(get_token_privileges)
2939 obj_handle_t handle; /* handle to the token */
2940@REPLY
2941 unsigned int len; /* total length in bytes required to store token privileges */
2942 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges held by or available to a token */
2943@END
2944
Robert Shearmand2ea92d2005-04-22 21:17:15 +00002945/* Check the token has the required privileges */
2946@REQ(check_token_privileges)
2947 obj_handle_t handle; /* handle to the token */
2948 int all_required; /* are all the privileges required for the check to succeed? */
2949 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges to check */
2950@REPLY
2951 int has_privileges; /* does the token have the required privileges? */
2952 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges held by or available to a token */
2953@END
2954
Robert Shearmanb0f02b22005-02-11 11:52:06 +00002955@REQ(duplicate_token)
Alexandre Julliard836d07c2005-12-09 12:17:19 +01002956 obj_handle_t handle; /* handle to the token to duplicate */
2957 unsigned int access; /* access rights to the new token */
2958 unsigned int attributes; /* object attributes */
2959 int primary; /* is the new token to be a primary one? */
Robert Shearmanb0f02b22005-02-11 11:52:06 +00002960 int impersonation_level; /* impersonation level of the new token */
2961@REPLY
2962 obj_handle_t new_handle; /* duplicated handle */
2963@END
Mike McCormack2ab6a772005-03-30 19:02:15 +00002964
Robert Shearman4ad93412005-05-24 12:32:18 +00002965@REQ(access_check)
2966 obj_handle_t handle; /* handle to the token */
2967 unsigned int desired_access; /* desired access to the object */
2968 unsigned int mapping_read; /* mapping from generic read to specific rights */
2969 unsigned int mapping_write; /* mapping from generic write to specific rights */
2970 unsigned int mapping_execute; /* mapping from generic execute to specific rights */
2971 unsigned int mapping_all; /* mapping from generic all to specific rights */
2972 VARARG(sd,security_descriptor); /* security descriptor to check */
2973@REPLY
2974 unsigned int access_granted; /* access rights actually granted */
2975 unsigned int access_status; /* was access granted? */
2976 unsigned int privileges_len; /* length needed to store privileges */
2977 VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges used during access check */
2978@END
Mike McCormack2ab6a772005-03-30 19:02:15 +00002979
Rob Shearmanbd569162009-11-16 20:11:06 +00002980@REQ(get_token_sid)
Robert Shearman91eaea52005-07-18 13:22:55 +00002981 obj_handle_t handle; /* handle to the token */
Rob Shearmanbd569162009-11-16 20:11:06 +00002982 unsigned int which_sid; /* which SID to retrieve from the token */
Robert Shearman91eaea52005-07-18 13:22:55 +00002983@REPLY
Rob Shearmanbd569162009-11-16 20:11:06 +00002984 data_size_t sid_len; /* length needed to store sid */
2985 VARARG(sid,SID); /* the sid specified by which_sid from the token */
Robert Shearman91eaea52005-07-18 13:22:55 +00002986@END
2987
Robert Shearman3396a662006-05-13 16:58:19 +01002988@REQ(get_token_groups)
2989 obj_handle_t handle; /* handle to the token */
2990@REPLY
Alexandre Julliard0f273c12006-07-26 10:43:25 +02002991 data_size_t user_len; /* length needed to store user */
Rob Shearmanbd569162009-11-16 20:11:06 +00002992 VARARG(user,token_groups); /* groups the token's user belongs to */
Robert Shearman3396a662006-05-13 16:58:19 +01002993@END
2994
Hans Leidekker24af6f32009-04-21 09:53:16 +02002995@REQ(get_token_default_dacl)
2996 obj_handle_t handle; /* handle to the token */
2997@REPLY
2998 data_size_t acl_len; /* length needed to store access control list */
2999 VARARG(acl,ACL); /* access control list */
3000@END
3001
3002@REQ(set_token_default_dacl)
3003 obj_handle_t handle; /* handle to the token */
3004 VARARG(acl,ACL); /* default dacl to set */
3005@END
3006
Vitaliy Margolenb0e9d7e2007-02-07 21:43:11 -07003007@REQ(set_security_object)
3008 obj_handle_t handle; /* handle to the object */
3009 unsigned int security_info; /* which parts of security descriptor to set */
3010 VARARG(sd,security_descriptor); /* security descriptor to set */
3011@END
3012
Rob Shearman5356bfd2007-10-02 15:55:13 +01003013@REQ(get_security_object)
3014 obj_handle_t handle; /* handle to the object */
3015 unsigned int security_info; /* which parts of security descriptor to get */
3016@REPLY
3017 unsigned int sd_len; /* buffer size needed for sd */
3018 VARARG(sd,security_descriptor); /* retrieved security descriptor */
3019@END
3020
Mike McCormack2ab6a772005-03-30 19:02:15 +00003021/* Create a mailslot */
3022@REQ(create_mailslot)
Vitaliy Margolena9960002005-10-27 18:30:37 +00003023 unsigned int access; /* wanted access rights */
3024 unsigned int attributes; /* object attributes */
Vitaliy Margolencf21d4d2005-12-05 13:30:26 +01003025 obj_handle_t rootdir; /* root directory */
Alexandre Julliardaaf477f2007-04-17 20:08:59 +02003026 timeout_t read_timeout;
Alexandre Julliard8c8c6652008-12-31 15:14:29 +01003027 unsigned int max_msgsize;
Mike McCormack2ab6a772005-03-30 19:02:15 +00003028 VARARG(name,unicode_str); /* mailslot name */
3029@REPLY
3030 obj_handle_t handle; /* handle to the mailslot */
3031@END
3032
3033
Mike McCormack2ab6a772005-03-30 19:02:15 +00003034/* Set mailslot information */
3035@REQ(set_mailslot_info)
3036 obj_handle_t handle; /* handle to the mailslot */
Alexandre Julliard8c8c6652008-12-31 15:14:29 +01003037 timeout_t read_timeout;
Mike McCormack2ab6a772005-03-30 19:02:15 +00003038 unsigned int flags;
Mike McCormack2ab6a772005-03-30 19:02:15 +00003039@REPLY
Alexandre Julliardaaf477f2007-04-17 20:08:59 +02003040 timeout_t read_timeout;
Alexandre Julliard8c8c6652008-12-31 15:14:29 +01003041 unsigned int max_msgsize;
Mike McCormack2ab6a772005-03-30 19:02:15 +00003042@END
3043#define MAILSLOT_SET_READ_TIMEOUT 1
Vitaliy Margolen3c6bdcc2005-11-29 17:21:05 +01003044
3045
3046/* Create a directory object */
3047@REQ(create_directory)
3048 unsigned int access; /* access flags */
3049 unsigned int attributes; /* object attributes */
3050 obj_handle_t rootdir; /* root directory */
3051 VARARG(directory_name,unicode_str); /* Directory name */
3052@REPLY
3053 obj_handle_t handle; /* handle to the directory */
3054@END
3055
3056
3057/* Open a directory object */
3058@REQ(open_directory)
3059 unsigned int access; /* access flags */
3060 unsigned int attributes; /* object attributes */
3061 obj_handle_t rootdir; /* root directory */
3062 VARARG(directory_name,unicode_str); /* Directory name */
3063@REPLY
3064 obj_handle_t handle; /* handle to the directory */
3065@END
Vitaliy Margolen80444df2005-11-30 19:22:57 +01003066
3067
Alexandre Julliarda5e38b32007-12-05 16:57:41 +01003068/* Get a directory entry by index */
3069@REQ(get_directory_entry)
3070 obj_handle_t handle; /* handle to the directory */
3071 unsigned int index; /* entry index */
3072@REPLY
Alexandre Julliard5c377882008-12-06 17:29:31 +01003073 data_size_t name_len; /* length of the entry name in bytes */
Alexandre Julliarda5e38b32007-12-05 16:57:41 +01003074 VARARG(name,unicode_str,name_len); /* entry name */
3075 VARARG(type,unicode_str); /* entry type */
3076@END
3077
3078
Vitaliy Margolen80444df2005-11-30 19:22:57 +01003079/* Create a symbolic link object */
3080@REQ(create_symlink)
3081 unsigned int access; /* access flags */
3082 unsigned int attributes; /* object attributes */
3083 obj_handle_t rootdir; /* root directory */
Alexandre Julliard0f273c12006-07-26 10:43:25 +02003084 data_size_t name_len; /* length of the symlink name in bytes */
Vitaliy Margolen80444df2005-11-30 19:22:57 +01003085 VARARG(name,unicode_str,name_len); /* symlink name */
3086 VARARG(target_name,unicode_str); /* target name */
3087@REPLY
3088 obj_handle_t handle; /* handle to the symlink */
3089@END
3090
3091
3092/* Open a symbolic link object */
3093@REQ(open_symlink)
3094 unsigned int access; /* access flags */
3095 unsigned int attributes; /* object attributes */
3096 obj_handle_t rootdir; /* root directory */
3097 VARARG(name,unicode_str); /* symlink name */
3098@REPLY
3099 obj_handle_t handle; /* handle to the symlink */
3100@END
3101
3102
3103/* Query a symbolic link object */
3104@REQ(query_symlink)
3105 obj_handle_t handle; /* handle to the symlink */
3106@REPLY
Alexandre Julliard4c1f36c2010-06-30 16:11:03 +02003107 data_size_t total; /* total needed size for name */
Vitaliy Margolen80444df2005-11-30 19:22:57 +01003108 VARARG(target_name,unicode_str); /* target name */
3109@END
Vitaliy Margolenbae75022007-01-24 23:43:04 -07003110
3111
3112/* Query basic object information */
3113@REQ(get_object_info)
3114 obj_handle_t handle; /* handle to the object */
3115@REPLY
3116 unsigned int access; /* granted access mask */
3117 unsigned int ref_count; /* object ref count */
Alexandre Julliard658dae92010-01-08 13:01:50 +01003118 data_size_t total; /* total needed size for name */
3119 VARARG(name,unicode_str); /* object name */
Vitaliy Margolenbae75022007-01-24 23:43:04 -07003120@END
Rob Shearmand342d142007-02-21 17:10:45 +00003121
Alexandre Julliardba715792008-10-20 16:21:06 +02003122
3123/* Unlink a named object */
3124@REQ(unlink_object)
3125 obj_handle_t handle; /* handle to the object */
3126@END
3127
3128
Rob Shearmand342d142007-02-21 17:10:45 +00003129/* Query the impersonation level of an impersonation token */
3130@REQ(get_token_impersonation_level)
3131 obj_handle_t handle; /* handle to the object */
3132@REPLY
3133 int impersonation_level; /* impersonation level of the impersonation token */
3134@END
Juan Langc2cb2962007-03-06 16:33:26 -08003135
3136/* Allocate a locally-unique identifier */
3137@REQ(allocate_locally_unique_id)
3138@REPLY
3139 luid_t luid;
3140@END
Alexandre Julliardb43dc152007-05-08 20:28:37 +02003141
3142
3143/* Create a device manager */
3144@REQ(create_device_manager)
3145 unsigned int access; /* wanted access rights */
3146 unsigned int attributes; /* object attributes */
3147@REPLY
3148 obj_handle_t handle; /* handle to the device */
3149@END
3150
3151
3152/* Create a device */
3153@REQ(create_device)
3154 unsigned int access; /* wanted access rights */
3155 unsigned int attributes; /* object attributes */
3156 obj_handle_t rootdir; /* root directory */
Alexandre Julliard923310a2008-12-29 17:28:40 +01003157 client_ptr_t user_ptr; /* opaque ptr for use by client */
Alexandre Julliard8c8c6652008-12-31 15:14:29 +01003158 obj_handle_t manager; /* device manager */
Alexandre Julliardb43dc152007-05-08 20:28:37 +02003159 VARARG(name,unicode_str); /* object name */
3160@REPLY
3161 obj_handle_t handle; /* handle to the device */
3162@END
3163
3164
3165/* Delete a device */
3166@REQ(delete_device)
3167 obj_handle_t handle; /* handle to the device */
3168@END
Alexandre Julliard78b75102007-05-08 20:40:26 +02003169
3170
3171/* Retrieve the next pending device ioctl request */
3172@REQ(get_next_device_request)
3173 obj_handle_t manager; /* handle to the device manager */
3174 obj_handle_t prev; /* handle to the previous ioctl */
3175 unsigned int status; /* status of the previous ioctl */
3176 VARARG(prev_data,bytes); /* output data of the previous ioctl */
3177@REPLY
3178 obj_handle_t next; /* handle to the next ioctl */
3179 ioctl_code_t code; /* ioctl code */
Alexandre Julliard923310a2008-12-29 17:28:40 +01003180 client_ptr_t user_ptr; /* opaque ptr for the device */
Alexandre Julliard78b75102007-05-08 20:40:26 +02003181 data_size_t in_size; /* total needed input size */
3182 data_size_t out_size; /* needed output size */
3183 VARARG(next_data,bytes); /* input data of the next ioctl */
3184@END
Alexandre Julliard156b2052007-06-06 20:33:13 +02003185
3186
3187/* Make the current process a system process */
3188@REQ(make_process_system)
3189@REPLY
3190 obj_handle_t event; /* event signaled when all user processes have exited */
3191@END
Rob Shearman3f431a02007-09-13 16:47:56 +01003192
3193
3194/* Get detailed fixed-size information about a token */
3195@REQ(get_token_statistics)
3196 obj_handle_t handle; /* handle to the object */
3197@REPLY
3198 luid_t token_id; /* locally-unique identifier of the token */
3199 luid_t modified_id; /* locally-unique identifier of the modified version of the token */
3200 int primary; /* is the token primary or impersonation? */
3201 int impersonation_level; /* level of impersonation */
3202 int group_count; /* the number of groups the token is a member of */
3203 int privilege_count; /* the number of privileges the token has */
3204@END
Andrey Turkin47758242007-09-18 00:00:45 +04003205
3206
3207/* Create I/O completion port */
3208@REQ(create_completion)
3209 unsigned int access; /* desired access to a port */
3210 unsigned int attributes; /* object attributes */
3211 unsigned int concurrent; /* max number of concurrent active threads */
3212 obj_handle_t rootdir; /* root directory */
3213 VARARG(filename,string); /* port name */
3214@REPLY
3215 obj_handle_t handle; /* port handle */
3216@END
3217
3218
3219/* Open I/O completion port */
3220@REQ(open_completion)
3221 unsigned int access; /* desired access to a port */
3222 unsigned int attributes; /* object attributes */
3223 obj_handle_t rootdir; /* root directory */
3224 VARARG(filename,string); /* port name */
3225@REPLY
3226 obj_handle_t handle; /* port handle */
3227@END
3228
3229
3230/* add completion to completion port */
3231@REQ(add_completion)
3232 obj_handle_t handle; /* port handle */
Alexandre Julliarddc7f1702008-12-15 13:29:38 +01003233 apc_param_t ckey; /* completion key */
3234 apc_param_t cvalue; /* completion value */
Alexandre Julliardf6fa72d2008-12-15 13:30:25 +01003235 unsigned int information; /* IO_STATUS_BLOCK Information */
Andrey Turkin47758242007-09-18 00:00:45 +04003236 unsigned int status; /* completion result */
3237@END
3238
3239
3240/* get completion from completion port queue */
3241@REQ(remove_completion)
3242 obj_handle_t handle; /* port handle */
3243@REPLY
Alexandre Julliarddc7f1702008-12-15 13:29:38 +01003244 apc_param_t ckey; /* completion key */
3245 apc_param_t cvalue; /* completion value */
Alexandre Julliardf6fa72d2008-12-15 13:30:25 +01003246 unsigned int information; /* IO_STATUS_BLOCK Information */
Andrey Turkin47758242007-09-18 00:00:45 +04003247 unsigned int status; /* completion result */
3248@END
3249
3250
3251/* get completion queue depth */
3252@REQ(query_completion)
3253 obj_handle_t handle; /* port handle */
3254@REPLY
3255 unsigned int depth; /* completion queue depth */
3256@END
Andrey Turkind1a81552007-09-28 00:03:39 +04003257
3258
3259/* associate object with completion port */
3260@REQ(set_completion_info)
3261 obj_handle_t handle; /* object handle */
Alexandre Julliarddc7f1702008-12-15 13:29:38 +01003262 apc_param_t ckey; /* completion key */
Alexandre Julliard8c8c6652008-12-31 15:14:29 +01003263 obj_handle_t chandle; /* port handle */
Andrey Turkind1a81552007-09-28 00:03:39 +04003264@END
Andrey Turkin27cb7c72007-11-10 01:11:58 +03003265
3266
3267/* check for associated completion and push msg */
3268@REQ(add_fd_completion)
3269 obj_handle_t handle; /* async' object */
Alexandre Julliarddc7f1702008-12-15 13:29:38 +01003270 apc_param_t cvalue; /* completion value */
Andrey Turkin27cb7c72007-11-10 01:11:58 +03003271 unsigned int status; /* completion status */
Alexandre Julliardf6fa72d2008-12-15 13:30:25 +01003272 unsigned int information; /* IO_STATUS_BLOCK Information */
Andrey Turkin27cb7c72007-11-10 01:11:58 +03003273@END
Alexandre Julliard05b41812008-09-12 15:30:47 +02003274
3275
3276/* Retrieve layered info for a window */
3277@REQ(get_window_layered_info)
3278 user_handle_t handle; /* handle to the window */
3279@REPLY
3280 unsigned int color_key; /* color key */
3281 unsigned int alpha; /* alpha (0..255) */
3282 unsigned int flags; /* LWA_* flags */
3283@END
3284
3285
3286/* Set layered info for a window */
3287@REQ(set_window_layered_info)
3288 user_handle_t handle; /* handle to the window */
3289 unsigned int color_key; /* color key */
3290 unsigned int alpha; /* alpha (0..255) */
3291 unsigned int flags; /* LWA_* flags */
3292@END
Alexandre Julliard9018e132009-10-12 14:25:01 +02003293
3294
3295/* Allocate an arbitrary user handle */
3296@REQ(alloc_user_handle)
3297@REPLY
3298 user_handle_t handle; /* allocated handle */
3299@END
3300
3301
3302/* Free an arbitrary user handle */
3303@REQ(free_user_handle)
3304 user_handle_t handle; /* handle to free*/
3305@END
Alexandre Julliard8159d4e2010-03-22 17:52:23 +01003306
3307
3308/* Set/get the current cursor */
3309@REQ(set_cursor)
3310 unsigned int flags; /* flags for fields to set (see below) */
3311 user_handle_t handle; /* handle to the cursor */
3312 int show_count; /* show count increment/decrement */
Alexandre Julliard183c41b2011-02-24 17:47:59 +01003313 int x; /* cursor position */
3314 int y;
Alexandre Julliard02e81742011-02-25 11:31:47 +01003315 rectangle_t clip; /* cursor clip rectangle */
Alexandre Julliard21e86f62011-03-31 20:27:29 +02003316 unsigned int clip_msg; /* message to post on cursor clip changes */
Alexandre Julliard8159d4e2010-03-22 17:52:23 +01003317@REPLY
3318 user_handle_t prev_handle; /* previous handle */
3319 int prev_count; /* previous show count */
Alexandre Julliardabe54402011-04-20 20:29:16 +02003320 int prev_x; /* previous position */
3321 int prev_y;
Alexandre Julliard183c41b2011-02-24 17:47:59 +01003322 int new_x; /* new position */
3323 int new_y;
Alexandre Julliard02e81742011-02-25 11:31:47 +01003324 rectangle_t new_clip; /* new clip rectangle */
Alexandre Julliard65767032011-03-31 20:15:56 +02003325 unsigned int last_change; /* time of last position change */
Alexandre Julliard8159d4e2010-03-22 17:52:23 +01003326@END
3327#define SET_CURSOR_HANDLE 0x01
3328#define SET_CURSOR_COUNT 0x02
Alexandre Julliard183c41b2011-02-24 17:47:59 +01003329#define SET_CURSOR_POS 0x04
Alexandre Julliard02e81742011-02-25 11:31:47 +01003330#define SET_CURSOR_CLIP 0x08