Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1 | /* -*- 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 Julliard | 0799c1a | 2002-03-09 23:29:33 +0000 | [diff] [blame] | 9 | * |
| 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 Ernst | 360a3f9 | 2006-05-18 14:49:52 +0200 | [diff] [blame] | 22 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 23 | */ |
| 24 | |
| 25 | @HEADER /* start of C declarations */ |
| 26 | |
Alexandre Julliard | e0b5270 | 2003-09-08 19:04:01 +0000 | [diff] [blame] | 27 | #include <stdarg.h> |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 28 | #include <stdlib.h> |
| 29 | #include <time.h> |
Alexandre Julliard | e0b5270 | 2003-09-08 19:04:01 +0000 | [diff] [blame] | 30 | |
| 31 | #include <windef.h> |
| 32 | #include <winbase.h> |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 33 | |
Alexandre Julliard | 0d3d456 | 2008-12-08 16:04:20 +0100 | [diff] [blame] | 34 | typedef unsigned int obj_handle_t; |
Alexandre Julliard | d764107 | 2008-12-08 16:57:38 +0100 | [diff] [blame] | 35 | typedef unsigned int user_handle_t; |
Alexandre Julliard | 0c914e4 | 2008-12-30 23:17:52 +0100 | [diff] [blame] | 36 | typedef unsigned int atom_t; |
Alexandre Julliard | 0f273c1 | 2006-07-26 10:43:25 +0200 | [diff] [blame] | 37 | typedef unsigned int process_id_t; |
| 38 | typedef unsigned int thread_id_t; |
| 39 | typedef unsigned int data_size_t; |
Alexandre Julliard | 737148c | 2007-04-17 22:06:13 +0200 | [diff] [blame] | 40 | typedef unsigned int ioctl_code_t; |
Alexandre Julliard | 3cd817b | 2008-12-24 12:06:18 +0100 | [diff] [blame] | 41 | typedef unsigned __int64 lparam_t; |
Alexandre Julliard | a6216ab | 2008-12-17 19:43:40 +0100 | [diff] [blame] | 42 | typedef unsigned __int64 apc_param_t; |
Alexandre Julliard | 401f4b7 | 2008-12-17 19:25:09 +0100 | [diff] [blame] | 43 | typedef unsigned __int64 mem_size_t; |
Alexandre Julliard | 235532c | 2007-10-10 14:06:25 +0200 | [diff] [blame] | 44 | typedef unsigned __int64 file_pos_t; |
Alexandre Julliard | f2c4e09 | 2008-12-29 16:47:51 +0100 | [diff] [blame] | 45 | typedef unsigned __int64 client_ptr_t; |
Alexandre Julliard | 913e792 | 2009-01-19 14:15:51 +0100 | [diff] [blame] | 46 | typedef unsigned __int64 affinity_t; |
Alexandre Julliard | cb2788e | 2008-12-29 16:41:44 +0100 | [diff] [blame] | 47 | typedef client_ptr_t mod_handle_t; |
Alexandre Julliard | 0f273c1 | 2006-07-26 10:43:25 +0200 | [diff] [blame] | 48 | |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 49 | struct request_header |
| 50 | { |
Alexandre Julliard | 9caa71e | 2001-11-30 18:46:42 +0000 | [diff] [blame] | 51 | int req; /* request code */ |
Alexandre Julliard | 0f273c1 | 2006-07-26 10:43:25 +0200 | [diff] [blame] | 52 | data_size_t request_size; /* request variable part size */ |
| 53 | data_size_t reply_size; /* reply variable part maximum size */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 54 | }; |
| 55 | |
| 56 | struct reply_header |
| 57 | { |
Alexandre Julliard | 9caa71e | 2001-11-30 18:46:42 +0000 | [diff] [blame] | 58 | unsigned int error; /* error result */ |
Alexandre Julliard | 0f273c1 | 2006-07-26 10:43:25 +0200 | [diff] [blame] | 59 | data_size_t reply_size; /* reply variable part size */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 60 | }; |
| 61 | |
| 62 | /* placeholder structure for the maximum allowed request size */ |
| 63 | /* this is used to construct the generic_request union */ |
| 64 | struct request_max_size |
| 65 | { |
| 66 | int pad[16]; /* the max request size is 16 ints */ |
| 67 | }; |
| 68 | |
Alexandre Julliard | 7695d69 | 2001-09-24 01:19:59 +0000 | [diff] [blame] | 69 | #define FIRST_USER_HANDLE 0x0020 /* first possible value for low word of user handle */ |
| 70 | #define LAST_USER_HANDLE 0xffef /* last possible value for low word of user handle */ |
| 71 | |
| 72 | |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 73 | /* debug event data */ |
Alexandre Julliard | bc03f0e | 2009-01-02 20:09:25 +0100 | [diff] [blame] | 74 | typedef union |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 75 | { |
Alexandre Julliard | bc03f0e | 2009-01-02 20:09:25 +0100 | [diff] [blame] | 76 | int code; /* event code */ |
| 77 | struct |
| 78 | { |
Alexandre Julliard | 9f365e7 | 2009-01-02 20:12:46 +0100 | [diff] [blame] | 79 | int code; /* EXCEPTION_DEBUG_EVENT */ |
| 80 | int first; /* first chance exception? */ |
| 81 | unsigned int exc_code; /* exception code */ |
| 82 | unsigned int flags; /* exception flags */ |
| 83 | client_ptr_t record; /* exception record */ |
| 84 | client_ptr_t address; /* exception address */ |
| 85 | int nb_params; /* number of parameters */ |
| 86 | int __pad; |
| 87 | client_ptr_t params[15]; /* parameters */ |
Alexandre Julliard | bc03f0e | 2009-01-02 20:09:25 +0100 | [diff] [blame] | 88 | } 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 Julliard | bc03f0e | 2009-01-02 20:09:25 +0100 | [diff] [blame] | 134 | data_size_t length; /* string length */ |
Andrey Turkin | 3eaecf0 | 2009-10-05 21:42:22 +0400 | [diff] [blame] | 135 | client_ptr_t string; /* string to display (in debugged process address space) */ |
Alexandre Julliard | bc03f0e | 2009-01-02 20:09:25 +0100 | [diff] [blame] | 136 | } output_string; |
| 137 | struct |
| 138 | { |
| 139 | int code; /* RIP_EVENT */ |
| 140 | int error; /* ??? */ |
| 141 | int type; /* ??? */ |
| 142 | } rip_info; |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 143 | } debug_event_t; |
| 144 | |
Alexandre Julliard | 653d2c4 | 2009-04-03 14:49:10 +0200 | [diff] [blame] | 145 | /* supported CPU types */ |
| 146 | enum cpu_type |
| 147 | { |
André Hentschel | 417e926 | 2011-04-19 19:27:36 +0200 | [diff] [blame] | 148 | CPU_x86, CPU_x86_64, CPU_POWERPC, CPU_ARM, CPU_SPARC |
Alexandre Julliard | 653d2c4 | 2009-04-03 14:49:10 +0200 | [diff] [blame] | 149 | }; |
| 150 | typedef int cpu_type_t; |
| 151 | |
Alexandre Julliard | 5316dd0 | 2009-04-08 19:38:02 +0200 | [diff] [blame] | 152 | /* context data */ |
| 153 | typedef 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 Julliard | 27f2a35 | 2010-04-01 19:56:09 +0200 | [diff] [blame] | 161 | unsigned int cs, ss, flags, __pad; } x86_64_regs; |
Alexandre Julliard | 27f2a35 | 2010-04-01 19:56:09 +0200 | [diff] [blame] | 162 | struct { unsigned int iar, msr, ctr, lr, dar, dsisr, trap, __pad; } powerpc_regs; |
André Hentschel | ccaeb3e | 2010-09-18 18:03:56 +0200 | [diff] [blame] | 163 | struct { unsigned int sp, lr, pc, cpsr; } arm_regs; |
Alexandre Julliard | 5316dd0 | 2009-04-08 19:38:02 +0200 | [diff] [blame] | 164 | 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 Julliard | 5316dd0 | 2009-04-08 19:38:02 +0200 | [diff] [blame] | 171 | struct { unsigned int gpr[32], cr, xer; } powerpc_regs; |
André Hentschel | ccaeb3e | 2010-09-18 18:03:56 +0200 | [diff] [blame] | 172 | struct { unsigned int r[13]; } arm_regs; |
Alexandre Julliard | 5316dd0 | 2009-04-08 19:38:02 +0200 | [diff] [blame] | 173 | 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 Julliard | 5316dd0 | 2009-04-08 19:38:02 +0200 | [diff] [blame] | 185 | 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 Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 206 | /* structure used in sending an fd from client to server */ |
| 207 | struct send_fd |
| 208 | { |
Alexandre Julliard | 54f2287 | 2002-10-03 19:54:57 +0000 | [diff] [blame] | 209 | thread_id_t tid; /* thread id */ |
| 210 | int fd; /* file descriptor on client-side */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 211 | }; |
| 212 | |
| 213 | /* structure sent by the server on the wait fifo */ |
| 214 | struct wake_up_reply |
| 215 | { |
Alexandre Julliard | 45c9919 | 2008-12-29 17:19:26 +0100 | [diff] [blame] | 216 | client_ptr_t cookie; /* magic cookie that was passed in select_request */ |
| 217 | int signaled; /* wait result */ |
Alexandre Julliard | 7560a89 | 2008-12-30 15:15:06 +0100 | [diff] [blame] | 218 | int __pad; |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 219 | }; |
| 220 | |
Alexandre Julliard | aaf477f | 2007-04-17 20:08:59 +0200 | [diff] [blame] | 221 | /* NT-style timeout, in 100ns units, negative means relative timeout */ |
| 222 | typedef __int64 timeout_t; |
| 223 | #define TIMEOUT_INFINITE (((timeout_t)0x7fffffff) << 32 | 0xffffffff) |
Alexandre Julliard | 462172a | 2003-04-02 22:48:59 +0000 | [diff] [blame] | 224 | |
Alexandre Julliard | da8acbc | 2009-08-20 20:05:21 +0200 | [diff] [blame] | 225 | /* structure for process startup info */ |
| 226 | typedef 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 Julliard | 7a2017d | 2001-10-12 19:10:26 +0000 | [diff] [blame] | 261 | /* structure returned in the list of window properties */ |
| 262 | typedef struct |
| 263 | { |
| 264 | atom_t atom; /* property atom */ |
Alexandre Julliard | 0c914e4 | 2008-12-30 23:17:52 +0100 | [diff] [blame] | 265 | int string; /* was atom a string originally? */ |
Alexandre Julliard | 517b2f6 | 2008-12-10 16:21:32 +0100 | [diff] [blame] | 266 | lparam_t data; /* data stored in property */ |
Alexandre Julliard | 7a2017d | 2001-10-12 19:10:26 +0000 | [diff] [blame] | 267 | } property_data_t; |
| 268 | |
Alexandre Julliard | 0d50965 | 2001-10-16 21:55:37 +0000 | [diff] [blame] | 269 | /* structure to specify window rectangles */ |
| 270 | typedef struct |
| 271 | { |
| 272 | int left; |
| 273 | int top; |
| 274 | int right; |
| 275 | int bottom; |
| 276 | } rectangle_t; |
| 277 | |
Alexandre Julliard | 111610c | 2007-03-20 20:21:12 +0100 | [diff] [blame] | 278 | /* structure for parameters of async I/O calls */ |
| 279 | typedef struct |
| 280 | { |
Alexandre Julliard | a7b3efd | 2008-12-26 12:17:20 +0100 | [diff] [blame] | 281 | obj_handle_t handle; /* object to perform I/O on */ |
| 282 | obj_handle_t event; /* event to signal when done */ |
Alexandre Julliard | 6db2010 | 2008-12-30 21:09:41 +0100 | [diff] [blame] | 283 | 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 Julliard | dc7f170 | 2008-12-15 13:29:38 +0100 | [diff] [blame] | 286 | apc_param_t cvalue; /* completion value to use for completion events */ |
Alexandre Julliard | 111610c | 2007-03-20 20:21:12 +0100 | [diff] [blame] | 287 | } async_data_t; |
| 288 | |
Alexandre Julliard | 59dc456 | 2006-10-04 16:04:53 +0200 | [diff] [blame] | 289 | /* structures for extra message data */ |
Alexandre Julliard | 29a3ce9 | 2006-10-04 16:29:45 +0200 | [diff] [blame] | 290 | |
Alexandre Julliard | d1d7b9f | 2008-12-24 11:59:09 +0100 | [diff] [blame] | 291 | struct 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 Julliard | c7efa29 | 2011-03-02 19:53:03 +0100 | [diff] [blame] | 297 | unsigned int flags; /* hook flags */ |
Alexandre Julliard | d1d7b9f | 2008-12-24 11:59:09 +0100 | [diff] [blame] | 298 | }; |
| 299 | |
Alexandre Julliard | 29a3ce9 | 2006-10-04 16:29:45 +0200 | [diff] [blame] | 300 | struct callback_msg_data |
| 301 | { |
Alexandre Julliard | 4261476 | 2008-12-30 14:02:07 +0100 | [diff] [blame] | 302 | client_ptr_t callback; /* callback function */ |
Alexandre Julliard | 31282b3 | 2008-12-10 16:01:50 +0100 | [diff] [blame] | 303 | lparam_t data; /* user data for callback */ |
| 304 | lparam_t result; /* message result */ |
Alexandre Julliard | 29a3ce9 | 2006-10-04 16:29:45 +0200 | [diff] [blame] | 305 | }; |
| 306 | |
Alexandre Julliard | 59dc456 | 2006-10-04 16:04:53 +0200 | [diff] [blame] | 307 | struct winevent_msg_data |
| 308 | { |
| 309 | user_handle_t hook; /* hook handle */ |
| 310 | thread_id_t tid; /* thread id */ |
Alexandre Julliard | cc55fd3 | 2008-12-29 17:35:35 +0100 | [diff] [blame] | 311 | client_ptr_t hook_proc; /* hook proc address */ |
Alexandre Julliard | 59dc456 | 2006-10-04 16:04:53 +0200 | [diff] [blame] | 312 | /* followed by module name if any */ |
| 313 | }; |
| 314 | |
| 315 | typedef union |
| 316 | { |
Alexandre Julliard | 02e30f5 | 2011-03-01 20:33:15 +0100 | [diff] [blame] | 317 | 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 | |
| 345 | typedef union |
| 346 | { |
Alexandre Julliard | 59dc456 | 2006-10-04 16:04:53 +0200 | [diff] [blame] | 347 | unsigned char bytes[1]; /* raw data for sent messages */ |
Alexandre Julliard | 0ffd26a | 2009-01-15 12:50:59 +0100 | [diff] [blame] | 348 | struct hardware_msg_data hardware; |
Alexandre Julliard | 29a3ce9 | 2006-10-04 16:29:45 +0200 | [diff] [blame] | 349 | struct callback_msg_data callback; |
Alexandre Julliard | 59dc456 | 2006-10-04 16:04:53 +0200 | [diff] [blame] | 350 | struct winevent_msg_data winevent; |
| 351 | } message_data_t; |
| 352 | |
Alexandre Julliard | 9caa71e | 2001-11-30 18:46:42 +0000 | [diff] [blame] | 353 | /* structure for console char/attribute info */ |
| 354 | typedef struct |
| 355 | { |
| 356 | WCHAR ch; |
| 357 | unsigned short attr; |
| 358 | } char_info_t; |
| 359 | |
Piotr Caban | b614a15 | 2011-01-18 11:24:33 +0100 | [diff] [blame] | 360 | /* structure returned in filesystem events */ |
| 361 | struct filesystem_event |
| 362 | { |
| 363 | int action; |
| 364 | data_size_t len; |
| 365 | char name[1]; |
| 366 | }; |
| 367 | |
Juan Lang | c2cb296 | 2007-03-06 16:33:26 -0800 | [diff] [blame] | 368 | typedef struct |
| 369 | { |
| 370 | unsigned int low_part; |
| 371 | int high_part; |
| 372 | } luid_t; |
| 373 | |
Robert Shearman | 7bff354 | 2005-05-23 16:33:00 +0000 | [diff] [blame] | 374 | #define MAX_ACL_LEN 65535 |
| 375 | |
| 376 | struct security_descriptor |
| 377 | { |
| 378 | unsigned int control; /* SE_ flags */ |
Alexandre Julliard | 0f273c1 | 2006-07-26 10:43:25 +0200 | [diff] [blame] | 379 | data_size_t owner_len; |
| 380 | data_size_t group_len; |
| 381 | data_size_t sacl_len; |
| 382 | data_size_t dacl_len; |
Rob Shearman | dd9e392 | 2007-10-24 16:04:42 +0100 | [diff] [blame] | 383 | /* VARARG(owner,SID); */ |
| 384 | /* VARARG(group,SID); */ |
| 385 | /* VARARG(sacl,ACL); */ |
| 386 | /* VARARG(dacl,ACL); */ |
| 387 | }; |
| 388 | |
| 389 | struct 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 Shearman | f98556c | 2007-10-26 17:01:33 +0100 | [diff] [blame] | 393 | data_size_t name_len; /* length of the name string. may be 0 */ |
Rob Shearman | dd9e392 | 2007-10-24 16:04:42 +0100 | [diff] [blame] | 394 | /* VARARG(sd,security_descriptor); */ |
| 395 | /* VARARG(name,unicode_str); */ |
Robert Shearman | 7bff354 | 2005-05-23 16:33:00 +0000 | [diff] [blame] | 396 | }; |
| 397 | |
Robert Shearman | 3396a66 | 2006-05-13 16:58:19 +0100 | [diff] [blame] | 398 | struct token_groups |
| 399 | { |
| 400 | unsigned int count; |
| 401 | /* unsigned int attributes[count]; */ |
Rob Shearman | dd9e392 | 2007-10-24 16:04:42 +0100 | [diff] [blame] | 402 | /* VARARG(sids,SID); */ |
Robert Shearman | 3396a66 | 2006-05-13 16:58:19 +0100 | [diff] [blame] | 403 | }; |
| 404 | |
Alexandre Julliard | fb40dc4 | 2007-01-15 22:24:40 +0100 | [diff] [blame] | 405 | enum apc_type |
| 406 | { |
| 407 | APC_NONE, |
| 408 | APC_USER, |
| 409 | APC_TIMER, |
| 410 | APC_ASYNC_IO, |
| 411 | APC_VIRTUAL_ALLOC, |
Alexandre Julliard | 3d00239 | 2007-01-15 22:28:42 +0100 | [diff] [blame] | 412 | APC_VIRTUAL_FREE, |
Alexandre Julliard | 1ea9680 | 2007-01-15 22:30:04 +0100 | [diff] [blame] | 413 | APC_VIRTUAL_QUERY, |
Alexandre Julliard | 5a1ad74 | 2007-01-15 22:31:07 +0100 | [diff] [blame] | 414 | APC_VIRTUAL_PROTECT, |
Alexandre Julliard | c122260 | 2007-01-16 09:50:08 +0100 | [diff] [blame] | 415 | APC_VIRTUAL_FLUSH, |
| 416 | APC_VIRTUAL_LOCK, |
Alexandre Julliard | 8025f79 | 2007-01-18 15:02:55 +0100 | [diff] [blame] | 417 | APC_VIRTUAL_UNLOCK, |
Alexandre Julliard | 02e2fa77 | 2007-01-18 15:17:51 +0100 | [diff] [blame] | 418 | APC_MAP_VIEW, |
| 419 | APC_UNMAP_VIEW, |
Alexandre Julliard | 8025f79 | 2007-01-18 15:02:55 +0100 | [diff] [blame] | 420 | APC_CREATE_THREAD |
Alexandre Julliard | fb40dc4 | 2007-01-15 22:24:40 +0100 | [diff] [blame] | 421 | }; |
Alexandre Julliard | 5c8421d | 2007-01-04 13:40:09 +0100 | [diff] [blame] | 422 | |
| 423 | typedef union |
| 424 | { |
| 425 | enum apc_type type; |
| 426 | struct |
| 427 | { |
| 428 | enum apc_type type; /* APC_USER */ |
Alexandre Julliard | 6db2010 | 2008-12-30 21:09:41 +0100 | [diff] [blame] | 429 | int __pad; |
| 430 | client_ptr_t func; /* void (__stdcall *func)(ULONG_PTR,ULONG_PTR,ULONG_PTR); */ |
Alexandre Julliard | dc7f170 | 2008-12-15 13:29:38 +0100 | [diff] [blame] | 431 | apc_param_t args[3]; /* arguments for user function */ |
Alexandre Julliard | 5c8421d | 2007-01-04 13:40:09 +0100 | [diff] [blame] | 432 | } user; |
| 433 | struct |
| 434 | { |
Alexandre Julliard | 9b92a59 | 2008-12-29 17:43:01 +0100 | [diff] [blame] | 435 | enum apc_type type; /* APC_TIMER */ |
Alexandre Julliard | 838803c | 2008-12-30 15:05:38 +0100 | [diff] [blame] | 436 | int __pad; |
Alexandre Julliard | 9b92a59 | 2008-12-29 17:43:01 +0100 | [diff] [blame] | 437 | client_ptr_t func; /* void (__stdcall *func)(void*, unsigned int, unsigned int); */ |
Alexandre Julliard | aaf477f | 2007-04-17 20:08:59 +0200 | [diff] [blame] | 438 | timeout_t time; /* absolute time of expiration */ |
Alexandre Julliard | 9b92a59 | 2008-12-29 17:43:01 +0100 | [diff] [blame] | 439 | client_ptr_t arg; /* user argument */ |
Alexandre Julliard | 5c8421d | 2007-01-04 13:40:09 +0100 | [diff] [blame] | 440 | } timer; |
| 441 | struct |
| 442 | { |
| 443 | enum apc_type type; /* APC_ASYNC_IO */ |
Alexandre Julliard | 5c8421d | 2007-01-04 13:40:09 +0100 | [diff] [blame] | 444 | unsigned int status; /* I/O status */ |
Alexandre Julliard | 6db2010 | 2008-12-30 21:09:41 +0100 | [diff] [blame] | 445 | 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 Julliard | 5c8421d | 2007-01-04 13:40:09 +0100 | [diff] [blame] | 448 | } async_io; |
Alexandre Julliard | fb40dc4 | 2007-01-15 22:24:40 +0100 | [diff] [blame] | 449 | struct |
| 450 | { |
| 451 | enum apc_type type; /* APC_VIRTUAL_ALLOC */ |
Alexandre Julliard | 838803c | 2008-12-30 15:05:38 +0100 | [diff] [blame] | 452 | unsigned int op_type; /* type of operation */ |
| 453 | client_ptr_t addr; /* requested address */ |
Alexandre Julliard | 992d3ce | 2008-12-17 19:24:33 +0100 | [diff] [blame] | 454 | mem_size_t size; /* allocation size */ |
Alexandre Julliard | fb40dc4 | 2007-01-15 22:24:40 +0100 | [diff] [blame] | 455 | unsigned int zero_bits; /* allocation alignment */ |
Alexandre Julliard | fb40dc4 | 2007-01-15 22:24:40 +0100 | [diff] [blame] | 456 | unsigned int prot; /* memory protection flags */ |
| 457 | } virtual_alloc; |
| 458 | struct |
| 459 | { |
| 460 | enum apc_type type; /* APC_VIRTUAL_FREE */ |
Alexandre Julliard | fb40dc4 | 2007-01-15 22:24:40 +0100 | [diff] [blame] | 461 | unsigned int op_type; /* type of operation */ |
Alexandre Julliard | 838803c | 2008-12-30 15:05:38 +0100 | [diff] [blame] | 462 | client_ptr_t addr; /* requested address */ |
| 463 | mem_size_t size; /* allocation size */ |
Alexandre Julliard | fb40dc4 | 2007-01-15 22:24:40 +0100 | [diff] [blame] | 464 | } virtual_free; |
Alexandre Julliard | 3d00239 | 2007-01-15 22:28:42 +0100 | [diff] [blame] | 465 | struct |
| 466 | { |
| 467 | enum apc_type type; /* APC_VIRTUAL_QUERY */ |
Alexandre Julliard | 838803c | 2008-12-30 15:05:38 +0100 | [diff] [blame] | 468 | int __pad; |
| 469 | client_ptr_t addr; /* requested address */ |
Alexandre Julliard | 3d00239 | 2007-01-15 22:28:42 +0100 | [diff] [blame] | 470 | } virtual_query; |
Alexandre Julliard | 1ea9680 | 2007-01-15 22:30:04 +0100 | [diff] [blame] | 471 | struct |
| 472 | { |
| 473 | enum apc_type type; /* APC_VIRTUAL_PROTECT */ |
Alexandre Julliard | 1ea9680 | 2007-01-15 22:30:04 +0100 | [diff] [blame] | 474 | unsigned int prot; /* new protection flags */ |
Alexandre Julliard | 838803c | 2008-12-30 15:05:38 +0100 | [diff] [blame] | 475 | client_ptr_t addr; /* requested address */ |
| 476 | mem_size_t size; /* requested size */ |
Alexandre Julliard | 1ea9680 | 2007-01-15 22:30:04 +0100 | [diff] [blame] | 477 | } virtual_protect; |
Alexandre Julliard | 5a1ad74 | 2007-01-15 22:31:07 +0100 | [diff] [blame] | 478 | struct |
| 479 | { |
| 480 | enum apc_type type; /* APC_VIRTUAL_FLUSH */ |
Alexandre Julliard | 838803c | 2008-12-30 15:05:38 +0100 | [diff] [blame] | 481 | int __pad; |
| 482 | client_ptr_t addr; /* requested address */ |
Alexandre Julliard | 992d3ce | 2008-12-17 19:24:33 +0100 | [diff] [blame] | 483 | mem_size_t size; /* requested size */ |
Alexandre Julliard | 5a1ad74 | 2007-01-15 22:31:07 +0100 | [diff] [blame] | 484 | } virtual_flush; |
Alexandre Julliard | c122260 | 2007-01-16 09:50:08 +0100 | [diff] [blame] | 485 | struct |
| 486 | { |
| 487 | enum apc_type type; /* APC_VIRTUAL_LOCK */ |
Alexandre Julliard | 838803c | 2008-12-30 15:05:38 +0100 | [diff] [blame] | 488 | int __pad; |
| 489 | client_ptr_t addr; /* requested address */ |
Alexandre Julliard | 992d3ce | 2008-12-17 19:24:33 +0100 | [diff] [blame] | 490 | mem_size_t size; /* requested size */ |
Alexandre Julliard | c122260 | 2007-01-16 09:50:08 +0100 | [diff] [blame] | 491 | } virtual_lock; |
| 492 | struct |
| 493 | { |
| 494 | enum apc_type type; /* APC_VIRTUAL_UNLOCK */ |
Alexandre Julliard | 838803c | 2008-12-30 15:05:38 +0100 | [diff] [blame] | 495 | int __pad; |
| 496 | client_ptr_t addr; /* requested address */ |
Alexandre Julliard | 992d3ce | 2008-12-17 19:24:33 +0100 | [diff] [blame] | 497 | mem_size_t size; /* requested size */ |
Alexandre Julliard | c122260 | 2007-01-16 09:50:08 +0100 | [diff] [blame] | 498 | } virtual_unlock; |
Alexandre Julliard | 8025f79 | 2007-01-18 15:02:55 +0100 | [diff] [blame] | 499 | struct |
| 500 | { |
Alexandre Julliard | 02e2fa77 | 2007-01-18 15:17:51 +0100 | [diff] [blame] | 501 | enum apc_type type; /* APC_MAP_VIEW */ |
| 502 | obj_handle_t handle; /* mapping handle */ |
Alexandre Julliard | 838803c | 2008-12-30 15:05:38 +0100 | [diff] [blame] | 503 | client_ptr_t addr; /* requested address */ |
Alexandre Julliard | 992d3ce | 2008-12-17 19:24:33 +0100 | [diff] [blame] | 504 | mem_size_t size; /* allocation size */ |
Alexandre Julliard | 235532c | 2007-10-10 14:06:25 +0200 | [diff] [blame] | 505 | file_pos_t offset; /* file offset */ |
Alexandre Julliard | 02e2fa77 | 2007-01-18 15:17:51 +0100 | [diff] [blame] | 506 | unsigned int alloc_type;/* allocation type */ |
Alexandre Julliard | c86ec64 | 2008-12-30 15:22:45 +0100 | [diff] [blame] | 507 | unsigned short zero_bits; /* allocation alignment */ |
| 508 | unsigned short prot; /* memory protection flags */ |
Alexandre Julliard | 02e2fa77 | 2007-01-18 15:17:51 +0100 | [diff] [blame] | 509 | } map_view; |
| 510 | struct |
| 511 | { |
| 512 | enum apc_type type; /* APC_UNMAP_VIEW */ |
Alexandre Julliard | 838803c | 2008-12-30 15:05:38 +0100 | [diff] [blame] | 513 | int __pad; |
| 514 | client_ptr_t addr; /* view address */ |
Alexandre Julliard | 02e2fa77 | 2007-01-18 15:17:51 +0100 | [diff] [blame] | 515 | } unmap_view; |
| 516 | struct |
| 517 | { |
Alexandre Julliard | 8025f79 | 2007-01-18 15:02:55 +0100 | [diff] [blame] | 518 | enum apc_type type; /* APC_CREATE_THREAD */ |
Alexandre Julliard | f69e622 | 2008-12-30 15:30:11 +0100 | [diff] [blame] | 519 | 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 Julliard | 992d3ce | 2008-12-17 19:24:33 +0100 | [diff] [blame] | 522 | mem_size_t reserve; /* reserve size for thread stack */ |
| 523 | mem_size_t commit; /* commit size for thread stack */ |
Alexandre Julliard | 8025f79 | 2007-01-18 15:02:55 +0100 | [diff] [blame] | 524 | } create_thread; |
Alexandre Julliard | 5c8421d | 2007-01-04 13:40:09 +0100 | [diff] [blame] | 525 | } apc_call_t; |
| 526 | |
Alexandre Julliard | fb40dc4 | 2007-01-15 22:24:40 +0100 | [diff] [blame] | 527 | typedef union |
| 528 | { |
| 529 | enum apc_type type; |
| 530 | struct |
| 531 | { |
Alexandre Julliard | 50975c8 | 2007-03-20 19:27:10 +0100 | [diff] [blame] | 532 | enum apc_type type; /* APC_ASYNC_IO */ |
| 533 | unsigned int status; /* new status of async operation */ |
Alexandre Julliard | 6db2010 | 2008-12-30 21:09:41 +0100 | [diff] [blame] | 534 | client_ptr_t apc; /* user APC to call */ |
Alexandre Julliard | f6fa72d | 2008-12-15 13:30:25 +0100 | [diff] [blame] | 535 | unsigned int total; /* bytes transferred */ |
Alexandre Julliard | 50975c8 | 2007-03-20 19:27:10 +0100 | [diff] [blame] | 536 | } async_io; |
| 537 | struct |
| 538 | { |
Alexandre Julliard | fb40dc4 | 2007-01-15 22:24:40 +0100 | [diff] [blame] | 539 | enum apc_type type; /* APC_VIRTUAL_ALLOC */ |
| 540 | unsigned int status; /* status returned by call */ |
Alexandre Julliard | 838803c | 2008-12-30 15:05:38 +0100 | [diff] [blame] | 541 | client_ptr_t addr; /* resulting address */ |
Alexandre Julliard | 992d3ce | 2008-12-17 19:24:33 +0100 | [diff] [blame] | 542 | mem_size_t size; /* resulting size */ |
Alexandre Julliard | fb40dc4 | 2007-01-15 22:24:40 +0100 | [diff] [blame] | 543 | } virtual_alloc; |
| 544 | struct |
| 545 | { |
| 546 | enum apc_type type; /* APC_VIRTUAL_FREE */ |
| 547 | unsigned int status; /* status returned by call */ |
Alexandre Julliard | 838803c | 2008-12-30 15:05:38 +0100 | [diff] [blame] | 548 | client_ptr_t addr; /* resulting address */ |
Alexandre Julliard | 992d3ce | 2008-12-17 19:24:33 +0100 | [diff] [blame] | 549 | mem_size_t size; /* resulting size */ |
Alexandre Julliard | fb40dc4 | 2007-01-15 22:24:40 +0100 | [diff] [blame] | 550 | } virtual_free; |
Alexandre Julliard | 3d00239 | 2007-01-15 22:28:42 +0100 | [diff] [blame] | 551 | struct |
| 552 | { |
| 553 | enum apc_type type; /* APC_VIRTUAL_QUERY */ |
| 554 | unsigned int status; /* status returned by call */ |
Alexandre Julliard | 838803c | 2008-12-30 15:05:38 +0100 | [diff] [blame] | 555 | client_ptr_t base; /* resulting base address */ |
| 556 | client_ptr_t alloc_base;/* resulting allocation base */ |
Alexandre Julliard | 992d3ce | 2008-12-17 19:24:33 +0100 | [diff] [blame] | 557 | mem_size_t size; /* resulting region size */ |
Alexandre Julliard | c86ec64 | 2008-12-30 15:22:45 +0100 | [diff] [blame] | 558 | 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 Julliard | 3d00239 | 2007-01-15 22:28:42 +0100 | [diff] [blame] | 562 | } virtual_query; |
Alexandre Julliard | 1ea9680 | 2007-01-15 22:30:04 +0100 | [diff] [blame] | 563 | struct |
| 564 | { |
| 565 | enum apc_type type; /* APC_VIRTUAL_PROTECT */ |
| 566 | unsigned int status; /* status returned by call */ |
Alexandre Julliard | 838803c | 2008-12-30 15:05:38 +0100 | [diff] [blame] | 567 | client_ptr_t addr; /* resulting address */ |
Alexandre Julliard | 992d3ce | 2008-12-17 19:24:33 +0100 | [diff] [blame] | 568 | mem_size_t size; /* resulting size */ |
Alexandre Julliard | 1ea9680 | 2007-01-15 22:30:04 +0100 | [diff] [blame] | 569 | unsigned int prot; /* old protection flags */ |
| 570 | } virtual_protect; |
Alexandre Julliard | 5a1ad74 | 2007-01-15 22:31:07 +0100 | [diff] [blame] | 571 | struct |
| 572 | { |
| 573 | enum apc_type type; /* APC_VIRTUAL_FLUSH */ |
| 574 | unsigned int status; /* status returned by call */ |
Alexandre Julliard | 838803c | 2008-12-30 15:05:38 +0100 | [diff] [blame] | 575 | client_ptr_t addr; /* resulting address */ |
Alexandre Julliard | 992d3ce | 2008-12-17 19:24:33 +0100 | [diff] [blame] | 576 | mem_size_t size; /* resulting size */ |
Alexandre Julliard | 5a1ad74 | 2007-01-15 22:31:07 +0100 | [diff] [blame] | 577 | } virtual_flush; |
Alexandre Julliard | c122260 | 2007-01-16 09:50:08 +0100 | [diff] [blame] | 578 | struct |
| 579 | { |
| 580 | enum apc_type type; /* APC_VIRTUAL_LOCK */ |
| 581 | unsigned int status; /* status returned by call */ |
Alexandre Julliard | 838803c | 2008-12-30 15:05:38 +0100 | [diff] [blame] | 582 | client_ptr_t addr; /* resulting address */ |
Alexandre Julliard | 992d3ce | 2008-12-17 19:24:33 +0100 | [diff] [blame] | 583 | mem_size_t size; /* resulting size */ |
Alexandre Julliard | c122260 | 2007-01-16 09:50:08 +0100 | [diff] [blame] | 584 | } virtual_lock; |
| 585 | struct |
| 586 | { |
| 587 | enum apc_type type; /* APC_VIRTUAL_UNLOCK */ |
| 588 | unsigned int status; /* status returned by call */ |
Alexandre Julliard | 838803c | 2008-12-30 15:05:38 +0100 | [diff] [blame] | 589 | client_ptr_t addr; /* resulting address */ |
Alexandre Julliard | 992d3ce | 2008-12-17 19:24:33 +0100 | [diff] [blame] | 590 | mem_size_t size; /* resulting size */ |
Alexandre Julliard | c122260 | 2007-01-16 09:50:08 +0100 | [diff] [blame] | 591 | } virtual_unlock; |
Alexandre Julliard | 8025f79 | 2007-01-18 15:02:55 +0100 | [diff] [blame] | 592 | struct |
| 593 | { |
Alexandre Julliard | 02e2fa77 | 2007-01-18 15:17:51 +0100 | [diff] [blame] | 594 | enum apc_type type; /* APC_MAP_VIEW */ |
| 595 | unsigned int status; /* status returned by call */ |
Alexandre Julliard | 838803c | 2008-12-30 15:05:38 +0100 | [diff] [blame] | 596 | client_ptr_t addr; /* resulting address */ |
Alexandre Julliard | 992d3ce | 2008-12-17 19:24:33 +0100 | [diff] [blame] | 597 | mem_size_t size; /* resulting size */ |
Alexandre Julliard | 02e2fa77 | 2007-01-18 15:17:51 +0100 | [diff] [blame] | 598 | } 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 Julliard | 8025f79 | 2007-01-18 15:02:55 +0100 | [diff] [blame] | 606 | 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 Julliard | fb40dc4 | 2007-01-15 22:24:40 +0100 | [diff] [blame] | 611 | } apc_result_t; |
| 612 | |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 613 | /****************************************************************/ |
| 614 | /* Request declarations */ |
| 615 | |
| 616 | /* Create a new process from the context of the parent */ |
| 617 | @REQ(new_process) |
Alexandre Julliard | c316f0e | 2006-07-19 14:00:10 +0200 | [diff] [blame] | 618 | 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 Julliard | c316f0e | 2006-07-19 14:00:10 +0200 | [diff] [blame] | 622 | 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 Julliard | da8acbc | 2009-08-20 20:05:21 +0200 | [diff] [blame] | 626 | data_size_t info_size; /* size of startup info */ |
| 627 | VARARG(info,startup_info,info_size); /* startup information */ |
Alexandre Julliard | c316f0e | 2006-07-19 14:00:10 +0200 | [diff] [blame] | 628 | VARARG(env,unicode_str); /* environment for new process */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 629 | @REPLY |
Alexandre Julliard | c316f0e | 2006-07-19 14:00:10 +0200 | [diff] [blame] | 630 | 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 Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 635 | @END |
| 636 | |
| 637 | |
| 638 | /* Retrieve information about a newly started process */ |
| 639 | @REQ(get_new_process_info) |
Alexandre Julliard | f2d7dd6 | 2005-12-09 12:13:11 +0100 | [diff] [blame] | 640 | obj_handle_t info; /* info handle returned from new_process_request */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 641 | @REPLY |
Alexandre Julliard | 9d80215 | 2002-05-24 21:20:27 +0000 | [diff] [blame] | 642 | int success; /* did the process start successfully? */ |
Alexandre Julliard | c316f0e | 2006-07-19 14:00:10 +0200 | [diff] [blame] | 643 | int exit_code; /* process exit code if failed */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 644 | @END |
| 645 | |
| 646 | |
| 647 | /* Create a new thread from the context of the parent */ |
| 648 | @REQ(new_thread) |
Alexandre Julliard | f2d7dd6 | 2005-12-09 12:13:11 +0100 | [diff] [blame] | 649 | unsigned int access; /* wanted access rights */ |
| 650 | unsigned int attributes; /* object attributes */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 651 | int suspend; /* new thread should be suspended on creation */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 652 | int request_fd; /* fd for request pipe */ |
| 653 | @REPLY |
Alexandre Julliard | 54f2287 | 2002-10-03 19:54:57 +0000 | [diff] [blame] | 654 | thread_id_t tid; /* thread id */ |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 655 | obj_handle_t handle; /* thread handle (in the current process) */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 656 | @END |
| 657 | |
| 658 | |
Alexandre Julliard | 6543a65 | 2002-03-29 18:28:56 +0000 | [diff] [blame] | 659 | /* Retrieve the new process startup info */ |
| 660 | @REQ(get_startup_info) |
Alexandre Julliard | 6543a65 | 2002-03-29 18:28:56 +0000 | [diff] [blame] | 661 | @REPLY |
Alexandre Julliard | 01caa5e | 2005-07-12 20:27:09 +0000 | [diff] [blame] | 662 | obj_handle_t exe_file; /* file handle for main exe */ |
Alexandre Julliard | da8acbc | 2009-08-20 20:05:21 +0200 | [diff] [blame] | 663 | data_size_t info_size; /* size of startup info */ |
| 664 | VARARG(info,startup_info,info_size); /* startup information */ |
Alexandre Julliard | c4ec210 | 2004-07-16 03:54:35 +0000 | [diff] [blame] | 665 | VARARG(env,unicode_str); /* environment */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 666 | @END |
| 667 | |
| 668 | |
| 669 | /* Signal the end of the process initialization */ |
| 670 | @REQ(init_process_done) |
Alexandre Julliard | f2c4e09 | 2008-12-29 16:47:51 +0100 | [diff] [blame] | 671 | int gui; /* is it a GUI process? */ |
Alexandre Julliard | cb2788e | 2008-12-29 16:41:44 +0100 | [diff] [blame] | 672 | mod_handle_t module; /* main module base address */ |
Alexandre Julliard | 2cf868c | 2008-12-30 22:47:48 +0100 | [diff] [blame] | 673 | client_ptr_t ldt_copy; /* address of LDT copy (in thread address space) */ |
Alexandre Julliard | c6c335d | 2008-12-30 22:56:15 +0100 | [diff] [blame] | 674 | client_ptr_t entry; /* process entry point */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 675 | @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 Julliard | a8497bd | 2003-03-22 21:00:09 +0000 | [diff] [blame] | 681 | int unix_tid; /* Unix tid of new thread */ |
Alexandre Julliard | e0dcf4f | 2006-10-04 21:41:32 +0200 | [diff] [blame] | 682 | int debug_level; /* new debug level */ |
Alexandre Julliard | fa86438 | 2008-12-30 23:02:33 +0100 | [diff] [blame] | 683 | client_ptr_t teb; /* TEB of new thread (in thread address space) */ |
Alexandre Julliard | b06a919 | 2009-04-03 14:30:34 +0200 | [diff] [blame] | 684 | client_ptr_t entry; /* entry point or PEB if initial thread (in thread address space) */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 685 | int reply_fd; /* fd for reply pipe */ |
| 686 | int wait_fd; /* fd for blocking calls pipe */ |
Alexandre Julliard | 653d2c4 | 2009-04-03 14:49:10 +0200 | [diff] [blame] | 687 | cpu_type_t cpu; /* CPU that this thread is running on */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 688 | @REPLY |
Alexandre Julliard | 54f2287 | 2002-10-03 19:54:57 +0000 | [diff] [blame] | 689 | process_id_t pid; /* process id of the new thread's process */ |
| 690 | thread_id_t tid; /* thread id of the new thread */ |
Alexandre Julliard | aaf477f | 2007-04-17 20:08:59 +0200 | [diff] [blame] | 691 | timeout_t server_start; /* server start time */ |
Alexandre Julliard | 8c8c665 | 2008-12-31 15:14:29 +0100 | [diff] [blame] | 692 | data_size_t info_size; /* total size of startup info */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 693 | int version; /* protocol version */ |
Alexandre Julliard | 279defe | 2009-04-03 14:59:12 +0200 | [diff] [blame] | 694 | unsigned int all_cpus; /* bitset of supported CPUs */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 695 | @END |
| 696 | |
| 697 | |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 698 | /* Terminate a process */ |
| 699 | @REQ(terminate_process) |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 700 | obj_handle_t handle; /* process handle to terminate */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 701 | 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 Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 709 | obj_handle_t handle; /* thread handle to terminate */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 710 | 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 Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 719 | obj_handle_t handle; /* process handle */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 720 | @REPLY |
Alexandre Julliard | 54f2287 | 2002-10-03 19:54:57 +0000 | [diff] [blame] | 721 | process_id_t pid; /* server process id */ |
Eric Pouech | b0fd2ad | 2004-06-14 17:02:00 +0000 | [diff] [blame] | 722 | process_id_t ppid; /* server process id of parent */ |
Alexandre Julliard | 913e792 | 2009-01-19 14:15:51 +0100 | [diff] [blame] | 723 | affinity_t affinity; /* process affinity mask */ |
Alexandre Julliard | fa86438 | 2008-12-30 23:02:33 +0100 | [diff] [blame] | 724 | client_ptr_t peb; /* PEB address in process address space */ |
Alexandre Julliard | aaf477f | 2007-04-17 20:08:59 +0200 | [diff] [blame] | 725 | timeout_t start_time; /* process start time */ |
| 726 | timeout_t end_time; /* process end time */ |
Alexandre Julliard | fa86438 | 2008-12-30 23:02:33 +0100 | [diff] [blame] | 727 | int exit_code; /* process exit code */ |
Alexandre Julliard | 913e792 | 2009-01-19 14:15:51 +0100 | [diff] [blame] | 728 | int priority; /* priority class */ |
Alexandre Julliard | 6056e8a | 2009-07-07 11:37:47 +0200 | [diff] [blame] | 729 | cpu_type_t cpu; /* CPU that this process is running on */ |
Henri Verbeet | f0a5045 | 2010-03-14 21:53:27 +0100 | [diff] [blame] | 730 | int debugger_present; /* process is being debugged */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 731 | @END |
| 732 | |
| 733 | |
Francois Gouget | fac36c5 | 2012-05-15 10:15:32 +0200 | [diff] [blame] | 734 | /* Set a process information */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 735 | @REQ(set_process_info) |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 736 | obj_handle_t handle; /* process handle */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 737 | int mask; /* setting mask (see below) */ |
| 738 | int priority; /* priority class */ |
Alexandre Julliard | 913e792 | 2009-01-19 14:15:51 +0100 | [diff] [blame] | 739 | affinity_t affinity; /* affinity mask */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 740 | @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 Cumming | 24f4ece | 2002-11-25 01:33:38 +0000 | [diff] [blame] | 747 | obj_handle_t handle; /* thread handle */ |
| 748 | thread_id_t tid_in; /* thread id (optional) */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 749 | @REPLY |
Alexandre Julliard | 4f196ea | 2003-07-09 02:57:57 +0000 | [diff] [blame] | 750 | process_id_t pid; /* server process id */ |
Ryan Cumming | 24f4ece | 2002-11-25 01:33:38 +0000 | [diff] [blame] | 751 | thread_id_t tid; /* server thread id */ |
Alexandre Julliard | fa86438 | 2008-12-30 23:02:33 +0100 | [diff] [blame] | 752 | client_ptr_t teb; /* thread teb pointer */ |
Alexandre Julliard | 913e792 | 2009-01-19 14:15:51 +0100 | [diff] [blame] | 753 | affinity_t affinity; /* thread affinity mask */ |
Alexandre Julliard | aaf477f | 2007-04-17 20:08:59 +0200 | [diff] [blame] | 754 | timeout_t creation_time; /* thread creation time */ |
| 755 | timeout_t exit_time; /* thread exit time */ |
Alexandre Julliard | fa86438 | 2008-12-30 23:02:33 +0100 | [diff] [blame] | 756 | int exit_code; /* thread exit code */ |
Alexandre Julliard | 913e792 | 2009-01-19 14:15:51 +0100 | [diff] [blame] | 757 | int priority; /* thread priority level */ |
Eric Pouech | 8cb932e | 2006-10-01 08:17:27 +0200 | [diff] [blame] | 758 | int last; /* last thread in process */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 759 | @END |
| 760 | |
| 761 | |
Francois Gouget | fac36c5 | 2012-05-15 10:15:32 +0200 | [diff] [blame] | 762 | /* Set a thread information */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 763 | @REQ(set_thread_info) |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 764 | obj_handle_t handle; /* thread handle */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 765 | int mask; /* setting mask (see below) */ |
| 766 | int priority; /* priority class */ |
Alexandre Julliard | 913e792 | 2009-01-19 14:15:51 +0100 | [diff] [blame] | 767 | affinity_t affinity; /* affinity mask */ |
Robert Shearman | 4bba216 | 2005-06-20 13:18:38 +0000 | [diff] [blame] | 768 | obj_handle_t token; /* impersonation token */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 769 | @END |
| 770 | #define SET_THREAD_INFO_PRIORITY 0x01 |
| 771 | #define SET_THREAD_INFO_AFFINITY 0x02 |
Robert Shearman | 4bba216 | 2005-06-20 13:18:38 +0000 | [diff] [blame] | 772 | #define SET_THREAD_INFO_TOKEN 0x04 |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 773 | |
| 774 | |
Eric Pouech | 2359b57 | 2003-01-09 00:01:28 +0000 | [diff] [blame] | 775 | /* Retrieve information about a module */ |
| 776 | @REQ(get_dll_info) |
| 777 | obj_handle_t handle; /* process handle */ |
Alexandre Julliard | cb2788e | 2008-12-29 16:41:44 +0100 | [diff] [blame] | 778 | mod_handle_t base_address; /* base address of module */ |
Eric Pouech | 2359b57 | 2003-01-09 00:01:28 +0000 | [diff] [blame] | 779 | @REPLY |
Alexandre Julliard | c6c335d | 2008-12-30 22:56:15 +0100 | [diff] [blame] | 780 | client_ptr_t entry_point; |
Alexandre Julliard | 77cf803 | 2008-12-09 11:50:05 +0100 | [diff] [blame] | 781 | data_size_t size; /* module size */ |
Rob Shearman | bf2a35b | 2007-11-20 09:30:50 +0000 | [diff] [blame] | 782 | data_size_t filename_len; /* buffer len in bytes required to store filename */ |
Alexandre Julliard | c30cefb | 2003-09-30 01:04:19 +0000 | [diff] [blame] | 783 | VARARG(filename,unicode_str); /* file name of module */ |
Eric Pouech | 2359b57 | 2003-01-09 00:01:28 +0000 | [diff] [blame] | 784 | @END |
| 785 | |
| 786 | |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 787 | /* Suspend a thread */ |
| 788 | @REQ(suspend_thread) |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 789 | obj_handle_t handle; /* thread handle */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 790 | @REPLY |
| 791 | int count; /* new suspend count */ |
| 792 | @END |
| 793 | |
| 794 | |
| 795 | /* Resume a thread */ |
| 796 | @REQ(resume_thread) |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 797 | obj_handle_t handle; /* thread handle */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 798 | @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 Julliard | 900352b | 2011-04-18 14:14:40 +0200 | [diff] [blame] | 805 | obj_handle_t mapping; /* file mapping handle */ |
Alexandre Julliard | cb2788e | 2008-12-29 16:41:44 +0100 | [diff] [blame] | 806 | mod_handle_t base; /* base address */ |
Alexandre Julliard | 947976f | 2008-12-29 17:10:11 +0100 | [diff] [blame] | 807 | client_ptr_t name; /* ptr to ptr to name (in process addr space) */ |
Alexandre Julliard | 77cf803 | 2008-12-09 11:50:05 +0100 | [diff] [blame] | 808 | data_size_t size; /* dll size */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 809 | int dbg_offset; /* debug info offset */ |
| 810 | int dbg_size; /* debug info size */ |
Alexandre Julliard | c30cefb | 2003-09-30 01:04:19 +0000 | [diff] [blame] | 811 | VARARG(filename,unicode_str); /* file name of dll */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 812 | @END |
| 813 | |
| 814 | |
| 815 | /* Notify the server that a dll is being unloaded */ |
| 816 | @REQ(unload_dll) |
Alexandre Julliard | cb2788e | 2008-12-29 16:41:44 +0100 | [diff] [blame] | 817 | mod_handle_t base; /* base address */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 818 | @END |
| 819 | |
| 820 | |
Alexandre Julliard | 6ca1d1b | 2007-01-15 22:26:32 +0100 | [diff] [blame] | 821 | /* Queue an APC for a thread or process */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 822 | @REQ(queue_apc) |
Alexandre Julliard | b660aaa | 2008-12-26 12:19:41 +0100 | [diff] [blame] | 823 | obj_handle_t handle; /* thread or process handle */ |
Alexandre Julliard | 5c8421d | 2007-01-04 13:40:09 +0100 | [diff] [blame] | 824 | apc_call_t call; /* call arguments */ |
Alexandre Julliard | 6ca1d1b | 2007-01-15 22:26:32 +0100 | [diff] [blame] | 825 | @REPLY |
| 826 | obj_handle_t handle; /* APC handle */ |
Alexandre Julliard | f3cb4f7 | 2007-01-18 15:41:05 +0100 | [diff] [blame] | 827 | int self; /* run APC in caller itself? */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 828 | @END |
| 829 | |
| 830 | |
Alexandre Julliard | fb40dc4 | 2007-01-15 22:24:40 +0100 | [diff] [blame] | 831 | /* 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 Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 839 | /* Close a handle for the current process */ |
| 840 | @REQ(close_handle) |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 841 | obj_handle_t handle; /* handle to close */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 842 | @END |
| 843 | |
| 844 | |
| 845 | /* Set a handle information */ |
| 846 | @REQ(set_handle_info) |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 847 | obj_handle_t handle; /* handle we are interested in */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 848 | int flags; /* new handle flags */ |
| 849 | int mask; /* mask for flags to set */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 850 | @REPLY |
| 851 | int old_flags; /* old flag value */ |
Alexandre Julliard | 38502f7 | 2005-08-23 18:43:50 +0000 | [diff] [blame] | 852 | @END |
| 853 | |
| 854 | |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 855 | /* Duplicate a handle */ |
| 856 | @REQ(dup_handle) |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 857 | 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 Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 860 | unsigned int access; /* wanted access rights */ |
Alexandre Julliard | 7b910f4 | 2005-12-09 12:21:35 +0100 | [diff] [blame] | 861 | unsigned int attributes; /* object attributes */ |
| 862 | unsigned int options; /* duplicate options (see below) */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 863 | @REPLY |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 864 | obj_handle_t handle; /* duplicated handle in dst process */ |
Alexandre Julliard | 3410354 | 2007-01-18 12:18:51 +0100 | [diff] [blame] | 865 | int self; /* is the source the current process? */ |
Alexandre Julliard | 28418cc | 2006-11-02 20:48:19 +0100 | [diff] [blame] | 866 | int closed; /* whether the source handle has been closed */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 867 | @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 Julliard | 54f2287 | 2002-10-03 19:54:57 +0000 | [diff] [blame] | 875 | process_id_t pid; /* process id to open */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 876 | unsigned int access; /* wanted access rights */ |
Alexandre Julliard | f2d7dd6 | 2005-12-09 12:13:11 +0100 | [diff] [blame] | 877 | unsigned int attributes; /* object attributes */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 878 | @REPLY |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 879 | obj_handle_t handle; /* handle to the process */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 880 | @END |
| 881 | |
| 882 | |
Chris Morgan | 417296c | 2002-04-02 00:49:05 +0000 | [diff] [blame] | 883 | /* Open a handle to a thread */ |
| 884 | @REQ(open_thread) |
Alexandre Julliard | 54f2287 | 2002-10-03 19:54:57 +0000 | [diff] [blame] | 885 | thread_id_t tid; /* thread id to open */ |
Chris Morgan | 417296c | 2002-04-02 00:49:05 +0000 | [diff] [blame] | 886 | unsigned int access; /* wanted access rights */ |
Alexandre Julliard | f2d7dd6 | 2005-12-09 12:13:11 +0100 | [diff] [blame] | 887 | unsigned int attributes; /* object attributes */ |
Chris Morgan | 417296c | 2002-04-02 00:49:05 +0000 | [diff] [blame] | 888 | @REPLY |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 889 | obj_handle_t handle; /* handle to the thread */ |
Chris Morgan | 417296c | 2002-04-02 00:49:05 +0000 | [diff] [blame] | 890 | @END |
| 891 | |
| 892 | |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 893 | /* Wait for handles */ |
| 894 | @REQ(select) |
| 895 | int flags; /* wait flags (see below) */ |
Alexandre Julliard | 45c9919 | 2008-12-29 17:19:26 +0100 | [diff] [blame] | 896 | client_ptr_t cookie; /* magic cookie to return to client */ |
Mike McCormack | f92fff6 | 2005-04-24 17:35:52 +0000 | [diff] [blame] | 897 | obj_handle_t signal; /* object to signal (0 if none) */ |
Alexandre Julliard | fec5117 | 2007-07-16 16:14:45 +0200 | [diff] [blame] | 898 | obj_handle_t prev_apc; /* handle to previous APC */ |
Alexandre Julliard | aaf477f | 2007-04-17 20:08:59 +0200 | [diff] [blame] | 899 | timeout_t timeout; /* timeout */ |
Alexandre Julliard | fec5117 | 2007-07-16 16:14:45 +0200 | [diff] [blame] | 900 | VARARG(result,apc_result); /* result of previous APC */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 901 | VARARG(handles,handles); /* handles to select on */ |
Alexandre Julliard | aaf477f | 2007-04-17 20:08:59 +0200 | [diff] [blame] | 902 | @REPLY |
| 903 | timeout_t timeout; /* timeout converted to absolute */ |
Alexandre Julliard | fec5117 | 2007-07-16 16:14:45 +0200 | [diff] [blame] | 904 | apc_call_t call; /* APC call arguments */ |
Alexandre Julliard | 838803c | 2008-12-30 15:05:38 +0100 | [diff] [blame] | 905 | obj_handle_t apc_handle; /* handle to next APC */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 906 | @END |
| 907 | #define SELECT_ALL 1 |
| 908 | #define SELECT_ALERTABLE 2 |
| 909 | #define SELECT_INTERRUPTIBLE 4 |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 910 | |
| 911 | |
| 912 | /* Create an event */ |
| 913 | @REQ(create_event) |
Eric Pouech | 44158dd | 2004-12-02 18:05:37 +0000 | [diff] [blame] | 914 | unsigned int access; /* wanted access rights */ |
Vitaliy Margolen | a996000 | 2005-10-27 18:30:37 +0000 | [diff] [blame] | 915 | unsigned int attributes; /* object attributes */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 916 | int manual_reset; /* manual reset event */ |
| 917 | int initial_state; /* initial state of the event */ |
Rob Shearman | dd9e392 | 2007-10-24 16:04:42 +0100 | [diff] [blame] | 918 | VARARG(objattr,object_attributes); /* object attributes */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 919 | @REPLY |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 920 | obj_handle_t handle; /* handle to the event */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 921 | @END |
| 922 | |
| 923 | /* Event operation */ |
| 924 | @REQ(event_op) |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 925 | obj_handle_t handle; /* handle to event */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 926 | int op; /* event operation (see below) */ |
| 927 | @END |
| 928 | enum 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 Margolen | a996000 | 2005-10-27 18:30:37 +0000 | [diff] [blame] | 934 | unsigned int attributes; /* object attributes */ |
Vitaliy Margolen | f676bc8 | 2005-12-02 15:55:48 +0100 | [diff] [blame] | 935 | obj_handle_t rootdir; /* root directory */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 936 | VARARG(name,unicode_str); /* object name */ |
| 937 | @REPLY |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 938 | obj_handle_t handle; /* handle to the event */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 939 | @END |
| 940 | |
| 941 | |
| 942 | /* Create a mutex */ |
| 943 | @REQ(create_mutex) |
Eric Pouech | 44158dd | 2004-12-02 18:05:37 +0000 | [diff] [blame] | 944 | unsigned int access; /* wanted access rights */ |
Vitaliy Margolen | a996000 | 2005-10-27 18:30:37 +0000 | [diff] [blame] | 945 | unsigned int attributes; /* object attributes */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 946 | int owned; /* initially owned? */ |
Rob Shearman | 1f86321 | 2007-10-25 15:43:05 +0100 | [diff] [blame] | 947 | VARARG(objattr,object_attributes); /* object attributes */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 948 | @REPLY |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 949 | obj_handle_t handle; /* handle to the mutex */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 950 | @END |
| 951 | |
| 952 | |
| 953 | /* Release a mutex */ |
| 954 | @REQ(release_mutex) |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 955 | obj_handle_t handle; /* handle to the mutex */ |
Eric Pouech | 44158dd | 2004-12-02 18:05:37 +0000 | [diff] [blame] | 956 | @REPLY |
| 957 | unsigned int prev_count; /* value of internal counter, before release */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 958 | @END |
| 959 | |
| 960 | |
| 961 | /* Open a mutex */ |
| 962 | @REQ(open_mutex) |
| 963 | unsigned int access; /* wanted access rights */ |
Vitaliy Margolen | a996000 | 2005-10-27 18:30:37 +0000 | [diff] [blame] | 964 | unsigned int attributes; /* object attributes */ |
Vitaliy Margolen | f676bc8 | 2005-12-02 15:55:48 +0100 | [diff] [blame] | 965 | obj_handle_t rootdir; /* root directory */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 966 | VARARG(name,unicode_str); /* object name */ |
| 967 | @REPLY |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 968 | obj_handle_t handle; /* handle to the mutex */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 969 | @END |
| 970 | |
| 971 | |
| 972 | /* Create a semaphore */ |
| 973 | @REQ(create_semaphore) |
Eric Pouech | 44158dd | 2004-12-02 18:05:37 +0000 | [diff] [blame] | 974 | unsigned int access; /* wanted access rights */ |
Vitaliy Margolen | a996000 | 2005-10-27 18:30:37 +0000 | [diff] [blame] | 975 | unsigned int attributes; /* object attributes */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 976 | unsigned int initial; /* initial count */ |
| 977 | unsigned int max; /* maximum count */ |
Rob Shearman | b0e5fb4 | 2007-10-25 15:42:53 +0100 | [diff] [blame] | 978 | VARARG(objattr,object_attributes); /* object attributes */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 979 | @REPLY |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 980 | obj_handle_t handle; /* handle to the semaphore */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 981 | @END |
| 982 | |
| 983 | |
| 984 | /* Release a semaphore */ |
| 985 | @REQ(release_semaphore) |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 986 | obj_handle_t handle; /* handle to the semaphore */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 987 | 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 Margolen | a996000 | 2005-10-27 18:30:37 +0000 | [diff] [blame] | 996 | unsigned int attributes; /* object attributes */ |
Vitaliy Margolen | 5daae3d | 2005-12-02 16:01:17 +0100 | [diff] [blame] | 997 | obj_handle_t rootdir; /* root directory */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 998 | VARARG(name,unicode_str); /* object name */ |
| 999 | @REPLY |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1000 | obj_handle_t handle; /* handle to the semaphore */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1001 | @END |
| 1002 | |
| 1003 | |
| 1004 | /* Create a file */ |
| 1005 | @REQ(create_file) |
| 1006 | unsigned int access; /* wanted access rights */ |
Alexandre Julliard | 27b1aec | 2005-12-09 12:00:48 +0100 | [diff] [blame] | 1007 | unsigned int attributes; /* object attributes */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1008 | unsigned int sharing; /* sharing flags */ |
| 1009 | int create; /* file create action */ |
Alexandre Julliard | 014099c | 2004-03-12 01:56:49 +0000 | [diff] [blame] | 1010 | unsigned int options; /* file options */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1011 | unsigned int attrs; /* file attributes for creation */ |
Rob Shearman | 5f5df83 | 2007-10-26 17:02:16 +0100 | [diff] [blame] | 1012 | VARARG(objattr,object_attributes); /* object attributes */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1013 | VARARG(filename,string); /* file name */ |
| 1014 | @REPLY |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1015 | obj_handle_t handle; /* handle to the file */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1016 | @END |
| 1017 | |
| 1018 | |
Alexandre Julliard | 67505c0 | 2005-12-12 14:27:45 +0100 | [diff] [blame] | 1019 | /* 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 Julliard | 94655c8 | 2007-03-22 11:52:40 +0100 | [diff] [blame] | 1025 | unsigned int options; /* file options */ |
Alexandre Julliard | 67505c0 | 2005-12-12 14:27:45 +0100 | [diff] [blame] | 1026 | VARARG(filename,unicode_str); /* file name */ |
| 1027 | @REPLY |
| 1028 | obj_handle_t handle; /* handle to the file */ |
| 1029 | @END |
| 1030 | |
| 1031 | |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1032 | /* Allocate a file handle for a Unix fd */ |
| 1033 | @REQ(alloc_file_handle) |
| 1034 | unsigned int access; /* wanted access rights */ |
Alexandre Julliard | 27b1aec | 2005-12-09 12:00:48 +0100 | [diff] [blame] | 1035 | unsigned int attributes; /* object attributes */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1036 | int fd; /* file descriptor on the client side */ |
| 1037 | @REPLY |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1038 | obj_handle_t handle; /* handle to the file */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1039 | @END |
| 1040 | |
| 1041 | |
Henri Verbeet | 27705d5 | 2009-11-12 15:10:12 +0100 | [diff] [blame] | 1042 | /* 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 Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1051 | /* Get a Unix fd to access a file */ |
| 1052 | @REQ(get_handle_fd) |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1053 | obj_handle_t handle; /* handle to the file */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1054 | @REPLY |
Alexandre Julliard | 8930427 | 2006-11-20 14:14:04 +0100 | [diff] [blame] | 1055 | int type; /* file type (see below) */ |
Alexandre Julliard | a2ca2eb | 2010-08-23 17:09:45 +0200 | [diff] [blame] | 1056 | int cacheable; /* can fd be cached in the client? */ |
Alexandre Julliard | d85121f | 2007-04-10 22:32:46 +0200 | [diff] [blame] | 1057 | unsigned int access; /* file access rights */ |
| 1058 | unsigned int options; /* file open options */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1059 | @END |
Alexandre Julliard | 8930427 | 2006-11-20 14:14:04 +0100 | [diff] [blame] | 1060 | enum 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 Julliard | 133b8bc | 2007-04-23 15:13:22 +0200 | [diff] [blame] | 1069 | FD_TYPE_CHAR, /* unspecified char device */ |
Alexandre Julliard | 8930427 | 2006-11-20 14:14:04 +0100 | [diff] [blame] | 1070 | FD_TYPE_DEVICE, /* Windows device file */ |
| 1071 | FD_TYPE_NB_TYPES |
| 1072 | }; |
Alexandre Julliard | d85121f | 2007-04-10 22:32:46 +0200 | [diff] [blame] | 1073 | |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1074 | |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1075 | /* Flush a file buffers */ |
| 1076 | @REQ(flush_file) |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1077 | obj_handle_t handle; /* handle to the file */ |
Mike McCormack | ef8b946 | 2003-05-15 04:22:45 +0000 | [diff] [blame] | 1078 | @REPLY |
| 1079 | obj_handle_t event; /* event set when finished */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1080 | @END |
| 1081 | |
| 1082 | |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1083 | /* Lock a region of a file */ |
| 1084 | @REQ(lock_file) |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1085 | obj_handle_t handle; /* handle to the file */ |
Alexandre Julliard | 235532c | 2007-10-10 14:06:25 +0200 | [diff] [blame] | 1086 | file_pos_t offset; /* offset of start of lock */ |
| 1087 | file_pos_t count; /* count of bytes to lock */ |
Alexandre Julliard | ce61349 | 2003-03-18 05:04:33 +0000 | [diff] [blame] | 1088 | 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 Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1093 | @END |
| 1094 | |
| 1095 | |
| 1096 | /* Unlock a region of a file */ |
| 1097 | @REQ(unlock_file) |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1098 | obj_handle_t handle; /* handle to the file */ |
Alexandre Julliard | 235532c | 2007-10-10 14:06:25 +0200 | [diff] [blame] | 1099 | file_pos_t offset; /* offset of start of unlock */ |
| 1100 | file_pos_t count; /* count of bytes to unlock */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1101 | @END |
| 1102 | |
| 1103 | |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1104 | /* Create a socket */ |
| 1105 | @REQ(create_socket) |
| 1106 | unsigned int access; /* wanted access rights */ |
Alexandre Julliard | bc30303 | 2005-12-09 11:58:55 +0100 | [diff] [blame] | 1107 | unsigned int attributes; /* object attributes */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1108 | int family; /* family, see socket manpage */ |
| 1109 | int type; /* type, see socket manpage */ |
| 1110 | int protocol; /* protocol, see socket manpage */ |
Martin Wilck | aa47705 | 2002-01-09 21:16:24 +0000 | [diff] [blame] | 1111 | unsigned int flags; /* socket flags */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1112 | @REPLY |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1113 | obj_handle_t handle; /* handle to the new socket */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1114 | @END |
| 1115 | |
| 1116 | |
| 1117 | /* Accept a socket */ |
| 1118 | @REQ(accept_socket) |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1119 | obj_handle_t lhandle; /* handle to the listening socket */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1120 | unsigned int access; /* wanted access rights */ |
Alexandre Julliard | bc30303 | 2005-12-09 11:58:55 +0100 | [diff] [blame] | 1121 | unsigned int attributes; /* object attributes */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1122 | @REPLY |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1123 | obj_handle_t handle; /* handle to the new socket */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1124 | @END |
| 1125 | |
| 1126 | |
Mike Kaplinskiy | ae5ad61 | 2010-08-29 18:09:53 -0400 | [diff] [blame] | 1127 | /* 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 Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1134 | /* Set socket event parameters */ |
| 1135 | @REQ(set_socket_event) |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1136 | obj_handle_t handle; /* handle to the socket */ |
Alexandre Julliard | 81f2a73 | 2002-03-23 20:43:52 +0000 | [diff] [blame] | 1137 | unsigned int mask; /* event mask */ |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1138 | obj_handle_t event; /* event object */ |
Alexandre Julliard | 81f2a73 | 2002-03-23 20:43:52 +0000 | [diff] [blame] | 1139 | user_handle_t window; /* window to send the message to */ |
| 1140 | unsigned int msg; /* message to send */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1141 | @END |
| 1142 | |
| 1143 | |
| 1144 | /* Get socket event parameters */ |
| 1145 | @REQ(get_socket_event) |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1146 | obj_handle_t handle; /* handle to the socket */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1147 | int service; /* clear pending? */ |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1148 | obj_handle_t c_event; /* event to clear */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1149 | @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 | |
Francois Gouget | fac36c5 | 2012-05-15 10:15:32 +0200 | [diff] [blame] | 1157 | /* Re-enable pending socket events */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1158 | @REQ(enable_socket_event) |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1159 | obj_handle_t handle; /* handle to the socket */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1160 | 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 Wilck | d15bf1c | 2002-04-23 22:03:42 +0000 | [diff] [blame] | 1165 | @REQ(set_socket_deferred) |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1166 | obj_handle_t handle; /* handle to the socket */ |
| 1167 | obj_handle_t deferred; /* handle to the socket for which accept() is deferred */ |
Martin Wilck | d15bf1c | 2002-04-23 22:03:42 +0000 | [diff] [blame] | 1168 | @END |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1169 | |
Eric Pouech | 0b83d4c | 2001-11-23 23:04:58 +0000 | [diff] [blame] | 1170 | /* Allocate a console (only used by a console renderer) */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1171 | @REQ(alloc_console) |
| 1172 | unsigned int access; /* wanted access rights */ |
Alexandre Julliard | 7a09660 | 2005-12-09 12:05:20 +0100 | [diff] [blame] | 1173 | unsigned int attributes; /* object attributes */ |
Alexandre Julliard | 54f2287 | 2002-10-03 19:54:57 +0000 | [diff] [blame] | 1174 | process_id_t pid; /* pid of process which shall be attached to the console */ |
Eric Pouech | b39a8d9 | 2010-08-30 22:18:44 +0200 | [diff] [blame] | 1175 | int input_fd; /* if pid=-1 (bare console to current process), fd for input */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1176 | @REPLY |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1177 | obj_handle_t handle_in; /* handle to console input */ |
| 1178 | obj_handle_t event; /* handle to renderer events change notification */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1179 | @END |
| 1180 | |
| 1181 | |
| 1182 | /* Free the console of the current process */ |
| 1183 | @REQ(free_console) |
| 1184 | @END |
| 1185 | |
| 1186 | |
Eric Pouech | 0b83d4c | 2001-11-23 23:04:58 +0000 | [diff] [blame] | 1187 | #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 |
| 1196 | struct 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 Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1233 | obj_handle_t handle; /* handle to console input events */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1234 | @REPLY |
Eric Pouech | 0b83d4c | 2001-11-23 23:04:58 +0000 | [diff] [blame] | 1235 | VARARG(data,bytes); /* the various console_renderer_events */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1236 | @END |
| 1237 | |
| 1238 | |
Eric Pouech | 0b83d4c | 2001-11-23 23:04:58 +0000 | [diff] [blame] | 1239 | /* Open a handle to the process console */ |
| 1240 | @REQ(open_console) |
Mike McCormack | fac494c | 2006-06-07 18:33:46 +0900 | [diff] [blame] | 1241 | obj_handle_t from; /* 0 (resp 1) input (resp output) of current process console */ |
Eric Pouech | 0b83d4c | 2001-11-23 23:04:58 +0000 | [diff] [blame] | 1242 | /* otherwise console_in handle to get active screen buffer? */ |
| 1243 | unsigned int access; /* wanted access rights */ |
Alexandre Julliard | 7a09660 | 2005-12-09 12:05:20 +0100 | [diff] [blame] | 1244 | unsigned int attributes; /* object attributes */ |
Eric Pouech | 0b83d4c | 2001-11-23 23:04:58 +0000 | [diff] [blame] | 1245 | int share; /* share mask (only for output handles) */ |
| 1246 | @REPLY |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1247 | obj_handle_t handle; /* handle to the console */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1248 | @END |
| 1249 | |
| 1250 | |
Eric Pouech | 412d37f | 2003-06-21 02:07:10 +0000 | [diff] [blame] | 1251 | /* Get the input queue wait event */ |
| 1252 | @REQ(get_console_wait_event) |
| 1253 | @REPLY |
| 1254 | obj_handle_t handle; |
| 1255 | @END |
| 1256 | |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1257 | /* Get a console mode (input or output) */ |
| 1258 | @REQ(get_console_mode) |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1259 | obj_handle_t handle; /* handle to the console */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1260 | @REPLY |
| 1261 | int mode; /* console mode */ |
| 1262 | @END |
| 1263 | |
| 1264 | |
| 1265 | /* Set a console mode (input or output) */ |
| 1266 | @REQ(set_console_mode) |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1267 | obj_handle_t handle; /* handle to the console */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1268 | int mode; /* console mode */ |
| 1269 | @END |
| 1270 | |
| 1271 | |
Eric Pouech | 0b83d4c | 2001-11-23 23:04:58 +0000 | [diff] [blame] | 1272 | /* Set info about a console (input only) */ |
| 1273 | @REQ(set_console_input_info) |
Kirill K. Smirnov | f3e1317 | 2007-08-23 19:17:17 +0400 | [diff] [blame] | 1274 | 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 Pouech | 0b83d4c | 2001-11-23 23:04:58 +0000 | [diff] [blame] | 1284 | @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 Pouech | fa8b85a | 2003-01-09 06:01:32 +0000 | [diff] [blame] | 1289 | #define SET_CONSOLE_INPUT_INFO_EDITION_MODE 0x10 |
Kirill K. Smirnov | 9d74661 | 2007-05-10 21:19:47 +0400 | [diff] [blame] | 1290 | #define SET_CONSOLE_INPUT_INFO_INPUT_CODEPAGE 0x20 |
| 1291 | #define SET_CONSOLE_INPUT_INFO_OUTPUT_CODEPAGE 0x40 |
Kirill K. Smirnov | f3e1317 | 2007-08-23 19:17:17 +0400 | [diff] [blame] | 1292 | #define SET_CONSOLE_INPUT_INFO_WIN 0x80 |
Eric Pouech | 0b83d4c | 2001-11-23 23:04:58 +0000 | [diff] [blame] | 1293 | |
| 1294 | |
| 1295 | /* Get info about a console (input only) */ |
| 1296 | @REQ(get_console_input_info) |
Kirill K. Smirnov | f3e1317 | 2007-08-23 19:17:17 +0400 | [diff] [blame] | 1297 | obj_handle_t handle; /* handle to console input, or 0 for process' console */ |
Eric Pouech | 0b83d4c | 2001-11-23 23:04:58 +0000 | [diff] [blame] | 1298 | @REPLY |
Kirill K. Smirnov | f3e1317 | 2007-08-23 19:17:17 +0400 | [diff] [blame] | 1299 | 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 Pouech | 0b83d4c | 2001-11-23 23:04:58 +0000 | [diff] [blame] | 1307 | @END |
| 1308 | |
| 1309 | |
| 1310 | /* appends a string to console's history */ |
| 1311 | @REQ(append_console_input_history) |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1312 | obj_handle_t handle; /* handle to console input, or 0 for process' console */ |
Eric Pouech | 0b83d4c | 2001-11-23 23:04:58 +0000 | [diff] [blame] | 1313 | 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 Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1319 | obj_handle_t handle; /* handle to console input, or 0 for process' console */ |
Eric Pouech | 0b83d4c | 2001-11-23 23:04:58 +0000 | [diff] [blame] | 1320 | int index; /* index to get line from */ |
| 1321 | @REPLY |
Alexandre Julliard | 9caa71e | 2001-11-30 18:46:42 +0000 | [diff] [blame] | 1322 | int total; /* total length of line in Unicode chars */ |
Eric Pouech | 0b83d4c | 2001-11-23 23:04:58 +0000 | [diff] [blame] | 1323 | 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 Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1329 | obj_handle_t handle_in; /* handle to console input, or 0 for process' console */ |
Alexandre Julliard | 7a09660 | 2005-12-09 12:05:20 +0100 | [diff] [blame] | 1330 | unsigned int access; /* wanted access rights */ |
| 1331 | unsigned int attributes; /* object attributes */ |
| 1332 | unsigned int share; /* sharing credentials */ |
Eric Pouech | 6f32644 | 2010-08-30 22:18:52 +0200 | [diff] [blame] | 1333 | int fd; /* for bare consoles, fd the screen-buffer is attached to */ |
Eric Pouech | 0b83d4c | 2001-11-23 23:04:58 +0000 | [diff] [blame] | 1334 | @REPLY |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1335 | obj_handle_t handle_out; /* handle to the screen buffer */ |
Eric Pouech | 0b83d4c | 2001-11-23 23:04:58 +0000 | [diff] [blame] | 1336 | @END |
| 1337 | |
| 1338 | |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1339 | /* Set info about a console (output only) */ |
Eric Pouech | 0b83d4c | 2001-11-23 23:04:58 +0000 | [diff] [blame] | 1340 | @REQ(set_console_output_info) |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1341 | obj_handle_t handle; /* handle to the console */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1342 | int mask; /* setting mask (see below) */ |
Eric Pouech | 0b83d4c | 2001-11-23 23:04:58 +0000 | [diff] [blame] | 1343 | 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 */ |
Francois Gouget | fac36c5 | 2012-05-15 10:15:32 +0200 | [diff] [blame] | 1351 | short int win_top; /* the rect area is expressed within the */ |
Eric Pouech | 0b83d4c | 2001-11-23 23:04:58 +0000 | [diff] [blame] | 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 Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1356 | @END |
Eric Pouech | 0b83d4c | 2001-11-23 23:04:58 +0000 | [diff] [blame] | 1357 | #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 Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1364 | |
| 1365 | /* Get info about a console (output only) */ |
Eric Pouech | 0b83d4c | 2001-11-23 23:04:58 +0000 | [diff] [blame] | 1366 | @REQ(get_console_output_info) |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1367 | obj_handle_t handle; /* handle to the console */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1368 | @REPLY |
Eric Pouech | 0b83d4c | 2001-11-23 23:04:58 +0000 | [diff] [blame] | 1369 | 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 */ |
Francois Gouget | fac36c5 | 2012-05-15 10:15:32 +0200 | [diff] [blame] | 1377 | short int win_top; /* the rect area is expressed within the */ |
Eric Pouech | 0b83d4c | 2001-11-23 23:04:58 +0000 | [diff] [blame] | 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 Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1382 | @END |
| 1383 | |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1384 | /* Add input records to a console input queue */ |
| 1385 | @REQ(write_console_input) |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1386 | obj_handle_t handle; /* handle to the console input */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1387 | VARARG(rec,input_records); /* input records */ |
| 1388 | @REPLY |
| 1389 | int written; /* number of records written */ |
| 1390 | @END |
| 1391 | |
Eric Pouech | 0b83d4c | 2001-11-23 23:04:58 +0000 | [diff] [blame] | 1392 | |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1393 | /* Fetch input records from a console input queue */ |
| 1394 | @REQ(read_console_input) |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1395 | obj_handle_t handle; /* handle to the console input */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1396 | 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 Pouech | 0b83d4c | 2001-11-23 23:04:58 +0000 | [diff] [blame] | 1403 | /* write data (chars and/or attributes) in a screen buffer */ |
| 1404 | @REQ(write_console_output) |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1405 | obj_handle_t handle; /* handle to the console output */ |
Alexandre Julliard | 9caa71e | 2001-11-30 18:46:42 +0000 | [diff] [blame] | 1406 | 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 Pouech | 0b83d4c | 2001-11-23 23:04:58 +0000 | [diff] [blame] | 1410 | VARARG(data,bytes); /* info to write */ |
| 1411 | @REPLY |
Alexandre Julliard | 9caa71e | 2001-11-30 18:46:42 +0000 | [diff] [blame] | 1412 | int written; /* number of char infos actually written */ |
| 1413 | int width; /* width of screen buffer */ |
| 1414 | int height; /* height of screen buffer */ |
Eric Pouech | 0b83d4c | 2001-11-23 23:04:58 +0000 | [diff] [blame] | 1415 | @END |
Alexandre Julliard | 9caa71e | 2001-11-30 18:46:42 +0000 | [diff] [blame] | 1416 | enum 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 Pouech | 0b83d4c | 2001-11-23 23:04:58 +0000 | [diff] [blame] | 1423 | |
| 1424 | |
Alexandre Julliard | 9caa71e | 2001-11-30 18:46:42 +0000 | [diff] [blame] | 1425 | /* fill a screen buffer with constant data (chars and/or attributes) */ |
| 1426 | @REQ(fill_console_output) |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1427 | obj_handle_t handle; /* handle to the console output */ |
Alexandre Julliard | 9caa71e | 2001-11-30 18:46:42 +0000 | [diff] [blame] | 1428 | 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 Pouech | 0b83d4c | 2001-11-23 23:04:58 +0000 | [diff] [blame] | 1434 | @REPLY |
Alexandre Julliard | 9caa71e | 2001-11-30 18:46:42 +0000 | [diff] [blame] | 1435 | 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 Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1441 | obj_handle_t handle; /* handle to the console output */ |
Alexandre Julliard | 9caa71e | 2001-11-30 18:46:42 +0000 | [diff] [blame] | 1442 | 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 Pouech | 0b83d4c | 2001-11-23 23:04:58 +0000 | [diff] [blame] | 1449 | VARARG(data,bytes); |
| 1450 | @END |
| 1451 | |
Eric Pouech | 93bfa0d | 2002-06-02 21:22:22 +0000 | [diff] [blame] | 1452 | |
Eric Pouech | 0b83d4c | 2001-11-23 23:04:58 +0000 | [diff] [blame] | 1453 | /* move a rect (of data) in screen buffer content */ |
| 1454 | @REQ(move_console_output) |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1455 | obj_handle_t handle; /* handle to the console output */ |
Eric Pouech | 0b83d4c | 2001-11-23 23:04:58 +0000 | [diff] [blame] | 1456 | 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 Pouech | 93bfa0d | 2002-06-02 21:22:22 +0000 | [diff] [blame] | 1465 | /* Sends a signal to a process group */ |
| 1466 | @REQ(send_console_signal) |
| 1467 | int signal; /* the signal to send */ |
Alexandre Julliard | 54f2287 | 2002-10-03 19:54:57 +0000 | [diff] [blame] | 1468 | process_id_t group_id; /* the group to send the signal to */ |
Eric Pouech | 93bfa0d | 2002-06-02 21:22:22 +0000 | [diff] [blame] | 1469 | @END |
| 1470 | |
| 1471 | |
Mike McCormack | 0835107 | 2006-01-27 12:13:56 +0100 | [diff] [blame] | 1472 | /* enable directory change notifications */ |
| 1473 | @REQ(read_directory_changes) |
Alexandre Julliard | e0dcf4f | 2006-10-04 21:41:32 +0200 | [diff] [blame] | 1474 | unsigned int filter; /* notification filter */ |
Mike McCormack | e4faabf | 2006-02-21 16:58:19 +0900 | [diff] [blame] | 1475 | int subtree; /* watch the subtree? */ |
Mike McCormack | 0790f95 | 2006-02-07 16:50:36 +0100 | [diff] [blame] | 1476 | int want_data; /* flag indicating whether change data should be collected */ |
Alexandre Julliard | 111610c | 2007-03-20 20:21:12 +0100 | [diff] [blame] | 1477 | async_data_t async; /* async I/O parameters */ |
Mike McCormack | 0193211 | 2006-02-06 11:58:55 +0100 | [diff] [blame] | 1478 | @END |
| 1479 | |
| 1480 | |
| 1481 | @REQ(read_change) |
| 1482 | obj_handle_t handle; |
| 1483 | @REPLY |
Piotr Caban | b614a15 | 2011-01-18 11:24:33 +0100 | [diff] [blame] | 1484 | VARARG(events,filesystem_event); /* collected filesystem events */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1485 | @END |
| 1486 | |
| 1487 | |
| 1488 | /* Create a file mapping */ |
| 1489 | @REQ(create_mapping) |
Vitaliy Margolen | a996000 | 2005-10-27 18:30:37 +0000 | [diff] [blame] | 1490 | unsigned int access; /* wanted access rights */ |
| 1491 | unsigned int attributes; /* object attributes */ |
Alexandre Julliard | 0b0b6c3 | 2008-11-04 13:05:32 +0100 | [diff] [blame] | 1492 | unsigned int protect; /* protection flags (see below) */ |
Alexandre Julliard | 8c8c665 | 2008-12-31 15:14:29 +0100 | [diff] [blame] | 1493 | mem_size_t size; /* mapping size */ |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1494 | obj_handle_t file_handle; /* file handle */ |
Rob Shearman | 23df453 | 2007-10-25 19:09:54 +0100 | [diff] [blame] | 1495 | VARARG(objattr,object_attributes); /* object attributes */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1496 | @REPLY |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1497 | obj_handle_t handle; /* handle to the mapping */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1498 | @END |
Alexandre Julliard | 0b0b6c3 | 2008-11-04 13:05:32 +0100 | [diff] [blame] | 1499 | /* per-page protection flags */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1500 | #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 Julliard | af8bb2e | 2008-11-25 12:07:35 +0100 | [diff] [blame] | 1507 | #define VPROT_WRITEWATCH 0x80 |
Alexandre Julliard | 0b0b6c3 | 2008-11-04 13:05:32 +0100 | [diff] [blame] | 1508 | /* 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 Julliard | 7e94787 | 2008-11-04 13:16:01 +0100 | [diff] [blame] | 1512 | #define VPROT_NOEXEC 0x0800 /* don't force exec permission */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1513 | |
| 1514 | |
| 1515 | /* Open a mapping */ |
| 1516 | @REQ(open_mapping) |
| 1517 | unsigned int access; /* wanted access rights */ |
Vitaliy Margolen | a996000 | 2005-10-27 18:30:37 +0000 | [diff] [blame] | 1518 | unsigned int attributes; /* object attributes */ |
Vitaliy Margolen | 348a3d9 | 2005-12-02 16:13:13 +0100 | [diff] [blame] | 1519 | obj_handle_t rootdir; /* root directory */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1520 | VARARG(name,unicode_str); /* object name */ |
| 1521 | @REPLY |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1522 | obj_handle_t handle; /* handle to the mapping */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1523 | @END |
| 1524 | |
| 1525 | |
| 1526 | /* Get information about a file mapping */ |
| 1527 | @REQ(get_mapping_info) |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1528 | obj_handle_t handle; /* handle to the mapping */ |
Alexandre Julliard | 5e2ed6b | 2008-11-05 20:32:32 +0100 | [diff] [blame] | 1529 | unsigned int access; /* wanted access rights */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1530 | @REPLY |
Alexandre Julliard | 29d9759 | 2008-12-17 19:25:49 +0100 | [diff] [blame] | 1531 | mem_size_t size; /* mapping size */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1532 | int protect; /* protection flags */ |
| 1533 | int header_size; /* header size (for VPROT_IMAGE mapping) */ |
Alexandre Julliard | d066a9a | 2008-12-30 14:18:21 +0100 | [diff] [blame] | 1534 | client_ptr_t base; /* default base addr (for VPROT_IMAGE mapping) */ |
Alexandre Julliard | 4cbe867 | 2007-01-12 14:55:31 +0100 | [diff] [blame] | 1535 | obj_handle_t mapping; /* duplicate mapping handle unless removable */ |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1536 | obj_handle_t shared_file; /* shared mapping file handle */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1537 | @END |
| 1538 | |
| 1539 | |
Alexandre Julliard | cdce50f | 2008-11-05 12:24:05 +0100 | [diff] [blame] | 1540 | /* 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 Julliard | 29d9759 | 2008-12-17 19:25:49 +0100 | [diff] [blame] | 1545 | mem_size_t size; /* size of range starting at offset (page-aligned, in bytes) */ |
Alexandre Julliard | cdce50f | 2008-11-05 12:24:05 +0100 | [diff] [blame] | 1546 | 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 Julliard | 29d9759 | 2008-12-17 19:25:49 +0100 | [diff] [blame] | 1554 | mem_size_t size; /* size to set (page-aligned, in bytes) or 0 if only retrieving */ |
Alexandre Julliard | cdce50f | 2008-11-05 12:24:05 +0100 | [diff] [blame] | 1555 | @END |
| 1556 | |
| 1557 | |
Alexandre Julliard | db6e454 | 2008-12-09 11:49:37 +0100 | [diff] [blame] | 1558 | #define SNAP_PROCESS 0x00000001 |
| 1559 | #define SNAP_THREAD 0x00000002 |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1560 | /* Create a snapshot */ |
| 1561 | @REQ(create_snapshot) |
Alexandre Julliard | f11d0a3 | 2005-12-09 12:09:44 +0100 | [diff] [blame] | 1562 | unsigned int attributes; /* object attributes */ |
Alexandre Julliard | db6e454 | 2008-12-09 11:49:37 +0100 | [diff] [blame] | 1563 | unsigned int flags; /* snapshot flags (SNAP_*) */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1564 | @REPLY |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1565 | obj_handle_t handle; /* handle to the snapshot */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1566 | @END |
| 1567 | |
| 1568 | |
| 1569 | /* Get the next process from a snapshot */ |
| 1570 | @REQ(next_process) |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1571 | obj_handle_t handle; /* handle to the snapshot */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1572 | int reset; /* reset snapshot position? */ |
| 1573 | @REPLY |
| 1574 | int count; /* process usage count */ |
Alexandre Julliard | 54f2287 | 2002-10-03 19:54:57 +0000 | [diff] [blame] | 1575 | process_id_t pid; /* process id */ |
| 1576 | process_id_t ppid; /* parent process id */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1577 | int threads; /* number of threads */ |
| 1578 | int priority; /* process priority */ |
Eric Pouech | 9fd54b2 | 2003-09-16 01:07:21 +0000 | [diff] [blame] | 1579 | int handles; /* number of handles */ |
Hans Leidekker | d1b6cf9 | 2012-04-16 12:35:17 +0200 | [diff] [blame] | 1580 | int unix_pid; /* Unix pid */ |
Alexandre Julliard | c30cefb | 2003-09-30 01:04:19 +0000 | [diff] [blame] | 1581 | VARARG(filename,unicode_str); /* file name of main exe */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1582 | @END |
| 1583 | |
| 1584 | |
| 1585 | /* Get the next thread from a snapshot */ |
| 1586 | @REQ(next_thread) |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1587 | obj_handle_t handle; /* handle to the snapshot */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1588 | int reset; /* reset snapshot position? */ |
| 1589 | @REPLY |
| 1590 | int count; /* thread usage count */ |
Alexandre Julliard | 54f2287 | 2002-10-03 19:54:57 +0000 | [diff] [blame] | 1591 | process_id_t pid; /* process id */ |
| 1592 | thread_id_t tid; /* thread id */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1593 | int base_pri; /* base priority */ |
| 1594 | int delta_pri; /* delta priority */ |
| 1595 | @END |
| 1596 | |
| 1597 | |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1598 | /* Wait for a debug event */ |
| 1599 | @REQ(wait_debug_event) |
| 1600 | int get_handle; /* should we alloc a handle for waiting? */ |
| 1601 | @REPLY |
Alexandre Julliard | 54f2287 | 2002-10-03 19:54:57 +0000 | [diff] [blame] | 1602 | process_id_t pid; /* process id */ |
| 1603 | thread_id_t tid; /* thread id */ |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1604 | obj_handle_t wait; /* wait handle if no event ready */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1605 | VARARG(event,debug_event); /* debug event data */ |
| 1606 | @END |
| 1607 | |
| 1608 | |
| 1609 | /* Queue an exception event */ |
| 1610 | @REQ(queue_exception_event) |
Alexandre Julliard | 9f365e7 | 2009-01-02 20:12:46 +0100 | [diff] [blame] | 1611 | int first; /* first chance exception? */ |
| 1612 | unsigned int code; /* exception code */ |
| 1613 | unsigned int flags; /* exception flags */ |
| 1614 | client_ptr_t record; /* exception record */ |
| 1615 | client_ptr_t address; /* exception address */ |
| 1616 | data_size_t len; /* size of parameters */ |
| 1617 | VARARG(params,uints64,len);/* exception parameters */ |
| 1618 | VARARG(context,context); /* thread context */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1619 | @REPLY |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1620 | obj_handle_t handle; /* handle to the queued event */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1621 | @END |
| 1622 | |
| 1623 | |
| 1624 | /* Retrieve the status of an exception event */ |
| 1625 | @REQ(get_exception_status) |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1626 | obj_handle_t handle; /* handle to the queued event */ |
Alexandre Julliard | 9caa71e | 2001-11-30 18:46:42 +0000 | [diff] [blame] | 1627 | @REPLY |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1628 | VARARG(context,context); /* modified thread context */ |
| 1629 | @END |
| 1630 | |
| 1631 | |
| 1632 | /* Send an output string to the debugger */ |
| 1633 | @REQ(output_debug_string) |
Alexandre Julliard | 93737d5 | 2008-12-29 17:12:20 +0100 | [diff] [blame] | 1634 | data_size_t length; /* string length */ |
| 1635 | client_ptr_t string; /* string to display (in debugged process address space) */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1636 | @END |
| 1637 | |
| 1638 | |
| 1639 | /* Continue a debug event */ |
| 1640 | @REQ(continue_debug_event) |
Alexandre Julliard | 54f2287 | 2002-10-03 19:54:57 +0000 | [diff] [blame] | 1641 | process_id_t pid; /* process id to continue */ |
| 1642 | thread_id_t tid; /* thread id to continue */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1643 | int status; /* continuation status */ |
| 1644 | @END |
| 1645 | |
| 1646 | |
Eric Pouech | fbccb38 | 2002-02-27 01:28:30 +0000 | [diff] [blame] | 1647 | /* Start/stop debugging an existing process */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1648 | @REQ(debug_process) |
Alexandre Julliard | 54f2287 | 2002-10-03 19:54:57 +0000 | [diff] [blame] | 1649 | process_id_t pid; /* id of the process to debug */ |
Eric Pouech | fbccb38 | 2002-02-27 01:28:30 +0000 | [diff] [blame] | 1650 | int attach; /* 1=attaching / 0=detaching from the process */ |
| 1651 | @END |
| 1652 | |
| 1653 | |
Alexandre Julliard | 3c4538c | 2002-02-27 01:55:02 +0000 | [diff] [blame] | 1654 | /* Simulate a breakpoint in a process */ |
| 1655 | @REQ(debug_break) |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1656 | obj_handle_t handle; /* process handle */ |
Alexandre Julliard | 3c4538c | 2002-02-27 01:55:02 +0000 | [diff] [blame] | 1657 | @REPLY |
| 1658 | int self; /* was it the caller itself? */ |
| 1659 | @END |
| 1660 | |
| 1661 | |
Eric Pouech | fbccb38 | 2002-02-27 01:28:30 +0000 | [diff] [blame] | 1662 | /* Set debugger kill on exit flag */ |
| 1663 | @REQ(set_debugger_kill_on_exit) |
| 1664 | int kill_on_exit; /* 0=detach/1=kill debuggee when debugger dies */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1665 | @END |
| 1666 | |
| 1667 | |
| 1668 | /* Read data from a process address space */ |
| 1669 | @REQ(read_process_memory) |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1670 | obj_handle_t handle; /* process handle */ |
Alexandre Julliard | 8e9c156 | 2008-12-30 14:11:58 +0100 | [diff] [blame] | 1671 | client_ptr_t addr; /* addr to read from */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1672 | @REPLY |
| 1673 | VARARG(data,bytes); /* result data */ |
| 1674 | @END |
| 1675 | |
| 1676 | |
| 1677 | /* Write data to a process address space */ |
| 1678 | @REQ(write_process_memory) |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1679 | obj_handle_t handle; /* process handle */ |
Alexandre Julliard | 8e9c156 | 2008-12-30 14:11:58 +0100 | [diff] [blame] | 1680 | client_ptr_t addr; /* addr to write to */ |
Alexandre Julliard | 9caa71e | 2001-11-30 18:46:42 +0000 | [diff] [blame] | 1681 | VARARG(data,bytes); /* data to write */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1682 | @END |
| 1683 | |
| 1684 | |
| 1685 | /* Create a registry key */ |
| 1686 | @REQ(create_key) |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1687 | obj_handle_t parent; /* handle to the parent key */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1688 | unsigned int access; /* desired access rights */ |
Alexandre Julliard | 03b040c | 2005-12-09 14:52:04 +0100 | [diff] [blame] | 1689 | unsigned int attributes; /* object attributes */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1690 | unsigned int options; /* creation options */ |
Alexandre Julliard | 0f273c1 | 2006-07-26 10:43:25 +0200 | [diff] [blame] | 1691 | data_size_t namelen; /* length of key name in bytes */ |
Alexandre Julliard | 9caa71e | 2001-11-30 18:46:42 +0000 | [diff] [blame] | 1692 | VARARG(name,unicode_str,namelen); /* key name */ |
| 1693 | VARARG(class,unicode_str); /* class name */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1694 | @REPLY |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1695 | obj_handle_t hkey; /* handle to the created key */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1696 | int created; /* has it been newly created? */ |
| 1697 | @END |
| 1698 | |
| 1699 | /* Open a registry key */ |
| 1700 | @REQ(open_key) |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1701 | obj_handle_t parent; /* handle to the parent key */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1702 | unsigned int access; /* desired access rights */ |
Alexandre Julliard | 03b040c | 2005-12-09 14:52:04 +0100 | [diff] [blame] | 1703 | unsigned int attributes; /* object attributes */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1704 | VARARG(name,unicode_str); /* key name */ |
| 1705 | @REPLY |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1706 | obj_handle_t hkey; /* handle to the open key */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1707 | @END |
| 1708 | |
| 1709 | |
| 1710 | /* Delete a registry key */ |
| 1711 | @REQ(delete_key) |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1712 | obj_handle_t hkey; /* handle to the key */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1713 | @END |
| 1714 | |
| 1715 | |
Mike Hearn | 43cb03b | 2004-01-03 00:38:30 +0000 | [diff] [blame] | 1716 | /* Flush a registry key */ |
| 1717 | @REQ(flush_key) |
| 1718 | obj_handle_t hkey; /* handle to the key */ |
| 1719 | @END |
| 1720 | |
| 1721 | |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1722 | /* Enumerate registry subkeys */ |
| 1723 | @REQ(enum_key) |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1724 | obj_handle_t hkey; /* handle to registry key */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1725 | int index; /* index of subkey (or -1 for current key) */ |
Alexandre Julliard | 9caa71e | 2001-11-30 18:46:42 +0000 | [diff] [blame] | 1726 | int info_class; /* requested information class */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1727 | @REPLY |
| 1728 | int subkeys; /* number of subkeys */ |
| 1729 | int max_subkey; /* longest subkey name */ |
| 1730 | int max_class; /* longest class name */ |
| 1731 | int values; /* number of values */ |
| 1732 | int max_value; /* longest value name */ |
| 1733 | int max_data; /* longest value data */ |
Alexandre Julliard | 3343c40 | 2008-12-06 17:29:01 +0100 | [diff] [blame] | 1734 | timeout_t modif; /* last modification time */ |
Alexandre Julliard | 0f273c1 | 2006-07-26 10:43:25 +0200 | [diff] [blame] | 1735 | data_size_t total; /* total length needed for full name and class */ |
| 1736 | data_size_t namelen; /* length of key name in bytes */ |
Alexandre Julliard | 9caa71e | 2001-11-30 18:46:42 +0000 | [diff] [blame] | 1737 | VARARG(name,unicode_str,namelen); /* key name */ |
| 1738 | VARARG(class,unicode_str); /* class name */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1739 | @END |
| 1740 | |
| 1741 | |
| 1742 | /* Set a value of a registry key */ |
| 1743 | @REQ(set_key_value) |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1744 | obj_handle_t hkey; /* handle to registry key */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1745 | int type; /* value type */ |
Alexandre Julliard | 0f273c1 | 2006-07-26 10:43:25 +0200 | [diff] [blame] | 1746 | data_size_t namelen; /* length of value name in bytes */ |
Alexandre Julliard | 9caa71e | 2001-11-30 18:46:42 +0000 | [diff] [blame] | 1747 | VARARG(name,unicode_str,namelen); /* value name */ |
| 1748 | VARARG(data,bytes); /* value data */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1749 | @END |
| 1750 | |
| 1751 | |
| 1752 | /* Retrieve the value of a registry key */ |
| 1753 | @REQ(get_key_value) |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1754 | obj_handle_t hkey; /* handle to registry key */ |
Alexandre Julliard | 9caa71e | 2001-11-30 18:46:42 +0000 | [diff] [blame] | 1755 | VARARG(name,unicode_str); /* value name */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1756 | @REPLY |
| 1757 | int type; /* value type */ |
Alexandre Julliard | 0f273c1 | 2006-07-26 10:43:25 +0200 | [diff] [blame] | 1758 | data_size_t total; /* total length needed for data */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1759 | VARARG(data,bytes); /* value data */ |
| 1760 | @END |
| 1761 | |
| 1762 | |
| 1763 | /* Enumerate a value of a registry key */ |
| 1764 | @REQ(enum_key_value) |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1765 | obj_handle_t hkey; /* handle to registry key */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1766 | int index; /* value index */ |
Alexandre Julliard | 9caa71e | 2001-11-30 18:46:42 +0000 | [diff] [blame] | 1767 | int info_class; /* requested information class */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1768 | @REPLY |
| 1769 | int type; /* value type */ |
Alexandre Julliard | 0f273c1 | 2006-07-26 10:43:25 +0200 | [diff] [blame] | 1770 | data_size_t total; /* total length needed for full name and data */ |
| 1771 | data_size_t namelen; /* length of value name in bytes */ |
Alexandre Julliard | 9caa71e | 2001-11-30 18:46:42 +0000 | [diff] [blame] | 1772 | VARARG(name,unicode_str,namelen); /* value name */ |
| 1773 | VARARG(data,bytes); /* value data */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1774 | @END |
| 1775 | |
| 1776 | |
| 1777 | /* Delete a value of a registry key */ |
| 1778 | @REQ(delete_key_value) |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1779 | obj_handle_t hkey; /* handle to registry key */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1780 | VARARG(name,unicode_str); /* value name */ |
| 1781 | @END |
| 1782 | |
| 1783 | |
| 1784 | /* Load a registry branch from a file */ |
| 1785 | @REQ(load_registry) |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1786 | obj_handle_t hkey; /* root key to load to */ |
| 1787 | obj_handle_t file; /* file to load from */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1788 | VARARG(name,unicode_str); /* subkey name */ |
| 1789 | @END |
| 1790 | |
| 1791 | |
Mike McCormack | 5ac945c | 2003-08-19 03:08:17 +0000 | [diff] [blame] | 1792 | /* UnLoad a registry branch from a file */ |
| 1793 | @REQ(unload_registry) |
| 1794 | obj_handle_t hkey; /* root key to unload to */ |
| 1795 | @END |
| 1796 | |
| 1797 | |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1798 | /* Save a registry branch to a file */ |
| 1799 | @REQ(save_registry) |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1800 | obj_handle_t hkey; /* key to save */ |
| 1801 | obj_handle_t file; /* file to save to */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1802 | @END |
| 1803 | |
| 1804 | |
Alexandre Julliard | c07ce05 | 2004-05-07 04:13:21 +0000 | [diff] [blame] | 1805 | /* Add a registry key change notification */ |
Mike McCormack | 11f4b44 | 2002-11-25 02:47:32 +0000 | [diff] [blame] | 1806 | @REQ(set_registry_notification) |
| 1807 | obj_handle_t hkey; /* key to watch for changes */ |
| 1808 | obj_handle_t event; /* event to set */ |
| 1809 | int subtree; /* should we watch the whole subtree? */ |
| 1810 | unsigned int filter; /* things to watch */ |
| 1811 | @END |
| 1812 | |
| 1813 | |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1814 | /* Create a waitable timer */ |
| 1815 | @REQ(create_timer) |
Eric Pouech | 44158dd | 2004-12-02 18:05:37 +0000 | [diff] [blame] | 1816 | unsigned int access; /* wanted access rights */ |
Vitaliy Margolen | a996000 | 2005-10-27 18:30:37 +0000 | [diff] [blame] | 1817 | unsigned int attributes; /* object attributes */ |
Vitaliy Margolen | 7c5cb7a | 2005-12-02 16:05:54 +0100 | [diff] [blame] | 1818 | obj_handle_t rootdir; /* root directory */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1819 | int manual; /* manual reset */ |
| 1820 | VARARG(name,unicode_str); /* object name */ |
| 1821 | @REPLY |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1822 | obj_handle_t handle; /* handle to the timer */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1823 | @END |
| 1824 | |
| 1825 | |
| 1826 | /* Open a waitable timer */ |
| 1827 | @REQ(open_timer) |
| 1828 | unsigned int access; /* wanted access rights */ |
Vitaliy Margolen | a996000 | 2005-10-27 18:30:37 +0000 | [diff] [blame] | 1829 | unsigned int attributes; /* object attributes */ |
Vitaliy Margolen | 7c5cb7a | 2005-12-02 16:05:54 +0100 | [diff] [blame] | 1830 | obj_handle_t rootdir; /* root directory */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1831 | VARARG(name,unicode_str); /* object name */ |
| 1832 | @REPLY |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1833 | obj_handle_t handle; /* handle to the timer */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1834 | @END |
| 1835 | |
| 1836 | /* Set a waitable timer */ |
| 1837 | @REQ(set_timer) |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1838 | obj_handle_t handle; /* handle to the timer */ |
Alexandre Julliard | aaf477f | 2007-04-17 20:08:59 +0200 | [diff] [blame] | 1839 | timeout_t expire; /* next expiration absolute time */ |
Alexandre Julliard | 9b92a59 | 2008-12-29 17:43:01 +0100 | [diff] [blame] | 1840 | client_ptr_t callback; /* callback function */ |
| 1841 | client_ptr_t arg; /* callback argument */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1842 | int period; /* timer period in ms */ |
Eric Pouech | 4c591d4 | 2003-05-20 04:00:42 +0000 | [diff] [blame] | 1843 | @REPLY |
| 1844 | int signaled; /* was the timer signaled before this call ? */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1845 | @END |
| 1846 | |
| 1847 | /* Cancel a waitable timer */ |
| 1848 | @REQ(cancel_timer) |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1849 | obj_handle_t handle; /* handle to the timer */ |
Eric Pouech | 4c591d4 | 2003-05-20 04:00:42 +0000 | [diff] [blame] | 1850 | @REPLY |
| 1851 | int signaled; /* was the timer signaled before this calltime ? */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1852 | @END |
| 1853 | |
Robert Shearman | 7572b12 | 2004-12-13 21:10:58 +0000 | [diff] [blame] | 1854 | /* Get information on a waitable timer */ |
| 1855 | @REQ(get_timer_info) |
| 1856 | obj_handle_t handle; /* handle to the timer */ |
| 1857 | @REPLY |
Alexandre Julliard | aaf477f | 2007-04-17 20:08:59 +0200 | [diff] [blame] | 1858 | timeout_t when; /* absolute time when the timer next expires */ |
Robert Shearman | 7572b12 | 2004-12-13 21:10:58 +0000 | [diff] [blame] | 1859 | int signaled; /* is the timer signaled? */ |
| 1860 | @END |
| 1861 | |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1862 | |
| 1863 | /* Retrieve the current context of a thread */ |
| 1864 | @REQ(get_thread_context) |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1865 | obj_handle_t handle; /* thread handle */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1866 | unsigned int flags; /* context flags */ |
Alexandre Julliard | 45075b2 | 2011-05-06 12:25:34 +0200 | [diff] [blame] | 1867 | int suspend; /* suspend the thread if needed */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1868 | @REPLY |
Alexandre Julliard | 2878d99 | 2006-01-13 13:58:14 +0100 | [diff] [blame] | 1869 | int self; /* was it a handle to the current thread? */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1870 | VARARG(context,context); /* thread context */ |
| 1871 | @END |
| 1872 | |
| 1873 | |
| 1874 | /* Set the current context of a thread */ |
| 1875 | @REQ(set_thread_context) |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1876 | obj_handle_t handle; /* thread handle */ |
Alexandre Julliard | 45075b2 | 2011-05-06 12:25:34 +0200 | [diff] [blame] | 1877 | int suspend; /* suspend the thread if needed */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1878 | VARARG(context,context); /* thread context */ |
Alexandre Julliard | 2654be0 | 2006-01-11 20:20:32 +0100 | [diff] [blame] | 1879 | @REPLY |
| 1880 | int self; /* was it a handle to the current thread? */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1881 | @END |
| 1882 | |
| 1883 | |
| 1884 | /* Fetch a selector entry for a thread */ |
| 1885 | @REQ(get_selector_entry) |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1886 | obj_handle_t handle; /* thread handle */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1887 | int entry; /* LDT entry */ |
| 1888 | @REPLY |
| 1889 | unsigned int base; /* selector base */ |
| 1890 | unsigned int limit; /* selector limit */ |
| 1891 | unsigned char flags; /* selector flags */ |
| 1892 | @END |
| 1893 | |
| 1894 | |
| 1895 | /* Add an atom */ |
| 1896 | @REQ(add_atom) |
Eric Pouech | e626736 | 2005-05-10 15:15:50 +0000 | [diff] [blame] | 1897 | obj_handle_t table; /* which table to add atom to */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1898 | VARARG(name,unicode_str); /* atom name */ |
| 1899 | @REPLY |
Alexandre Julliard | d8a8c11 | 2001-10-12 18:45:29 +0000 | [diff] [blame] | 1900 | atom_t atom; /* resulting atom */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1901 | @END |
| 1902 | |
| 1903 | |
| 1904 | /* Delete an atom */ |
| 1905 | @REQ(delete_atom) |
Eric Pouech | e626736 | 2005-05-10 15:15:50 +0000 | [diff] [blame] | 1906 | obj_handle_t table; /* which table to delete atom from */ |
Alexandre Julliard | d8a8c11 | 2001-10-12 18:45:29 +0000 | [diff] [blame] | 1907 | atom_t atom; /* atom handle */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1908 | @END |
| 1909 | |
| 1910 | |
| 1911 | /* Find an atom */ |
| 1912 | @REQ(find_atom) |
Eric Pouech | e626736 | 2005-05-10 15:15:50 +0000 | [diff] [blame] | 1913 | obj_handle_t table; /* which table to find atom from */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1914 | VARARG(name,unicode_str); /* atom name */ |
| 1915 | @REPLY |
Alexandre Julliard | d8a8c11 | 2001-10-12 18:45:29 +0000 | [diff] [blame] | 1916 | atom_t atom; /* atom handle */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1917 | @END |
| 1918 | |
| 1919 | |
Eric Pouech | e626736 | 2005-05-10 15:15:50 +0000 | [diff] [blame] | 1920 | /* Get information about an atom */ |
| 1921 | @REQ(get_atom_information) |
| 1922 | obj_handle_t table; /* which table to find atom from */ |
Alexandre Julliard | d8a8c11 | 2001-10-12 18:45:29 +0000 | [diff] [blame] | 1923 | atom_t atom; /* atom handle */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1924 | @REPLY |
| 1925 | int count; /* atom lock count */ |
Eric Pouech | e626736 | 2005-05-10 15:15:50 +0000 | [diff] [blame] | 1926 | int pinned; /* whether the atom has been pinned */ |
Alexandre Julliard | 0f273c1 | 2006-07-26 10:43:25 +0200 | [diff] [blame] | 1927 | data_size_t total; /* actual length of atom name */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1928 | VARARG(name,unicode_str); /* atom name */ |
| 1929 | @END |
| 1930 | |
| 1931 | |
Eric Pouech | e626736 | 2005-05-10 15:15:50 +0000 | [diff] [blame] | 1932 | /* Set information about an atom */ |
| 1933 | @REQ(set_atom_information) |
| 1934 | obj_handle_t table; /* which table to find atom from */ |
| 1935 | atom_t atom; /* atom handle */ |
| 1936 | int pinned; /* whether to bump atom information */ |
| 1937 | @END |
| 1938 | |
| 1939 | |
| 1940 | /* Empty an atom table */ |
| 1941 | @REQ(empty_atom_table) |
| 1942 | obj_handle_t table; /* which table to find atom from */ |
| 1943 | int if_pinned; /* whether to delete pinned atoms */ |
| 1944 | @END |
| 1945 | |
| 1946 | |
| 1947 | /* Init an atom table */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1948 | @REQ(init_atom_table) |
Eric Pouech | e626736 | 2005-05-10 15:15:50 +0000 | [diff] [blame] | 1949 | int entries; /* number of entries (only for local) */ |
| 1950 | @REPLY |
| 1951 | obj_handle_t table; /* handle to the atom table */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1952 | @END |
| 1953 | |
| 1954 | |
| 1955 | /* Get the message queue of the current thread */ |
| 1956 | @REQ(get_msg_queue) |
| 1957 | @REPLY |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1958 | obj_handle_t handle; /* handle to the queue */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1959 | @END |
| 1960 | |
| 1961 | |
Alexandre Julliard | 0cb29f4 | 2007-04-04 18:02:01 +0200 | [diff] [blame] | 1962 | /* Set the file descriptor associated to the current thread queue */ |
| 1963 | @REQ(set_queue_fd) |
| 1964 | obj_handle_t handle; /* handle to the file descriptor */ |
| 1965 | @END |
| 1966 | |
| 1967 | |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1968 | /* Set the current message queue wakeup mask */ |
| 1969 | @REQ(set_queue_mask) |
| 1970 | unsigned int wake_mask; /* wakeup bits mask */ |
| 1971 | unsigned int changed_mask; /* changed bits mask */ |
| 1972 | int skip_wait; /* will we skip waiting if signaled? */ |
| 1973 | @REPLY |
| 1974 | unsigned int wake_bits; /* current wake bits */ |
| 1975 | unsigned int changed_bits; /* current changed bits */ |
| 1976 | @END |
| 1977 | |
| 1978 | |
| 1979 | /* Get the current message queue status */ |
| 1980 | @REQ(get_queue_status) |
| 1981 | int clear; /* should we clear the change bits? */ |
| 1982 | @REPLY |
| 1983 | unsigned int wake_bits; /* wake bits */ |
| 1984 | unsigned int changed_bits; /* changed bits since last time */ |
| 1985 | @END |
| 1986 | |
| 1987 | |
Alexandre Julliard | ce40ef1 | 2006-07-26 11:48:25 +0200 | [diff] [blame] | 1988 | /* Retrieve the process idle event */ |
| 1989 | @REQ(get_process_idle_event) |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1990 | obj_handle_t handle; /* process handle */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1991 | @REPLY |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 1992 | obj_handle_t event; /* handle to idle event */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 1993 | @END |
| 1994 | |
| 1995 | |
| 1996 | /* Send a message to a thread queue */ |
| 1997 | @REQ(send_message) |
Alexandre Julliard | 54f2287 | 2002-10-03 19:54:57 +0000 | [diff] [blame] | 1998 | thread_id_t id; /* thread id */ |
Alexandre Julliard | d253c58 | 2001-08-07 19:19:08 +0000 | [diff] [blame] | 1999 | int type; /* message type (see below) */ |
Alexandre Julliard | 09029b2 | 2003-07-11 04:09:42 +0000 | [diff] [blame] | 2000 | int flags; /* message flags (see below) */ |
Alexandre Julliard | 1a66d22 | 2001-08-28 18:44:52 +0000 | [diff] [blame] | 2001 | user_handle_t win; /* window handle */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 2002 | unsigned int msg; /* message code */ |
Alexandre Julliard | 31282b3 | 2008-12-10 16:01:50 +0100 | [diff] [blame] | 2003 | lparam_t wparam; /* parameters */ |
| 2004 | lparam_t lparam; /* parameters */ |
Alexandre Julliard | aaf477f | 2007-04-17 20:08:59 +0200 | [diff] [blame] | 2005 | timeout_t timeout; /* timeout for reply */ |
Alexandre Julliard | 3ad9798 | 2006-10-04 20:25:42 +0200 | [diff] [blame] | 2006 | VARARG(data,message_data); /* message data for sent messages */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 2007 | @END |
Alexandre Julliard | d253c58 | 2001-08-07 19:19:08 +0000 | [diff] [blame] | 2008 | |
Robert Shearman | a40ce39 | 2006-01-17 13:14:31 +0100 | [diff] [blame] | 2009 | @REQ(post_quit_message) |
| 2010 | int exit_code; /* exit code to return */ |
| 2011 | @END |
| 2012 | |
Alexandre Julliard | d253c58 | 2001-08-07 19:19:08 +0000 | [diff] [blame] | 2013 | enum message_type |
| 2014 | { |
| 2015 | MSG_ASCII, /* Ascii message (from SendMessageA) */ |
| 2016 | MSG_UNICODE, /* Unicode message (from SendMessageW) */ |
| 2017 | MSG_NOTIFY, /* notify message (from SendNotifyMessageW), always Unicode */ |
| 2018 | MSG_CALLBACK, /* callback message (from SendMessageCallbackW), always Unicode */ |
Alexandre Julliard | 039e131 | 2003-07-26 20:36:43 +0000 | [diff] [blame] | 2019 | MSG_CALLBACK_RESULT,/* result of a callback message */ |
Alexandre Julliard | d253c58 | 2001-08-07 19:19:08 +0000 | [diff] [blame] | 2020 | MSG_OTHER_PROCESS, /* sent from other process, may include vararg data, always Unicode */ |
| 2021 | MSG_POSTED, /* posted message (from PostMessageW), always Unicode */ |
Dmitry Timoshkov | 6dba0a7 | 2005-02-03 16:40:20 +0000 | [diff] [blame] | 2022 | MSG_HARDWARE, /* hardware message */ |
Alexandre Julliard | c7efa29 | 2011-03-02 19:53:03 +0100 | [diff] [blame] | 2023 | MSG_WINEVENT, /* winevent message */ |
| 2024 | MSG_HOOK_LL /* low-level hardware hook */ |
Alexandre Julliard | d253c58 | 2001-08-07 19:19:08 +0000 | [diff] [blame] | 2025 | }; |
Alexandre Julliard | 09029b2 | 2003-07-11 04:09:42 +0000 | [diff] [blame] | 2026 | #define SEND_MSG_ABORT_IF_HUNG 0x01 |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 2027 | |
| 2028 | |
Alexandre Julliard | d3b3096 | 2006-08-09 16:45:26 +0200 | [diff] [blame] | 2029 | /* Send a hardware message to a thread queue */ |
| 2030 | @REQ(send_hardware_message) |
Alexandre Julliard | d3b3096 | 2006-08-09 16:45:26 +0200 | [diff] [blame] | 2031 | user_handle_t win; /* window handle */ |
Alexandre Julliard | 02e30f5 | 2011-03-01 20:33:15 +0100 | [diff] [blame] | 2032 | hw_input_t input; /* input data */ |
| 2033 | unsigned int flags; /* flags (see below) */ |
Alexandre Julliard | c7efa29 | 2011-03-02 19:53:03 +0100 | [diff] [blame] | 2034 | @REPLY |
| 2035 | int wait; /* do we need to wait for a reply? */ |
Alexandre Julliard | 02442b5 | 2012-01-07 20:29:29 +0100 | [diff] [blame] | 2036 | int prev_x; /* previous cursor position */ |
| 2037 | int prev_y; |
| 2038 | int new_x; /* new cursor position */ |
| 2039 | int new_y; |
Alexandre Julliard | 5a30e31 | 2011-12-15 14:29:46 +0100 | [diff] [blame] | 2040 | VARARG(keystate,bytes); /* global state array for all the keys */ |
Alexandre Julliard | d3b3096 | 2006-08-09 16:45:26 +0200 | [diff] [blame] | 2041 | @END |
Alexandre Julliard | 02e30f5 | 2011-03-01 20:33:15 +0100 | [diff] [blame] | 2042 | #define SEND_HWMSG_INJECTED 0x01 |
Alexandre Julliard | d3b3096 | 2006-08-09 16:45:26 +0200 | [diff] [blame] | 2043 | |
| 2044 | |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 2045 | /* Get a message from the current queue */ |
| 2046 | @REQ(get_message) |
Alexandre Julliard | 89faee0 | 2007-02-21 15:21:05 +0100 | [diff] [blame] | 2047 | unsigned int flags; /* PM_* flags */ |
Alexandre Julliard | 1a66d22 | 2001-08-28 18:44:52 +0000 | [diff] [blame] | 2048 | user_handle_t get_win; /* window handle to get */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 2049 | unsigned int get_first; /* first message code to get */ |
| 2050 | unsigned int get_last; /* last message code to get */ |
Alexandre Julliard | 3e2f2a5 | 2005-04-20 13:03:59 +0000 | [diff] [blame] | 2051 | unsigned int hw_id; /* id of the previous hardware message (or 0) */ |
Alexandre Julliard | 2896540 | 2007-08-29 18:13:13 +0200 | [diff] [blame] | 2052 | unsigned int wake_mask; /* wakeup bits mask */ |
| 2053 | unsigned int changed_mask; /* changed bits mask */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 2054 | @REPLY |
Alexandre Julliard | 1a66d22 | 2001-08-28 18:44:52 +0000 | [diff] [blame] | 2055 | user_handle_t win; /* window handle */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 2056 | unsigned int msg; /* message code */ |
Alexandre Julliard | 31282b3 | 2008-12-10 16:01:50 +0100 | [diff] [blame] | 2057 | lparam_t wparam; /* parameters */ |
| 2058 | lparam_t lparam; /* parameters */ |
Alexandre Julliard | d1d7b9f | 2008-12-24 11:59:09 +0100 | [diff] [blame] | 2059 | int type; /* message type */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 2060 | unsigned int time; /* message time */ |
Alexandre Julliard | 6334235 | 2005-05-11 13:03:15 +0000 | [diff] [blame] | 2061 | unsigned int active_hooks; /* active hooks bitmap */ |
Alexandre Julliard | 0f273c1 | 2006-07-26 10:43:25 +0200 | [diff] [blame] | 2062 | data_size_t total; /* total size of extra data */ |
Alexandre Julliard | 59dc456 | 2006-10-04 16:04:53 +0200 | [diff] [blame] | 2063 | VARARG(data,message_data); /* message data for sent messages */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 2064 | @END |
Alexandre Julliard | 89faee0 | 2007-02-21 15:21:05 +0100 | [diff] [blame] | 2065 | |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 2066 | |
| 2067 | /* Reply to a sent message */ |
| 2068 | @REQ(reply_message) |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 2069 | int remove; /* should we remove the message? */ |
Alexandre Julliard | 3cd817b | 2008-12-24 12:06:18 +0100 | [diff] [blame] | 2070 | lparam_t result; /* message result */ |
Alexandre Julliard | d253c58 | 2001-08-07 19:19:08 +0000 | [diff] [blame] | 2071 | VARARG(data,bytes); /* message data for sent messages */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 2072 | @END |
| 2073 | |
| 2074 | |
Alexandre Julliard | 0bc8377 | 2005-03-23 10:33:17 +0000 | [diff] [blame] | 2075 | /* Accept the current hardware message */ |
| 2076 | @REQ(accept_hardware_message) |
Alexandre Julliard | 3e2f2a5 | 2005-04-20 13:03:59 +0000 | [diff] [blame] | 2077 | unsigned int hw_id; /* id of the hardware message */ |
Alexandre Julliard | 0bc8377 | 2005-03-23 10:33:17 +0000 | [diff] [blame] | 2078 | int remove; /* should we remove the message? */ |
| 2079 | user_handle_t new_win; /* new destination window for current message */ |
| 2080 | @END |
| 2081 | |
| 2082 | |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 2083 | /* Retrieve the reply for the last message sent */ |
| 2084 | @REQ(get_message_reply) |
| 2085 | int cancel; /* cancel message if not ready? */ |
| 2086 | @REPLY |
Alexandre Julliard | 31282b3 | 2008-12-10 16:01:50 +0100 | [diff] [blame] | 2087 | lparam_t result; /* message result */ |
Alexandre Julliard | d253c58 | 2001-08-07 19:19:08 +0000 | [diff] [blame] | 2088 | VARARG(data,bytes); /* message data for sent messages */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 2089 | @END |
| 2090 | |
| 2091 | |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 2092 | /* Set a window timer */ |
| 2093 | @REQ(set_win_timer) |
Alexandre Julliard | 1a66d22 | 2001-08-28 18:44:52 +0000 | [diff] [blame] | 2094 | user_handle_t win; /* window handle */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 2095 | unsigned int msg; /* message to post */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 2096 | unsigned int rate; /* timer rate in ms */ |
Alexandre Julliard | 31282b3 | 2008-12-10 16:01:50 +0100 | [diff] [blame] | 2097 | lparam_t id; /* timer id */ |
| 2098 | lparam_t lparam; /* message lparam (callback proc) */ |
Alexandre Julliard | ff986a5 | 2004-11-29 18:08:18 +0000 | [diff] [blame] | 2099 | @REPLY |
Alexandre Julliard | 31282b3 | 2008-12-10 16:01:50 +0100 | [diff] [blame] | 2100 | lparam_t id; /* timer id */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 2101 | @END |
| 2102 | |
| 2103 | |
| 2104 | /* Kill a window timer */ |
| 2105 | @REQ(kill_win_timer) |
Alexandre Julliard | 1a66d22 | 2001-08-28 18:44:52 +0000 | [diff] [blame] | 2106 | user_handle_t win; /* window handle */ |
Alexandre Julliard | 31282b3 | 2008-12-10 16:01:50 +0100 | [diff] [blame] | 2107 | lparam_t id; /* timer id */ |
Alexandre Julliard | 3cd817b | 2008-12-24 12:06:18 +0100 | [diff] [blame] | 2108 | unsigned int msg; /* message to post */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 2109 | @END |
| 2110 | |
| 2111 | |
Dmitry Timoshkov | e735e19 | 2007-12-28 10:59:13 +0800 | [diff] [blame] | 2112 | /* check if the thread owning the window is hung */ |
| 2113 | @REQ(is_window_hung) |
| 2114 | user_handle_t win; /* window handle */ |
| 2115 | @REPLY |
| 2116 | int is_hung; |
| 2117 | @END |
| 2118 | |
| 2119 | |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 2120 | /* Retrieve info about a serial port */ |
| 2121 | @REQ(get_serial_info) |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 2122 | obj_handle_t handle; /* handle to comm port */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 2123 | @REPLY |
| 2124 | unsigned int readinterval; |
| 2125 | unsigned int readconst; |
| 2126 | unsigned int readmult; |
| 2127 | unsigned int writeconst; |
| 2128 | unsigned int writemult; |
| 2129 | unsigned int eventmask; |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 2130 | @END |
| 2131 | |
| 2132 | |
| 2133 | /* Set info about a serial port */ |
| 2134 | @REQ(set_serial_info) |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 2135 | obj_handle_t handle; /* handle to comm port */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 2136 | int flags; /* bitmask to set values (see below) */ |
| 2137 | unsigned int readinterval; |
| 2138 | unsigned int readconst; |
| 2139 | unsigned int readmult; |
| 2140 | unsigned int writeconst; |
| 2141 | unsigned int writemult; |
| 2142 | unsigned int eventmask; |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 2143 | @END |
| 2144 | #define SERIALINFO_SET_TIMEOUTS 0x01 |
| 2145 | #define SERIALINFO_SET_MASK 0x02 |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 2146 | |
| 2147 | |
Eric Pouech | 4634447 | 2005-01-14 19:54:38 +0000 | [diff] [blame] | 2148 | /* Create an async I/O */ |
Mike McCormack | 6f011c0 | 2001-12-20 00:07:05 +0000 | [diff] [blame] | 2149 | @REQ(register_async) |
Eric Pouech | 4634447 | 2005-01-14 19:54:38 +0000 | [diff] [blame] | 2150 | int type; /* type of queue to look after */ |
Alexandre Julliard | 111610c | 2007-03-20 20:21:12 +0100 | [diff] [blame] | 2151 | async_data_t async; /* async I/O parameters */ |
Alexandre Julliard | 8c8c665 | 2008-12-31 15:14:29 +0100 | [diff] [blame] | 2152 | int count; /* count - usually # of bytes to be read/written */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 2153 | @END |
| 2154 | #define ASYNC_TYPE_READ 0x01 |
| 2155 | #define ASYNC_TYPE_WRITE 0x02 |
| 2156 | #define ASYNC_TYPE_WAIT 0x03 |
| 2157 | |
| 2158 | |
Eric Pouech | 4634447 | 2005-01-14 19:54:38 +0000 | [diff] [blame] | 2159 | /* Cancel all async op on a fd */ |
| 2160 | @REQ(cancel_async) |
| 2161 | obj_handle_t handle; /* handle to comm port, socket or file */ |
Mike Kaplinskiy | b05774e | 2009-08-09 00:08:27 -0400 | [diff] [blame] | 2162 | client_ptr_t iosb; /* I/O status block (NULL=all) */ |
| 2163 | int only_thread; /* cancel matching this thread */ |
Eric Pouech | 4634447 | 2005-01-14 19:54:38 +0000 | [diff] [blame] | 2164 | @END |
| 2165 | |
| 2166 | |
Alexandre Julliard | 6357143 | 2007-04-16 14:45:03 +0200 | [diff] [blame] | 2167 | /* Perform an ioctl on a file */ |
| 2168 | @REQ(ioctl) |
Alexandre Julliard | 737148c | 2007-04-17 22:06:13 +0200 | [diff] [blame] | 2169 | ioctl_code_t code; /* ioctl code */ |
Alexandre Julliard | 6357143 | 2007-04-16 14:45:03 +0200 | [diff] [blame] | 2170 | async_data_t async; /* async I/O parameters */ |
Alexandre Julliard | 7ec95c5 | 2008-12-30 20:37:20 +0100 | [diff] [blame] | 2171 | int blocking; /* whether it's a blocking ioctl */ |
Alexandre Julliard | 6357143 | 2007-04-16 14:45:03 +0200 | [diff] [blame] | 2172 | VARARG(in_data,bytes); /* ioctl input data */ |
| 2173 | @REPLY |
Alexandre Julliard | fd59e15 | 2007-05-03 17:43:18 +0200 | [diff] [blame] | 2174 | obj_handle_t wait; /* handle to wait on for blocking ioctl */ |
| 2175 | unsigned int options; /* device open options */ |
Alexandre Julliard | 6357143 | 2007-04-16 14:45:03 +0200 | [diff] [blame] | 2176 | VARARG(out_data,bytes); /* ioctl output data */ |
| 2177 | @END |
| 2178 | |
| 2179 | |
Alexandre Julliard | aafcfe7 | 2007-05-08 20:45:44 +0200 | [diff] [blame] | 2180 | /* Retrieve results of an async ioctl */ |
| 2181 | @REQ(get_ioctl_result) |
| 2182 | obj_handle_t handle; /* handle to the device */ |
Alexandre Julliard | 6db2010 | 2008-12-30 21:09:41 +0100 | [diff] [blame] | 2183 | client_ptr_t user_arg; /* user arg used to identify the request */ |
Alexandre Julliard | aafcfe7 | 2007-05-08 20:45:44 +0200 | [diff] [blame] | 2184 | @REPLY |
| 2185 | VARARG(out_data,bytes); /* ioctl output data */ |
| 2186 | @END |
| 2187 | |
| 2188 | |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 2189 | /* Create a named pipe */ |
| 2190 | @REQ(create_named_pipe) |
Eric Pouech | e21aa6a | 2005-09-26 11:02:45 +0000 | [diff] [blame] | 2191 | unsigned int access; |
Vitaliy Margolen | a996000 | 2005-10-27 18:30:37 +0000 | [diff] [blame] | 2192 | unsigned int attributes; /* object attributes */ |
Vitaliy Margolen | babfa79 | 2005-12-05 13:09:35 +0100 | [diff] [blame] | 2193 | obj_handle_t rootdir; /* root directory */ |
Eric Pouech | 5a2591d | 2005-04-18 14:57:04 +0000 | [diff] [blame] | 2194 | unsigned int options; |
Bernhard Loos | 039bacb | 2011-09-26 13:57:15 +0200 | [diff] [blame] | 2195 | unsigned int sharing; |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 2196 | unsigned int maxinstances; |
| 2197 | unsigned int outsize; |
| 2198 | unsigned int insize; |
Alexandre Julliard | aaf477f | 2007-04-17 20:08:59 +0200 | [diff] [blame] | 2199 | timeout_t timeout; |
Alexandre Julliard | 8c8c665 | 2008-12-31 15:14:29 +0100 | [diff] [blame] | 2200 | unsigned int flags; |
Alexandre Julliard | 8ae5761 | 2001-12-31 22:26:51 +0000 | [diff] [blame] | 2201 | VARARG(name,unicode_str); /* pipe name */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 2202 | @REPLY |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 2203 | obj_handle_t handle; /* handle to the pipe */ |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 2204 | @END |
| 2205 | |
Eric Pouech | 5a2591d | 2005-04-18 14:57:04 +0000 | [diff] [blame] | 2206 | /* flags in create_named_pipe and get_named_pipe_info */ |
| 2207 | #define NAMED_PIPE_MESSAGE_STREAM_WRITE 0x0001 |
| 2208 | #define NAMED_PIPE_MESSAGE_STREAM_READ 0x0002 |
| 2209 | #define NAMED_PIPE_NONBLOCKING_MODE 0x0004 |
Eric Pouech | 1d6e259 | 2006-05-26 12:10:11 +0200 | [diff] [blame] | 2210 | #define NAMED_PIPE_SERVER_END 0x8000 |
Alexandre Julliard | 37ec927 | 2001-07-19 00:35:37 +0000 | [diff] [blame] | 2211 | |
Mike McCormack | bf55457 | 2001-08-23 23:29:20 +0000 | [diff] [blame] | 2212 | |
Mike McCormack | f2e7ce7 | 2001-08-27 19:03:42 +0000 | [diff] [blame] | 2213 | @REQ(get_named_pipe_info) |
Alexandre Julliard | 5188574 | 2002-05-30 20:12:58 +0000 | [diff] [blame] | 2214 | obj_handle_t handle; |
Mike McCormack | f2e7ce7 | 2001-08-27 19:03:42 +0000 | [diff] [blame] | 2215 | @REPLY |
| 2216 | unsigned int flags; |
Bernhard Loos | 07b681e | 2011-09-29 11:21:14 +0200 | [diff] [blame] | 2217 | unsigned int sharing; |
Mike McCormack | f2e7ce7 | 2001-08-27 19:03:42 +0000 | [diff] [blame] | 2218 | unsigned int maxinstances; |
Eric Pouech | 1d6e259 | 2006-05-26 12:10:11 +0200 | [diff] [blame] | 2219 | unsigned int instances; |
Mike McCormack | f2e7ce7 | 2001-08-27 19:03:42 +0000 | [diff] [blame] | 2220 | unsigned int outsize; |
| 2221 | unsigned int insize; |
| 2222 | @END |
| 2223 | |
Alexandre Julliard | 1a66d22 | 2001-08-28 18:44:52 +0000 | [diff] [blame] | 2224 | |
Alexandre Julliard | 1a66d22 | 2001-08-28 18:44:52 +0000 | [diff] [blame] | 2225 | /* Create a window */ |
| 2226 | @REQ(create_window) |
Alexandre Julliard | a09da0c | 2001-09-21 21:08:40 +0000 | [diff] [blame] | 2227 | user_handle_t parent; /* parent window */ |
| 2228 | user_handle_t owner; /* owner window */ |
Alexandre Julliard | d8a8c11 | 2001-10-12 18:45:29 +0000 | [diff] [blame] | 2229 | atom_t atom; /* class atom */ |
Alexandre Julliard | cb2788e | 2008-12-29 16:41:44 +0100 | [diff] [blame] | 2230 | mod_handle_t instance; /* module instance */ |
Alexandre Julliard | 1fc461f | 2007-11-02 15:16:25 +0100 | [diff] [blame] | 2231 | VARARG(class,unicode_str); /* class name */ |
Alexandre Julliard | 1a66d22 | 2001-08-28 18:44:52 +0000 | [diff] [blame] | 2232 | @REPLY |
Alexandre Julliard | a09da0c | 2001-09-21 21:08:40 +0000 | [diff] [blame] | 2233 | user_handle_t handle; /* created window */ |
Alexandre Julliard | 4be3d4c | 2006-03-06 15:00:37 +0100 | [diff] [blame] | 2234 | user_handle_t parent; /* full handle of parent */ |
| 2235 | user_handle_t owner; /* full handle of owner */ |
Alexandre Julliard | bd13ab8 | 2003-12-11 05:34:53 +0000 | [diff] [blame] | 2236 | int extra; /* number of extra bytes */ |
Alexandre Julliard | 0cd3ff6 | 2008-12-29 17:24:33 +0100 | [diff] [blame] | 2237 | client_ptr_t class_ptr; /* pointer to class in client address space */ |
Alexandre Julliard | 1a66d22 | 2001-08-28 18:44:52 +0000 | [diff] [blame] | 2238 | @END |
| 2239 | |
| 2240 | |
Alexandre Julliard | 1a66d22 | 2001-08-28 18:44:52 +0000 | [diff] [blame] | 2241 | /* Destroy a window */ |
| 2242 | @REQ(destroy_window) |
| 2243 | user_handle_t handle; /* handle to the window */ |
| 2244 | @END |
| 2245 | |
| 2246 | |
Alexandre Julliard | 8c51880 | 2005-07-08 11:37:40 +0000 | [diff] [blame] | 2247 | /* Retrieve the desktop window for the current thread */ |
| 2248 | @REQ(get_desktop_window) |
Alexandre Julliard | 1a4f6e5 | 2006-03-07 11:42:35 +0100 | [diff] [blame] | 2249 | int force; /* force creation if it doesn't exist */ |
Alexandre Julliard | 8c51880 | 2005-07-08 11:37:40 +0000 | [diff] [blame] | 2250 | @REPLY |
Alexandre Julliard | 6b36e21 | 2008-06-25 14:26:14 +0200 | [diff] [blame] | 2251 | user_handle_t top_window; /* handle to the desktop window */ |
| 2252 | user_handle_t msg_window; /* handle to the top-level HWND_MESSAGE parent */ |
Alexandre Julliard | 8c51880 | 2005-07-08 11:37:40 +0000 | [diff] [blame] | 2253 | @END |
| 2254 | |
| 2255 | |
Alexandre Julliard | ddc3317 | 2001-10-22 19:08:33 +0000 | [diff] [blame] | 2256 | /* Set a window owner */ |
| 2257 | @REQ(set_window_owner) |
| 2258 | user_handle_t handle; /* handle to the window */ |
| 2259 | user_handle_t owner; /* new owner */ |
| 2260 | @REPLY |
| 2261 | user_handle_t full_owner; /* full handle of new owner */ |
Alexandre Julliard | 7dafa61 | 2002-09-25 00:21:56 +0000 | [diff] [blame] | 2262 | user_handle_t prev_owner; /* full handle of previous owner */ |
Alexandre Julliard | ddc3317 | 2001-10-22 19:08:33 +0000 | [diff] [blame] | 2263 | @END |
| 2264 | |
| 2265 | |
Alexandre Julliard | 1a66d22 | 2001-08-28 18:44:52 +0000 | [diff] [blame] | 2266 | /* Get information from a window handle */ |
| 2267 | @REQ(get_window_info) |
| 2268 | user_handle_t handle; /* handle to the window */ |
| 2269 | @REPLY |
| 2270 | user_handle_t full_handle; /* full 32-bit handle */ |
Alexandre Julliard | 5030bda | 2002-10-11 23:41:06 +0000 | [diff] [blame] | 2271 | user_handle_t last_active; /* last active popup */ |
Alexandre Julliard | 54f2287 | 2002-10-03 19:54:57 +0000 | [diff] [blame] | 2272 | process_id_t pid; /* process owning the window */ |
| 2273 | thread_id_t tid; /* thread owning the window */ |
Alexandre Julliard | ddc3317 | 2001-10-22 19:08:33 +0000 | [diff] [blame] | 2274 | atom_t atom; /* class atom */ |
Alexandre Julliard | 0c914e4 | 2008-12-30 23:17:52 +0100 | [diff] [blame] | 2275 | int is_unicode; /* ANSI or unicode */ |
Alexandre Julliard | 1a66d22 | 2001-08-28 18:44:52 +0000 | [diff] [blame] | 2276 | @END |
Alexandre Julliard | a09da0c | 2001-09-21 21:08:40 +0000 | [diff] [blame] | 2277 | |
| 2278 | |
Alexandre Julliard | ddc3317 | 2001-10-22 19:08:33 +0000 | [diff] [blame] | 2279 | /* Set some information in a window */ |
| 2280 | @REQ(set_window_info) |
Alexandre Julliard | f2c4e09 | 2008-12-29 16:47:51 +0100 | [diff] [blame] | 2281 | unsigned short flags; /* flags for fields to set (see below) */ |
| 2282 | short int is_unicode; /* ANSI or unicode */ |
Alexandre Julliard | e0dcf4f | 2006-10-04 21:41:32 +0200 | [diff] [blame] | 2283 | user_handle_t handle; /* handle to the window */ |
Alexandre Julliard | ddc3317 | 2001-10-22 19:08:33 +0000 | [diff] [blame] | 2284 | unsigned int style; /* window style */ |
| 2285 | unsigned int ex_style; /* window extended style */ |
| 2286 | unsigned int id; /* window id */ |
Alexandre Julliard | cb2788e | 2008-12-29 16:41:44 +0100 | [diff] [blame] | 2287 | mod_handle_t instance; /* creator instance */ |
Alexandre Julliard | 31282b3 | 2008-12-10 16:01:50 +0100 | [diff] [blame] | 2288 | lparam_t user_data; /* user-specific data */ |
Alexandre Julliard | 97903d2 | 2003-11-26 22:15:41 +0000 | [diff] [blame] | 2289 | int extra_offset; /* offset to set in extra bytes */ |
Alexandre Julliard | 0f273c1 | 2006-07-26 10:43:25 +0200 | [diff] [blame] | 2290 | data_size_t extra_size; /* size to set in extra bytes */ |
Alexandre Julliard | 31282b3 | 2008-12-10 16:01:50 +0100 | [diff] [blame] | 2291 | lparam_t extra_value; /* value to set in extra bytes */ |
Alexandre Julliard | ddc3317 | 2001-10-22 19:08:33 +0000 | [diff] [blame] | 2292 | @REPLY |
| 2293 | unsigned int old_style; /* old window style */ |
| 2294 | unsigned int old_ex_style; /* old window extended style */ |
Alexandre Julliard | cb2788e | 2008-12-29 16:41:44 +0100 | [diff] [blame] | 2295 | mod_handle_t old_instance; /* old creator instance */ |
Alexandre Julliard | 31282b3 | 2008-12-10 16:01:50 +0100 | [diff] [blame] | 2296 | lparam_t old_user_data; /* old user-specific data */ |
| 2297 | lparam_t old_extra_value; /* old value in extra bytes */ |
Alexandre Julliard | f2c4e09 | 2008-12-29 16:47:51 +0100 | [diff] [blame] | 2298 | unsigned int old_id; /* old window id */ |
Alexandre Julliard | ddc3317 | 2001-10-22 19:08:33 +0000 | [diff] [blame] | 2299 | @END |
| 2300 | #define SET_WIN_STYLE 0x01 |
| 2301 | #define SET_WIN_EXSTYLE 0x02 |
| 2302 | #define SET_WIN_ID 0x04 |
| 2303 | #define SET_WIN_INSTANCE 0x08 |
| 2304 | #define SET_WIN_USERDATA 0x10 |
Alexandre Julliard | ebf1243 | 2003-12-10 01:34:51 +0000 | [diff] [blame] | 2305 | #define SET_WIN_EXTRA 0x20 |
Dmitry Timoshkov | 86af38c | 2005-07-07 12:02:31 +0000 | [diff] [blame] | 2306 | #define SET_WIN_UNICODE 0x40 |
Alexandre Julliard | ddc3317 | 2001-10-22 19:08:33 +0000 | [diff] [blame] | 2307 | |
| 2308 | |
Alexandre Julliard | 4d32a47 | 2005-03-25 10:38:56 +0000 | [diff] [blame] | 2309 | /* Set the parent of a window */ |
| 2310 | @REQ(set_parent) |
| 2311 | user_handle_t handle; /* handle to the window */ |
| 2312 | user_handle_t parent; /* handle to the parent */ |
| 2313 | @REPLY |
| 2314 | user_handle_t old_parent; /* old parent window */ |
| 2315 | user_handle_t full_parent; /* full handle of new parent */ |
| 2316 | @END |
| 2317 | |
| 2318 | |
Alexandre Julliard | a09da0c | 2001-09-21 21:08:40 +0000 | [diff] [blame] | 2319 | /* Get a list of the window parents, up to the root of the tree */ |
| 2320 | @REQ(get_window_parents) |
| 2321 | user_handle_t handle; /* handle to the window */ |
| 2322 | @REPLY |
| 2323 | int count; /* total count of parents */ |
| 2324 | VARARG(parents,user_handles); /* parent handles */ |
| 2325 | @END |
| 2326 | |
| 2327 | |
| 2328 | /* Get a list of the window children */ |
| 2329 | @REQ(get_window_children) |
Alexandre Julliard | 34fe91b | 2008-03-18 15:17:40 +0100 | [diff] [blame] | 2330 | obj_handle_t desktop; /* handle to desktop */ |
Alexandre Julliard | a09da0c | 2001-09-21 21:08:40 +0000 | [diff] [blame] | 2331 | user_handle_t parent; /* parent window */ |
Alexandre Julliard | d8a8c11 | 2001-10-12 18:45:29 +0000 | [diff] [blame] | 2332 | atom_t atom; /* class atom for the listed children */ |
Alexandre Julliard | 54f2287 | 2002-10-03 19:54:57 +0000 | [diff] [blame] | 2333 | thread_id_t tid; /* thread owning the listed children */ |
Alexandre Julliard | a54a990 | 2007-11-02 15:26:49 +0100 | [diff] [blame] | 2334 | VARARG(class,unicode_str); /* class name */ |
Alexandre Julliard | a09da0c | 2001-09-21 21:08:40 +0000 | [diff] [blame] | 2335 | @REPLY |
| 2336 | int count; /* total count of children */ |
Alexandre Julliard | 7695d69 | 2001-09-24 01:19:59 +0000 | [diff] [blame] | 2337 | VARARG(children,user_handles); /* children handles */ |
Alexandre Julliard | a09da0c | 2001-09-21 21:08:40 +0000 | [diff] [blame] | 2338 | @END |
| 2339 | |
| 2340 | |
Alexandre Julliard | 4616dcb | 2004-07-20 22:17:38 +0000 | [diff] [blame] | 2341 | /* Get a list of the window children that contain a given point */ |
| 2342 | @REQ(get_window_children_from_point) |
| 2343 | user_handle_t parent; /* parent window */ |
| 2344 | int x; /* point in parent coordinates */ |
| 2345 | int y; |
| 2346 | @REPLY |
| 2347 | int count; /* total count of children */ |
| 2348 | VARARG(children,user_handles); /* children handles */ |
| 2349 | @END |
| 2350 | |
| 2351 | |
Alexandre Julliard | a09da0c | 2001-09-21 21:08:40 +0000 | [diff] [blame] | 2352 | /* Get window tree information from a window handle */ |
| 2353 | @REQ(get_window_tree) |
| 2354 | user_handle_t handle; /* handle to the window */ |
| 2355 | @REPLY |
| 2356 | user_handle_t parent; /* parent window */ |
| 2357 | user_handle_t owner; /* owner window */ |
| 2358 | user_handle_t next_sibling; /* next sibling in Z-order */ |
| 2359 | user_handle_t prev_sibling; /* prev sibling in Z-order */ |
| 2360 | user_handle_t first_sibling; /* first sibling in Z-order */ |
| 2361 | user_handle_t last_sibling; /* last sibling in Z-order */ |
| 2362 | user_handle_t first_child; /* first child */ |
| 2363 | user_handle_t last_child; /* last child */ |
| 2364 | @END |
Alexandre Julliard | 7a2017d | 2001-10-12 19:10:26 +0000 | [diff] [blame] | 2365 | |
Alexandre Julliard | 5defa49 | 2004-12-07 17:31:53 +0000 | [diff] [blame] | 2366 | /* Set the position and Z order of a window */ |
| 2367 | @REQ(set_window_pos) |
Alexandre Julliard | e0dcf4f | 2006-10-04 21:41:32 +0200 | [diff] [blame] | 2368 | unsigned int flags; /* SWP_* flags */ |
Alexandre Julliard | 0d50965 | 2001-10-16 21:55:37 +0000 | [diff] [blame] | 2369 | user_handle_t handle; /* handle to the window */ |
Alexandre Julliard | 5defa49 | 2004-12-07 17:31:53 +0000 | [diff] [blame] | 2370 | user_handle_t previous; /* previous window in Z order */ |
Alexandre Julliard | bc20ff5 | 2010-09-23 15:47:46 +0200 | [diff] [blame] | 2371 | rectangle_t window; /* window rectangle (in parent coords) */ |
| 2372 | rectangle_t client; /* client rectangle (in parent coords) */ |
Alexandre Julliard | fcd6859 | 2010-10-07 14:43:29 +0200 | [diff] [blame] | 2373 | VARARG(valid,rectangles); /* valid rectangles from WM_NCCALCSIZE (in parent coords) */ |
Alexandre Julliard | 5defa49 | 2004-12-07 17:31:53 +0000 | [diff] [blame] | 2374 | @REPLY |
| 2375 | unsigned int new_style; /* new window style */ |
Alexandre Julliard | 917f288 | 2007-10-31 17:51:05 +0100 | [diff] [blame] | 2376 | unsigned int new_ex_style; /* new window extended style */ |
Alexandre Julliard | 0d50965 | 2001-10-16 21:55:37 +0000 | [diff] [blame] | 2377 | @END |
| 2378 | |
| 2379 | |
| 2380 | /* Get the window and client rectangles of a window */ |
| 2381 | @REQ(get_window_rectangles) |
| 2382 | user_handle_t handle; /* handle to the window */ |
Alexandre Julliard | 7295b67 | 2010-09-07 14:31:30 +0200 | [diff] [blame] | 2383 | int relative; /* coords relative to (see below) */ |
Alexandre Julliard | 0d50965 | 2001-10-16 21:55:37 +0000 | [diff] [blame] | 2384 | @REPLY |
| 2385 | rectangle_t window; /* window rectangle */ |
Alexandre Julliard | f756090 | 2005-03-17 19:10:41 +0000 | [diff] [blame] | 2386 | rectangle_t visible; /* visible part of the window rectangle */ |
Alexandre Julliard | 0d50965 | 2001-10-16 21:55:37 +0000 | [diff] [blame] | 2387 | rectangle_t client; /* client rectangle */ |
| 2388 | @END |
Alexandre Julliard | 7295b67 | 2010-09-07 14:31:30 +0200 | [diff] [blame] | 2389 | enum coords_relative |
| 2390 | { |
| 2391 | COORDS_CLIENT, /* relative to client area */ |
| 2392 | COORDS_WINDOW, /* relative to whole window area */ |
| 2393 | COORDS_PARENT, /* relative to parent's client area */ |
| 2394 | COORDS_SCREEN /* relative to screen origin */ |
| 2395 | }; |
Alexandre Julliard | 0d50965 | 2001-10-16 21:55:37 +0000 | [diff] [blame] | 2396 | |
| 2397 | |
Alexandre Julliard | 805bdc5 | 2001-11-13 22:23:48 +0000 | [diff] [blame] | 2398 | /* Get the window text */ |
| 2399 | @REQ(get_window_text) |
| 2400 | user_handle_t handle; /* handle to the window */ |
| 2401 | @REPLY |
| 2402 | VARARG(text,unicode_str); /* window text */ |
| 2403 | @END |
| 2404 | |
| 2405 | |
| 2406 | /* Set the window text */ |
| 2407 | @REQ(set_window_text) |
| 2408 | user_handle_t handle; /* handle to the window */ |
| 2409 | VARARG(text,unicode_str); /* window text */ |
| 2410 | @END |
| 2411 | |
| 2412 | |
Alexandre Julliard | 0d50965 | 2001-10-16 21:55:37 +0000 | [diff] [blame] | 2413 | /* Get the coordinates offset between two windows */ |
| 2414 | @REQ(get_windows_offset) |
| 2415 | user_handle_t from; /* handle to the first window */ |
| 2416 | user_handle_t to; /* handle to the second window */ |
| 2417 | @REPLY |
| 2418 | int x; /* x coordinate offset */ |
| 2419 | int y; /* y coordinate offset */ |
Alexandre Julliard | 5702324 | 2010-09-22 20:27:52 +0200 | [diff] [blame] | 2420 | int mirror; /* whether to mirror the x coordinate */ |
Alexandre Julliard | 0d50965 | 2001-10-16 21:55:37 +0000 | [diff] [blame] | 2421 | @END |
| 2422 | |
Alexandre Julliard | 7a2017d | 2001-10-12 19:10:26 +0000 | [diff] [blame] | 2423 | |
Alexandre Julliard | e8d86b7 | 2004-06-23 20:44:58 +0000 | [diff] [blame] | 2424 | /* Get the visible region of a window */ |
| 2425 | @REQ(get_visible_region) |
| 2426 | user_handle_t window; /* handle to the window */ |
Alexandre Julliard | e8d86b7 | 2004-06-23 20:44:58 +0000 | [diff] [blame] | 2427 | unsigned int flags; /* DCX flags */ |
| 2428 | @REPLY |
Alexandre Julliard | bc75f2f | 2005-03-31 15:36:57 +0000 | [diff] [blame] | 2429 | user_handle_t top_win; /* top window to clip against */ |
Ulrich Czekalla | 4bdf434 | 2006-12-07 10:43:59 -0500 | [diff] [blame] | 2430 | rectangle_t top_rect; /* top window visible rect with screen coords */ |
| 2431 | rectangle_t win_rect; /* window rect in screen coords */ |
Alexandre Julliard | 0f273c1 | 2006-07-26 10:43:25 +0200 | [diff] [blame] | 2432 | data_size_t total_size; /* total size of the resulting region */ |
Alexandre Julliard | bc75f2f | 2005-03-31 15:36:57 +0000 | [diff] [blame] | 2433 | VARARG(region,rectangles); /* list of rectangles for the region (in screen coords) */ |
Alexandre Julliard | e8d86b7 | 2004-06-23 20:44:58 +0000 | [diff] [blame] | 2434 | @END |
| 2435 | |
| 2436 | |
Alexandre Julliard | 618a7e5 | 2004-06-29 03:53:25 +0000 | [diff] [blame] | 2437 | /* Get the window region */ |
| 2438 | @REQ(get_window_region) |
| 2439 | user_handle_t window; /* handle to the window */ |
| 2440 | @REPLY |
Alexandre Julliard | 0f273c1 | 2006-07-26 10:43:25 +0200 | [diff] [blame] | 2441 | data_size_t total_size; /* total size of the resulting region */ |
Alexandre Julliard | d56ac06 | 2010-09-27 20:46:41 +0200 | [diff] [blame] | 2442 | VARARG(region,rectangles); /* list of rectangles for the region (in window coords) */ |
Alexandre Julliard | 618a7e5 | 2004-06-29 03:53:25 +0000 | [diff] [blame] | 2443 | @END |
| 2444 | |
| 2445 | |
| 2446 | /* Set the window region */ |
| 2447 | @REQ(set_window_region) |
| 2448 | user_handle_t window; /* handle to the window */ |
Alexandre Julliard | 1767b45 | 2007-03-05 16:43:09 +0100 | [diff] [blame] | 2449 | int redraw; /* redraw the window? */ |
Alexandre Julliard | d56ac06 | 2010-09-27 20:46:41 +0200 | [diff] [blame] | 2450 | VARARG(region,rectangles); /* list of rectangles for the region (in window coords) */ |
Alexandre Julliard | 618a7e5 | 2004-06-29 03:53:25 +0000 | [diff] [blame] | 2451 | @END |
| 2452 | |
| 2453 | |
Alexandre Julliard | 5defa49 | 2004-12-07 17:31:53 +0000 | [diff] [blame] | 2454 | /* Get the window update region */ |
| 2455 | @REQ(get_update_region) |
| 2456 | user_handle_t window; /* handle to the window */ |
Alexandre Julliard | db412aa | 2005-05-31 13:37:16 +0000 | [diff] [blame] | 2457 | user_handle_t from_child; /* child to start searching from */ |
Alexandre Julliard | 5defa49 | 2004-12-07 17:31:53 +0000 | [diff] [blame] | 2458 | unsigned int flags; /* update flags (see below) */ |
| 2459 | @REPLY |
| 2460 | user_handle_t child; /* child to repaint (or window itself) */ |
| 2461 | unsigned int flags; /* resulting update flags (see below) */ |
Alexandre Julliard | 0f273c1 | 2006-07-26 10:43:25 +0200 | [diff] [blame] | 2462 | data_size_t total_size; /* total size of the resulting region */ |
Alexandre Julliard | bc20ff5 | 2010-09-23 15:47:46 +0200 | [diff] [blame] | 2463 | VARARG(region,rectangles); /* list of rectangles for the region (in screen coords) */ |
Alexandre Julliard | 5defa49 | 2004-12-07 17:31:53 +0000 | [diff] [blame] | 2464 | @END |
| 2465 | #define UPDATE_NONCLIENT 0x01 /* get region for repainting non-client area */ |
| 2466 | #define UPDATE_ERASE 0x02 /* get region for erasing client area */ |
| 2467 | #define UPDATE_PAINT 0x04 /* get region for painting client area */ |
| 2468 | #define UPDATE_INTERNALPAINT 0x08 /* get region if internal paint is pending */ |
| 2469 | #define UPDATE_ALLCHILDREN 0x10 /* force repaint of all children */ |
| 2470 | #define UPDATE_NOCHILDREN 0x20 /* don't try to repaint any children */ |
| 2471 | #define UPDATE_NOREGION 0x40 /* don't return a region, only the flags */ |
Alexandre Julliard | df13cee | 2007-08-27 16:41:08 +0200 | [diff] [blame] | 2472 | #define UPDATE_DELAYED_ERASE 0x80 /* still needs erase after BeginPaint */ |
Alexandre Julliard | 5defa49 | 2004-12-07 17:31:53 +0000 | [diff] [blame] | 2473 | |
| 2474 | |
Alexandre Julliard | 5054c79 | 2005-03-21 12:37:00 +0000 | [diff] [blame] | 2475 | /* Update the z order of a window so that a given rectangle is fully visible */ |
| 2476 | @REQ(update_window_zorder) |
| 2477 | user_handle_t window; /* handle to the window */ |
Alexandre Julliard | 6ee4521 | 2010-09-27 21:12:49 +0200 | [diff] [blame] | 2478 | rectangle_t rect; /* rectangle that must be visible (in client coords) */ |
Alexandre Julliard | 5054c79 | 2005-03-21 12:37:00 +0000 | [diff] [blame] | 2479 | @END |
| 2480 | |
| 2481 | |
Alexandre Julliard | 5defa49 | 2004-12-07 17:31:53 +0000 | [diff] [blame] | 2482 | /* Mark parts of a window as needing a redraw */ |
| 2483 | @REQ(redraw_window) |
| 2484 | user_handle_t window; /* handle to the window */ |
| 2485 | unsigned int flags; /* RDW_* flags */ |
Alexandre Julliard | d56ac06 | 2010-09-27 20:46:41 +0200 | [diff] [blame] | 2486 | VARARG(region,rectangles); /* list of rectangles for the region (in window coords) */ |
Alexandre Julliard | 5defa49 | 2004-12-07 17:31:53 +0000 | [diff] [blame] | 2487 | @END |
| 2488 | |
| 2489 | |
Alexandre Julliard | 7a2017d | 2001-10-12 19:10:26 +0000 | [diff] [blame] | 2490 | /* Set a window property */ |
| 2491 | @REQ(set_window_property) |
| 2492 | user_handle_t window; /* handle to the window */ |
Alexandre Julliard | 517b2f6 | 2008-12-10 16:21:32 +0100 | [diff] [blame] | 2493 | lparam_t data; /* data to store */ |
Alexandre Julliard | 3cd817b | 2008-12-24 12:06:18 +0100 | [diff] [blame] | 2494 | atom_t atom; /* property atom (if no name specified) */ |
Alexandre Julliard | 9e73cdd | 2005-05-11 19:01:10 +0000 | [diff] [blame] | 2495 | VARARG(name,unicode_str); /* property name */ |
Alexandre Julliard | 7a2017d | 2001-10-12 19:10:26 +0000 | [diff] [blame] | 2496 | @END |
| 2497 | |
| 2498 | |
| 2499 | /* Remove a window property */ |
| 2500 | @REQ(remove_window_property) |
| 2501 | user_handle_t window; /* handle to the window */ |
Alexandre Julliard | 9e73cdd | 2005-05-11 19:01:10 +0000 | [diff] [blame] | 2502 | atom_t atom; /* property atom (if no name specified) */ |
| 2503 | VARARG(name,unicode_str); /* property name */ |
Alexandre Julliard | 7a2017d | 2001-10-12 19:10:26 +0000 | [diff] [blame] | 2504 | @REPLY |
Alexandre Julliard | 517b2f6 | 2008-12-10 16:21:32 +0100 | [diff] [blame] | 2505 | lparam_t data; /* data stored in property */ |
Alexandre Julliard | 7a2017d | 2001-10-12 19:10:26 +0000 | [diff] [blame] | 2506 | @END |
| 2507 | |
| 2508 | |
| 2509 | /* Get a window property */ |
| 2510 | @REQ(get_window_property) |
| 2511 | user_handle_t window; /* handle to the window */ |
Alexandre Julliard | 9e73cdd | 2005-05-11 19:01:10 +0000 | [diff] [blame] | 2512 | atom_t atom; /* property atom (if no name specified) */ |
| 2513 | VARARG(name,unicode_str); /* property name */ |
Alexandre Julliard | 7a2017d | 2001-10-12 19:10:26 +0000 | [diff] [blame] | 2514 | @REPLY |
Alexandre Julliard | 517b2f6 | 2008-12-10 16:21:32 +0100 | [diff] [blame] | 2515 | lparam_t data; /* data stored in property */ |
Alexandre Julliard | 7a2017d | 2001-10-12 19:10:26 +0000 | [diff] [blame] | 2516 | @END |
| 2517 | |
| 2518 | |
| 2519 | /* Get the list of properties of a window */ |
| 2520 | @REQ(get_window_properties) |
| 2521 | user_handle_t window; /* handle to the window */ |
| 2522 | @REPLY |
Alexandre Julliard | 9caa71e | 2001-11-30 18:46:42 +0000 | [diff] [blame] | 2523 | int total; /* total number of properties */ |
Alexandre Julliard | 7a2017d | 2001-10-12 19:10:26 +0000 | [diff] [blame] | 2524 | VARARG(props,properties); /* list of properties */ |
| 2525 | @END |
Alexandre Julliard | ab5063b | 2002-10-11 18:50:15 +0000 | [diff] [blame] | 2526 | |
| 2527 | |
Alexandre Julliard | 1bf96e0 | 2005-06-08 18:44:50 +0000 | [diff] [blame] | 2528 | /* Create a window station */ |
| 2529 | @REQ(create_winstation) |
| 2530 | unsigned int flags; /* window station flags */ |
| 2531 | unsigned int access; /* wanted access rights */ |
Vitaliy Margolen | 83ef91c | 2005-11-21 12:05:38 +0000 | [diff] [blame] | 2532 | unsigned int attributes; /* object attributes */ |
Alexandre Julliard | 1bf96e0 | 2005-06-08 18:44:50 +0000 | [diff] [blame] | 2533 | VARARG(name,unicode_str); /* object name */ |
| 2534 | @REPLY |
| 2535 | obj_handle_t handle; /* handle to the window station */ |
| 2536 | @END |
| 2537 | |
| 2538 | |
| 2539 | /* Open a handle to a window station */ |
| 2540 | @REQ(open_winstation) |
| 2541 | unsigned int access; /* wanted access rights */ |
Vitaliy Margolen | 83ef91c | 2005-11-21 12:05:38 +0000 | [diff] [blame] | 2542 | unsigned int attributes; /* object attributes */ |
Alexandre Julliard | 1bf96e0 | 2005-06-08 18:44:50 +0000 | [diff] [blame] | 2543 | VARARG(name,unicode_str); /* object name */ |
| 2544 | @REPLY |
| 2545 | obj_handle_t handle; /* handle to the window station */ |
| 2546 | @END |
| 2547 | |
| 2548 | |
| 2549 | /* Close a window station */ |
| 2550 | @REQ(close_winstation) |
| 2551 | obj_handle_t handle; /* handle to the window station */ |
| 2552 | @END |
| 2553 | |
| 2554 | |
| 2555 | /* Get the process current window station */ |
| 2556 | @REQ(get_process_winstation) |
| 2557 | @REPLY |
| 2558 | obj_handle_t handle; /* handle to the window station */ |
| 2559 | @END |
| 2560 | |
| 2561 | |
| 2562 | /* Set the process current window station */ |
| 2563 | @REQ(set_process_winstation) |
| 2564 | obj_handle_t handle; /* handle to the window station */ |
| 2565 | @END |
| 2566 | |
| 2567 | |
Alexandre Julliard | d30b574 | 2007-12-05 16:45:32 +0100 | [diff] [blame] | 2568 | /* Enumerate window stations */ |
| 2569 | @REQ(enum_winstation) |
| 2570 | unsigned int index; /* current index */ |
| 2571 | @REPLY |
| 2572 | unsigned int next; /* next index */ |
| 2573 | VARARG(name,unicode_str); /* window station name */ |
| 2574 | @END |
| 2575 | |
| 2576 | |
Alexandre Julliard | 1bf96e0 | 2005-06-08 18:44:50 +0000 | [diff] [blame] | 2577 | /* Create a desktop */ |
| 2578 | @REQ(create_desktop) |
| 2579 | unsigned int flags; /* desktop flags */ |
| 2580 | unsigned int access; /* wanted access rights */ |
Vitaliy Margolen | 83ef91c | 2005-11-21 12:05:38 +0000 | [diff] [blame] | 2581 | unsigned int attributes; /* object attributes */ |
Alexandre Julliard | 1bf96e0 | 2005-06-08 18:44:50 +0000 | [diff] [blame] | 2582 | VARARG(name,unicode_str); /* object name */ |
| 2583 | @REPLY |
| 2584 | obj_handle_t handle; /* handle to the desktop */ |
| 2585 | @END |
| 2586 | |
| 2587 | |
| 2588 | /* Open a handle to a desktop */ |
| 2589 | @REQ(open_desktop) |
Maarten Lankhorst | 70a6495 | 2008-04-01 12:15:55 -0700 | [diff] [blame] | 2590 | obj_handle_t winsta; /* window station to open (null allowed) */ |
Alexandre Julliard | 1bf96e0 | 2005-06-08 18:44:50 +0000 | [diff] [blame] | 2591 | unsigned int flags; /* desktop flags */ |
| 2592 | unsigned int access; /* wanted access rights */ |
Vitaliy Margolen | 83ef91c | 2005-11-21 12:05:38 +0000 | [diff] [blame] | 2593 | unsigned int attributes; /* object attributes */ |
Alexandre Julliard | 1bf96e0 | 2005-06-08 18:44:50 +0000 | [diff] [blame] | 2594 | VARARG(name,unicode_str); /* object name */ |
| 2595 | @REPLY |
| 2596 | obj_handle_t handle; /* handle to the desktop */ |
| 2597 | @END |
| 2598 | |
| 2599 | |
| 2600 | /* Close a desktop */ |
| 2601 | @REQ(close_desktop) |
| 2602 | obj_handle_t handle; /* handle to the desktop */ |
| 2603 | @END |
| 2604 | |
| 2605 | |
| 2606 | /* Get the thread current desktop */ |
| 2607 | @REQ(get_thread_desktop) |
| 2608 | thread_id_t tid; /* thread id */ |
| 2609 | @REPLY |
| 2610 | obj_handle_t handle; /* handle to the desktop */ |
| 2611 | @END |
| 2612 | |
| 2613 | |
| 2614 | /* Set the thread current desktop */ |
| 2615 | @REQ(set_thread_desktop) |
| 2616 | obj_handle_t handle; /* handle to the desktop */ |
| 2617 | @END |
| 2618 | |
| 2619 | |
Alexandre Julliard | d30b574 | 2007-12-05 16:45:32 +0100 | [diff] [blame] | 2620 | /* Enumerate desktops */ |
| 2621 | @REQ(enum_desktop) |
| 2622 | obj_handle_t winstation; /* handle to the window station */ |
| 2623 | unsigned int index; /* current index */ |
| 2624 | @REPLY |
| 2625 | unsigned int next; /* next index */ |
| 2626 | VARARG(name,unicode_str); /* window station name */ |
| 2627 | @END |
| 2628 | |
| 2629 | |
Alexandre Julliard | 1bf96e0 | 2005-06-08 18:44:50 +0000 | [diff] [blame] | 2630 | /* Get/set information about a user object (window station or desktop) */ |
| 2631 | @REQ(set_user_object_info) |
| 2632 | obj_handle_t handle; /* handle to the object */ |
| 2633 | unsigned int flags; /* information to set */ |
| 2634 | unsigned int obj_flags; /* new object flags */ |
| 2635 | @REPLY |
| 2636 | int is_desktop; /* is object a desktop? */ |
| 2637 | unsigned int old_obj_flags; /* old object flags */ |
| 2638 | VARARG(name,unicode_str); /* object name */ |
| 2639 | @END |
| 2640 | #define SET_USER_OBJECT_FLAGS 1 |
| 2641 | |
| 2642 | |
Vincent Povirk | 4c83138 | 2011-05-26 15:52:17 -0500 | [diff] [blame] | 2643 | /* Register a hotkey */ |
| 2644 | @REQ(register_hotkey) |
| 2645 | user_handle_t window; /* handle to the window */ |
| 2646 | int id; /* hotkey identifier */ |
| 2647 | unsigned int flags; /* modifier keys */ |
| 2648 | unsigned int vkey; /* virtual key code */ |
| 2649 | @REPLY |
| 2650 | int replaced; /* did we replace an existing hotkey? */ |
| 2651 | unsigned int flags; /* flags of replaced hotkey */ |
| 2652 | unsigned int vkey; /* virtual key code of replaced hotkey */ |
| 2653 | @END |
| 2654 | |
| 2655 | |
| 2656 | /* Unregister a hotkey */ |
| 2657 | @REQ(unregister_hotkey) |
| 2658 | user_handle_t window; /* handle to the window */ |
| 2659 | int id; /* hotkey identifier */ |
| 2660 | @REPLY |
| 2661 | unsigned int flags; /* flags of removed hotkey */ |
| 2662 | unsigned int vkey; /* virtual key code of removed hotkey */ |
| 2663 | @END |
| 2664 | |
| 2665 | |
Alexandre Julliard | ab5063b | 2002-10-11 18:50:15 +0000 | [diff] [blame] | 2666 | /* Attach (or detach) thread inputs */ |
| 2667 | @REQ(attach_thread_input) |
| 2668 | thread_id_t tid_from; /* thread to be attached */ |
| 2669 | thread_id_t tid_to; /* thread to which tid_from should be attached */ |
| 2670 | int attach; /* is it an attach? */ |
| 2671 | @END |
| 2672 | |
| 2673 | |
| 2674 | /* Get input data for a given thread */ |
| 2675 | @REQ(get_thread_input) |
| 2676 | thread_id_t tid; /* id of thread */ |
| 2677 | @REPLY |
| 2678 | user_handle_t focus; /* handle to the focus window */ |
| 2679 | user_handle_t capture; /* handle to the capture window */ |
| 2680 | user_handle_t active; /* handle to the active window */ |
| 2681 | user_handle_t foreground; /* handle to the global foreground window */ |
| 2682 | user_handle_t menu_owner; /* handle to the menu owner */ |
| 2683 | user_handle_t move_size; /* handle to the moving/resizing window */ |
| 2684 | user_handle_t caret; /* handle to the caret window */ |
Alexandre Julliard | c545982 | 2010-05-11 11:21:03 +0200 | [diff] [blame] | 2685 | user_handle_t cursor; /* handle to the cursor */ |
| 2686 | int show_count; /* cursor show count */ |
Alexandre Julliard | ab5063b | 2002-10-11 18:50:15 +0000 | [diff] [blame] | 2687 | rectangle_t rect; /* caret rectangle */ |
| 2688 | @END |
Alexandre Julliard | 5030bda | 2002-10-11 23:41:06 +0000 | [diff] [blame] | 2689 | |
Mike McCormack | abe70f7 | 2005-04-28 12:04:14 +0000 | [diff] [blame] | 2690 | |
| 2691 | /* Get the time of the last input event */ |
| 2692 | @REQ(get_last_input_time) |
| 2693 | @REPLY |
| 2694 | unsigned int time; |
| 2695 | @END |
| 2696 | |
| 2697 | |
Alexandre Julliard | 8ba666f | 2003-01-08 19:56:31 +0000 | [diff] [blame] | 2698 | /* Retrieve queue keyboard state for a given thread */ |
| 2699 | @REQ(get_key_state) |
| 2700 | thread_id_t tid; /* id of thread */ |
| 2701 | int key; /* optional key code or -1 */ |
| 2702 | @REPLY |
| 2703 | unsigned char state; /* state of specified key */ |
| 2704 | VARARG(keystate,bytes); /* state array for all the keys */ |
| 2705 | @END |
| 2706 | |
| 2707 | /* Set queue keyboard state for a given thread */ |
| 2708 | @REQ(set_key_state) |
| 2709 | thread_id_t tid; /* id of thread */ |
Alexandre Julliard | 36c76dc | 2012-02-02 17:19:34 +0100 | [diff] [blame] | 2710 | int async; /* whether to change the async state too */ |
Alexandre Julliard | 8ba666f | 2003-01-08 19:56:31 +0000 | [diff] [blame] | 2711 | VARARG(keystate,bytes); /* state array for all the keys */ |
| 2712 | @END |
| 2713 | |
Alexandre Julliard | 5030bda | 2002-10-11 23:41:06 +0000 | [diff] [blame] | 2714 | /* Set the system foreground window */ |
| 2715 | @REQ(set_foreground_window) |
| 2716 | user_handle_t handle; /* handle to the foreground window */ |
| 2717 | @REPLY |
| 2718 | user_handle_t previous; /* handle to the previous foreground window */ |
| 2719 | int send_msg_old; /* whether we have to send a msg to the old window */ |
| 2720 | int send_msg_new; /* whether we have to send a msg to the new window */ |
| 2721 | @END |
| 2722 | |
| 2723 | /* Set the current thread focus window */ |
| 2724 | @REQ(set_focus_window) |
| 2725 | user_handle_t handle; /* handle to the focus window */ |
| 2726 | @REPLY |
| 2727 | user_handle_t previous; /* handle to the previous focus window */ |
| 2728 | @END |
| 2729 | |
| 2730 | /* Set the current thread active window */ |
| 2731 | @REQ(set_active_window) |
| 2732 | user_handle_t handle; /* handle to the active window */ |
| 2733 | @REPLY |
| 2734 | user_handle_t previous; /* handle to the previous active window */ |
| 2735 | @END |
Alexandre Julliard | a9e8f59 | 2002-10-12 01:24:37 +0000 | [diff] [blame] | 2736 | |
| 2737 | /* Set the current thread capture window */ |
| 2738 | @REQ(set_capture_window) |
| 2739 | user_handle_t handle; /* handle to the capture window */ |
| 2740 | unsigned int flags; /* capture flags (see below) */ |
| 2741 | @REPLY |
| 2742 | user_handle_t previous; /* handle to the previous capture window */ |
| 2743 | user_handle_t full_handle; /* full 32-bit handle of new capture window */ |
| 2744 | @END |
| 2745 | #define CAPTURE_MENU 0x01 /* capture is for a menu */ |
| 2746 | #define CAPTURE_MOVESIZE 0x02 /* capture is for moving/resizing */ |
Alexandre Julliard | 11e3523 | 2002-10-17 01:24:33 +0000 | [diff] [blame] | 2747 | |
| 2748 | |
| 2749 | /* Set the current thread caret window */ |
| 2750 | @REQ(set_caret_window) |
| 2751 | user_handle_t handle; /* handle to the caret window */ |
| 2752 | int width; /* caret width */ |
| 2753 | int height; /* caret height */ |
| 2754 | @REPLY |
| 2755 | user_handle_t previous; /* handle to the previous caret window */ |
| 2756 | rectangle_t old_rect; /* previous caret rectangle */ |
| 2757 | int old_hide; /* previous hide count */ |
| 2758 | int old_state; /* previous caret state (1=on, 0=off) */ |
| 2759 | @END |
| 2760 | |
| 2761 | |
| 2762 | /* Set the current thread caret information */ |
| 2763 | @REQ(set_caret_info) |
| 2764 | unsigned int flags; /* caret flags (see below) */ |
| 2765 | user_handle_t handle; /* handle to the caret window */ |
| 2766 | int x; /* caret x position */ |
| 2767 | int y; /* caret y position */ |
| 2768 | int hide; /* increment for hide count (can be negative to show it) */ |
| 2769 | int state; /* caret state (1=on, 0=off, -1=toggle current state) */ |
| 2770 | @REPLY |
| 2771 | user_handle_t full_handle; /* handle to the current caret window */ |
| 2772 | rectangle_t old_rect; /* previous caret rectangle */ |
| 2773 | int old_hide; /* previous hide count */ |
| 2774 | int old_state; /* previous caret state (1=on, 0=off) */ |
| 2775 | @END |
| 2776 | #define SET_CARET_POS 0x01 /* set the caret position from x,y */ |
| 2777 | #define SET_CARET_HIDE 0x02 /* increment the caret hide count */ |
| 2778 | #define SET_CARET_STATE 0x04 /* set the caret on/off state */ |
Alexandre Julliard | 0286135 | 2002-10-29 00:41:42 +0000 | [diff] [blame] | 2779 | |
| 2780 | |
| 2781 | /* Set a window hook */ |
| 2782 | @REQ(set_hook) |
| 2783 | int id; /* id of the hook */ |
Dmitry Timoshkov | 6dba0a7 | 2005-02-03 16:40:20 +0000 | [diff] [blame] | 2784 | process_id_t pid; /* id of process to set the hook into */ |
Alexandre Julliard | 0286135 | 2002-10-29 00:41:42 +0000 | [diff] [blame] | 2785 | thread_id_t tid; /* id of thread to set the hook into */ |
Dmitry Timoshkov | 6dba0a7 | 2005-02-03 16:40:20 +0000 | [diff] [blame] | 2786 | int event_min; |
| 2787 | int event_max; |
Alexandre Julliard | cc55fd3 | 2008-12-29 17:35:35 +0100 | [diff] [blame] | 2788 | client_ptr_t proc; /* hook procedure */ |
Dmitry Timoshkov | 6dba0a7 | 2005-02-03 16:40:20 +0000 | [diff] [blame] | 2789 | int flags; |
Alexandre Julliard | 0286135 | 2002-10-29 00:41:42 +0000 | [diff] [blame] | 2790 | int unicode; /* is it a unicode hook? */ |
Alexandre Julliard | 14e68ba | 2002-11-20 19:54:32 +0000 | [diff] [blame] | 2791 | VARARG(module,unicode_str); /* module name */ |
Alexandre Julliard | 0286135 | 2002-10-29 00:41:42 +0000 | [diff] [blame] | 2792 | @REPLY |
| 2793 | user_handle_t handle; /* handle to the hook */ |
Alexandre Julliard | 6334235 | 2005-05-11 13:03:15 +0000 | [diff] [blame] | 2794 | unsigned int active_hooks; /* active hooks bitmap */ |
Alexandre Julliard | 0286135 | 2002-10-29 00:41:42 +0000 | [diff] [blame] | 2795 | @END |
| 2796 | |
| 2797 | |
| 2798 | /* Remove a window hook */ |
| 2799 | @REQ(remove_hook) |
| 2800 | user_handle_t handle; /* handle to the hook */ |
Alexandre Julliard | cc55fd3 | 2008-12-29 17:35:35 +0100 | [diff] [blame] | 2801 | client_ptr_t proc; /* hook procedure if handle is 0 */ |
Alexandre Julliard | 0286135 | 2002-10-29 00:41:42 +0000 | [diff] [blame] | 2802 | int id; /* id of the hook if handle is 0 */ |
Alexandre Julliard | 6334235 | 2005-05-11 13:03:15 +0000 | [diff] [blame] | 2803 | @REPLY |
| 2804 | unsigned int active_hooks; /* active hooks bitmap */ |
Alexandre Julliard | 0286135 | 2002-10-29 00:41:42 +0000 | [diff] [blame] | 2805 | @END |
| 2806 | |
| 2807 | |
| 2808 | /* Start calling a hook chain */ |
| 2809 | @REQ(start_hook_chain) |
| 2810 | int id; /* id of the hook */ |
Dmitry Timoshkov | 6dba0a7 | 2005-02-03 16:40:20 +0000 | [diff] [blame] | 2811 | int event; /* signalled event */ |
| 2812 | user_handle_t window; /* handle to the event window */ |
| 2813 | int object_id; /* object id for out of context winevent */ |
| 2814 | int child_id; /* child id for out of context winevent */ |
Alexandre Julliard | 0286135 | 2002-10-29 00:41:42 +0000 | [diff] [blame] | 2815 | @REPLY |
| 2816 | user_handle_t handle; /* handle to the next hook */ |
Alexandre Julliard | ca3ac8f | 2003-07-11 21:55:58 +0000 | [diff] [blame] | 2817 | process_id_t pid; /* process id for low-level keyboard/mouse hooks */ |
| 2818 | thread_id_t tid; /* thread id for low-level keyboard/mouse hooks */ |
Alexandre Julliard | 0286135 | 2002-10-29 00:41:42 +0000 | [diff] [blame] | 2819 | int unicode; /* is it a unicode hook? */ |
Alexandre Julliard | cc55fd3 | 2008-12-29 17:35:35 +0100 | [diff] [blame] | 2820 | client_ptr_t proc; /* hook procedure */ |
Alexandre Julliard | 6334235 | 2005-05-11 13:03:15 +0000 | [diff] [blame] | 2821 | unsigned int active_hooks; /* active hooks bitmap */ |
Alexandre Julliard | 14e68ba | 2002-11-20 19:54:32 +0000 | [diff] [blame] | 2822 | VARARG(module,unicode_str); /* module name */ |
Alexandre Julliard | 0286135 | 2002-10-29 00:41:42 +0000 | [diff] [blame] | 2823 | @END |
| 2824 | |
| 2825 | |
| 2826 | /* Finished calling a hook chain */ |
| 2827 | @REQ(finish_hook_chain) |
| 2828 | int id; /* id of the hook */ |
| 2829 | @END |
| 2830 | |
| 2831 | |
Alexandre Julliard | 2f80fcd | 2006-10-05 14:05:48 +0200 | [diff] [blame] | 2832 | /* Get the hook information */ |
| 2833 | @REQ(get_hook_info) |
Alexandre Julliard | 0286135 | 2002-10-29 00:41:42 +0000 | [diff] [blame] | 2834 | user_handle_t handle; /* handle to the current hook */ |
Alexandre Julliard | 2f80fcd | 2006-10-05 14:05:48 +0200 | [diff] [blame] | 2835 | int get_next; /* do we want info about current or next hook? */ |
Dmitry Timoshkov | 6dba0a7 | 2005-02-03 16:40:20 +0000 | [diff] [blame] | 2836 | int event; /* signalled event */ |
| 2837 | user_handle_t window; /* handle to the event window */ |
| 2838 | int object_id; /* object id for out of context winevent */ |
| 2839 | int child_id; /* child id for out of context winevent */ |
Alexandre Julliard | 0286135 | 2002-10-29 00:41:42 +0000 | [diff] [blame] | 2840 | @REPLY |
Alexandre Julliard | 2f80fcd | 2006-10-05 14:05:48 +0200 | [diff] [blame] | 2841 | user_handle_t handle; /* handle to the hook */ |
| 2842 | int id; /* id of the hook */ |
Alexandre Julliard | ca3ac8f | 2003-07-11 21:55:58 +0000 | [diff] [blame] | 2843 | process_id_t pid; /* process id for low-level keyboard/mouse hooks */ |
| 2844 | thread_id_t tid; /* thread id for low-level keyboard/mouse hooks */ |
Alexandre Julliard | cc55fd3 | 2008-12-29 17:35:35 +0100 | [diff] [blame] | 2845 | client_ptr_t proc; /* hook procedure */ |
Alexandre Julliard | 533f519 | 2006-10-05 14:04:25 +0200 | [diff] [blame] | 2846 | int unicode; /* is it a unicode hook? */ |
Alexandre Julliard | 14e68ba | 2002-11-20 19:54:32 +0000 | [diff] [blame] | 2847 | VARARG(module,unicode_str); /* module name */ |
Alexandre Julliard | 0286135 | 2002-10-29 00:41:42 +0000 | [diff] [blame] | 2848 | @END |
Ulrich Czekalla | b2df5f9 | 2003-06-23 23:02:02 +0000 | [diff] [blame] | 2849 | |
| 2850 | |
Alexandre Julliard | bfce151 | 2003-12-10 04:08:06 +0000 | [diff] [blame] | 2851 | /* Create a window class */ |
| 2852 | @REQ(create_class) |
| 2853 | int local; /* is it a local class? */ |
| 2854 | atom_t atom; /* class atom */ |
| 2855 | unsigned int style; /* class style */ |
Alexandre Julliard | cb2788e | 2008-12-29 16:41:44 +0100 | [diff] [blame] | 2856 | mod_handle_t instance; /* module instance */ |
Alexandre Julliard | bfce151 | 2003-12-10 04:08:06 +0000 | [diff] [blame] | 2857 | int extra; /* number of extra class bytes */ |
| 2858 | int win_extra; /* number of window extra bytes */ |
Alexandre Julliard | 0cd3ff6 | 2008-12-29 17:24:33 +0100 | [diff] [blame] | 2859 | client_ptr_t client_ptr; /* pointer to class in client address space */ |
Alexandre Julliard | 0762d98 | 2007-11-01 13:02:01 +0100 | [diff] [blame] | 2860 | VARARG(name,unicode_str); /* class name */ |
| 2861 | @REPLY |
| 2862 | atom_t atom; /* resulting class atom */ |
Alexandre Julliard | bfce151 | 2003-12-10 04:08:06 +0000 | [diff] [blame] | 2863 | @END |
| 2864 | |
| 2865 | |
| 2866 | /* Destroy a window class */ |
| 2867 | @REQ(destroy_class) |
| 2868 | atom_t atom; /* class atom */ |
Alexandre Julliard | cb2788e | 2008-12-29 16:41:44 +0100 | [diff] [blame] | 2869 | mod_handle_t instance; /* module instance */ |
Alexandre Julliard | b9b940f | 2007-11-01 15:28:30 +0100 | [diff] [blame] | 2870 | VARARG(name,unicode_str); /* class name */ |
Alexandre Julliard | bd13ab8 | 2003-12-11 05:34:53 +0000 | [diff] [blame] | 2871 | @REPLY |
Alexandre Julliard | 0cd3ff6 | 2008-12-29 17:24:33 +0100 | [diff] [blame] | 2872 | client_ptr_t client_ptr; /* pointer to class in client address space */ |
Alexandre Julliard | bfce151 | 2003-12-10 04:08:06 +0000 | [diff] [blame] | 2873 | @END |
| 2874 | |
| 2875 | |
| 2876 | /* Set some information in a class */ |
| 2877 | @REQ(set_class_info) |
| 2878 | user_handle_t window; /* handle to the window */ |
| 2879 | unsigned int flags; /* flags for info to set (see below) */ |
| 2880 | atom_t atom; /* class atom */ |
| 2881 | unsigned int style; /* class style */ |
| 2882 | int win_extra; /* number of window extra bytes */ |
Alexandre Julliard | cb2788e | 2008-12-29 16:41:44 +0100 | [diff] [blame] | 2883 | mod_handle_t instance; /* module instance */ |
Alexandre Julliard | bfce151 | 2003-12-10 04:08:06 +0000 | [diff] [blame] | 2884 | int extra_offset; /* offset to set in extra bytes */ |
Alexandre Julliard | 0f273c1 | 2006-07-26 10:43:25 +0200 | [diff] [blame] | 2885 | data_size_t extra_size; /* size to set in extra bytes */ |
Alexandre Julliard | 31282b3 | 2008-12-10 16:01:50 +0100 | [diff] [blame] | 2886 | lparam_t extra_value; /* value to set in extra bytes */ |
Alexandre Julliard | bfce151 | 2003-12-10 04:08:06 +0000 | [diff] [blame] | 2887 | @REPLY |
| 2888 | atom_t old_atom; /* previous class atom */ |
| 2889 | unsigned int old_style; /* previous class style */ |
| 2890 | int old_extra; /* previous number of class extra bytes */ |
| 2891 | int old_win_extra; /* previous number of window extra bytes */ |
Alexandre Julliard | cb2788e | 2008-12-29 16:41:44 +0100 | [diff] [blame] | 2892 | mod_handle_t old_instance; /* previous module instance */ |
Alexandre Julliard | 31282b3 | 2008-12-10 16:01:50 +0100 | [diff] [blame] | 2893 | lparam_t old_extra_value; /* old value in extra bytes */ |
Alexandre Julliard | bfce151 | 2003-12-10 04:08:06 +0000 | [diff] [blame] | 2894 | @END |
| 2895 | #define SET_CLASS_ATOM 0x0001 |
| 2896 | #define SET_CLASS_STYLE 0x0002 |
| 2897 | #define SET_CLASS_WINEXTRA 0x0004 |
| 2898 | #define SET_CLASS_INSTANCE 0x0008 |
| 2899 | #define SET_CLASS_EXTRA 0x0010 |
| 2900 | |
| 2901 | |
Ulrich Czekalla | b2df5f9 | 2003-06-23 23:02:02 +0000 | [diff] [blame] | 2902 | /* Set/get clipboard information */ |
| 2903 | @REQ(set_clipboard_info) |
| 2904 | unsigned int flags; /* flags for fields to set (see below) */ |
| 2905 | user_handle_t clipboard; /* clipboard window */ |
| 2906 | user_handle_t owner; /* clipboard owner */ |
| 2907 | user_handle_t viewer; /* first clipboard viewer */ |
| 2908 | unsigned int seqno; /* change sequence number */ |
| 2909 | @REPLY |
| 2910 | unsigned int flags; /* status flags (see below) */ |
| 2911 | user_handle_t old_clipboard; /* old clipboard window */ |
| 2912 | user_handle_t old_owner; /* old clipboard owner */ |
| 2913 | user_handle_t old_viewer; /* old clipboard viewer */ |
| 2914 | unsigned int seqno; /* current sequence number */ |
| 2915 | @END |
| 2916 | |
| 2917 | #define SET_CB_OPEN 0x001 |
| 2918 | #define SET_CB_OWNER 0x002 |
| 2919 | #define SET_CB_VIEWER 0x004 |
| 2920 | #define SET_CB_SEQNO 0x008 |
| 2921 | #define SET_CB_RELOWNER 0x010 |
| 2922 | #define SET_CB_CLOSE 0x020 |
| 2923 | #define CB_OPEN 0x040 |
| 2924 | #define CB_OWNER 0x080 |
Ulrich Czekalla | 5067909 | 2005-03-07 19:31:46 +0000 | [diff] [blame] | 2925 | #define CB_PROCESS 0x100 |
Mike McCormack | 36cd6f5 | 2003-07-24 00:07:00 +0000 | [diff] [blame] | 2926 | |
| 2927 | |
| 2928 | /* Open a security token */ |
| 2929 | @REQ(open_token) |
| 2930 | obj_handle_t handle; /* handle to the thread or process */ |
Alexandre Julliard | 836d07c | 2005-12-09 12:17:19 +0100 | [diff] [blame] | 2931 | unsigned int access; /* access rights to the new token */ |
| 2932 | unsigned int attributes;/* object attributes */ |
Mike McCormack | 36cd6f5 | 2003-07-24 00:07:00 +0000 | [diff] [blame] | 2933 | unsigned int flags; /* flags (see below) */ |
| 2934 | @REPLY |
| 2935 | obj_handle_t token; /* handle to the token */ |
| 2936 | @END |
| 2937 | #define OPEN_TOKEN_THREAD 1 |
| 2938 | #define OPEN_TOKEN_AS_SELF 2 |
Alexandre Julliard | 8d174d3 | 2003-10-07 03:40:23 +0000 | [diff] [blame] | 2939 | |
| 2940 | |
| 2941 | /* Set/get the global windows */ |
| 2942 | @REQ(set_global_windows) |
| 2943 | unsigned int flags; /* flags for fields to set (see below) */ |
| 2944 | user_handle_t shell_window; /* handle to the new shell window */ |
| 2945 | user_handle_t shell_listview; /* handle to the new shell listview window */ |
| 2946 | user_handle_t progman_window; /* handle to the new program manager window */ |
| 2947 | user_handle_t taskman_window; /* handle to the new task manager window */ |
| 2948 | @REPLY |
| 2949 | user_handle_t old_shell_window; /* handle to the shell window */ |
| 2950 | user_handle_t old_shell_listview; /* handle to the shell listview window */ |
| 2951 | user_handle_t old_progman_window; /* handle to the new program manager window */ |
| 2952 | user_handle_t old_taskman_window; /* handle to the new task manager window */ |
| 2953 | @END |
| 2954 | #define SET_GLOBAL_SHELL_WINDOWS 0x01 /* set both main shell and listview windows */ |
| 2955 | #define SET_GLOBAL_PROGMAN_WINDOW 0x02 |
| 2956 | #define SET_GLOBAL_TASKMAN_WINDOW 0x04 |
Robert Shearman | b0f02b2 | 2005-02-11 11:52:06 +0000 | [diff] [blame] | 2957 | |
| 2958 | /* Adjust the privileges held by a token */ |
| 2959 | @REQ(adjust_token_privileges) |
| 2960 | obj_handle_t handle; /* handle to the token */ |
| 2961 | int disable_all; /* disable all privileges? */ |
| 2962 | int get_modified_state; /* get modified privileges? */ |
| 2963 | VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges to enable/disable/remove */ |
| 2964 | @REPLY |
| 2965 | unsigned int len; /* total length in bytes required to store token privileges */ |
| 2966 | VARARG(privileges,LUID_AND_ATTRIBUTES); /* modified privileges */ |
| 2967 | @END |
| 2968 | |
| 2969 | /* Retrieves the set of privileges held by or available to a token */ |
| 2970 | @REQ(get_token_privileges) |
| 2971 | obj_handle_t handle; /* handle to the token */ |
| 2972 | @REPLY |
| 2973 | unsigned int len; /* total length in bytes required to store token privileges */ |
| 2974 | VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges held by or available to a token */ |
| 2975 | @END |
| 2976 | |
Robert Shearman | d2ea92d | 2005-04-22 21:17:15 +0000 | [diff] [blame] | 2977 | /* Check the token has the required privileges */ |
| 2978 | @REQ(check_token_privileges) |
| 2979 | obj_handle_t handle; /* handle to the token */ |
| 2980 | int all_required; /* are all the privileges required for the check to succeed? */ |
| 2981 | VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges to check */ |
| 2982 | @REPLY |
| 2983 | int has_privileges; /* does the token have the required privileges? */ |
| 2984 | VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges held by or available to a token */ |
| 2985 | @END |
| 2986 | |
Robert Shearman | b0f02b2 | 2005-02-11 11:52:06 +0000 | [diff] [blame] | 2987 | @REQ(duplicate_token) |
Alexandre Julliard | 836d07c | 2005-12-09 12:17:19 +0100 | [diff] [blame] | 2988 | obj_handle_t handle; /* handle to the token to duplicate */ |
| 2989 | unsigned int access; /* access rights to the new token */ |
| 2990 | unsigned int attributes; /* object attributes */ |
| 2991 | int primary; /* is the new token to be a primary one? */ |
Robert Shearman | b0f02b2 | 2005-02-11 11:52:06 +0000 | [diff] [blame] | 2992 | int impersonation_level; /* impersonation level of the new token */ |
| 2993 | @REPLY |
| 2994 | obj_handle_t new_handle; /* duplicated handle */ |
| 2995 | @END |
Mike McCormack | 2ab6a77 | 2005-03-30 19:02:15 +0000 | [diff] [blame] | 2996 | |
Robert Shearman | 4ad9341 | 2005-05-24 12:32:18 +0000 | [diff] [blame] | 2997 | @REQ(access_check) |
| 2998 | obj_handle_t handle; /* handle to the token */ |
| 2999 | unsigned int desired_access; /* desired access to the object */ |
| 3000 | unsigned int mapping_read; /* mapping from generic read to specific rights */ |
| 3001 | unsigned int mapping_write; /* mapping from generic write to specific rights */ |
| 3002 | unsigned int mapping_execute; /* mapping from generic execute to specific rights */ |
| 3003 | unsigned int mapping_all; /* mapping from generic all to specific rights */ |
| 3004 | VARARG(sd,security_descriptor); /* security descriptor to check */ |
| 3005 | @REPLY |
| 3006 | unsigned int access_granted; /* access rights actually granted */ |
| 3007 | unsigned int access_status; /* was access granted? */ |
| 3008 | unsigned int privileges_len; /* length needed to store privileges */ |
| 3009 | VARARG(privileges,LUID_AND_ATTRIBUTES); /* privileges used during access check */ |
| 3010 | @END |
Mike McCormack | 2ab6a77 | 2005-03-30 19:02:15 +0000 | [diff] [blame] | 3011 | |
Rob Shearman | bd56916 | 2009-11-16 20:11:06 +0000 | [diff] [blame] | 3012 | @REQ(get_token_sid) |
Robert Shearman | 91eaea5 | 2005-07-18 13:22:55 +0000 | [diff] [blame] | 3013 | obj_handle_t handle; /* handle to the token */ |
Rob Shearman | bd56916 | 2009-11-16 20:11:06 +0000 | [diff] [blame] | 3014 | unsigned int which_sid; /* which SID to retrieve from the token */ |
Robert Shearman | 91eaea5 | 2005-07-18 13:22:55 +0000 | [diff] [blame] | 3015 | @REPLY |
Rob Shearman | bd56916 | 2009-11-16 20:11:06 +0000 | [diff] [blame] | 3016 | data_size_t sid_len; /* length needed to store sid */ |
| 3017 | VARARG(sid,SID); /* the sid specified by which_sid from the token */ |
Robert Shearman | 91eaea5 | 2005-07-18 13:22:55 +0000 | [diff] [blame] | 3018 | @END |
| 3019 | |
Robert Shearman | 3396a66 | 2006-05-13 16:58:19 +0100 | [diff] [blame] | 3020 | @REQ(get_token_groups) |
| 3021 | obj_handle_t handle; /* handle to the token */ |
| 3022 | @REPLY |
Alexandre Julliard | 0f273c1 | 2006-07-26 10:43:25 +0200 | [diff] [blame] | 3023 | data_size_t user_len; /* length needed to store user */ |
Rob Shearman | bd56916 | 2009-11-16 20:11:06 +0000 | [diff] [blame] | 3024 | VARARG(user,token_groups); /* groups the token's user belongs to */ |
Robert Shearman | 3396a66 | 2006-05-13 16:58:19 +0100 | [diff] [blame] | 3025 | @END |
| 3026 | |
Hans Leidekker | 24af6f3 | 2009-04-21 09:53:16 +0200 | [diff] [blame] | 3027 | @REQ(get_token_default_dacl) |
| 3028 | obj_handle_t handle; /* handle to the token */ |
| 3029 | @REPLY |
| 3030 | data_size_t acl_len; /* length needed to store access control list */ |
| 3031 | VARARG(acl,ACL); /* access control list */ |
| 3032 | @END |
| 3033 | |
| 3034 | @REQ(set_token_default_dacl) |
| 3035 | obj_handle_t handle; /* handle to the token */ |
| 3036 | VARARG(acl,ACL); /* default dacl to set */ |
| 3037 | @END |
| 3038 | |
Vitaliy Margolen | b0e9d7e | 2007-02-07 21:43:11 -0700 | [diff] [blame] | 3039 | @REQ(set_security_object) |
| 3040 | obj_handle_t handle; /* handle to the object */ |
| 3041 | unsigned int security_info; /* which parts of security descriptor to set */ |
| 3042 | VARARG(sd,security_descriptor); /* security descriptor to set */ |
| 3043 | @END |
| 3044 | |
Rob Shearman | 5356bfd | 2007-10-02 15:55:13 +0100 | [diff] [blame] | 3045 | @REQ(get_security_object) |
| 3046 | obj_handle_t handle; /* handle to the object */ |
| 3047 | unsigned int security_info; /* which parts of security descriptor to get */ |
| 3048 | @REPLY |
| 3049 | unsigned int sd_len; /* buffer size needed for sd */ |
| 3050 | VARARG(sd,security_descriptor); /* retrieved security descriptor */ |
| 3051 | @END |
| 3052 | |
Mike McCormack | 2ab6a77 | 2005-03-30 19:02:15 +0000 | [diff] [blame] | 3053 | /* Create a mailslot */ |
| 3054 | @REQ(create_mailslot) |
Vitaliy Margolen | a996000 | 2005-10-27 18:30:37 +0000 | [diff] [blame] | 3055 | unsigned int access; /* wanted access rights */ |
| 3056 | unsigned int attributes; /* object attributes */ |
Vitaliy Margolen | cf21d4d | 2005-12-05 13:30:26 +0100 | [diff] [blame] | 3057 | obj_handle_t rootdir; /* root directory */ |
Alexandre Julliard | aaf477f | 2007-04-17 20:08:59 +0200 | [diff] [blame] | 3058 | timeout_t read_timeout; |
Alexandre Julliard | 8c8c665 | 2008-12-31 15:14:29 +0100 | [diff] [blame] | 3059 | unsigned int max_msgsize; |
Mike McCormack | 2ab6a77 | 2005-03-30 19:02:15 +0000 | [diff] [blame] | 3060 | VARARG(name,unicode_str); /* mailslot name */ |
| 3061 | @REPLY |
| 3062 | obj_handle_t handle; /* handle to the mailslot */ |
| 3063 | @END |
| 3064 | |
| 3065 | |
Mike McCormack | 2ab6a77 | 2005-03-30 19:02:15 +0000 | [diff] [blame] | 3066 | /* Set mailslot information */ |
| 3067 | @REQ(set_mailslot_info) |
| 3068 | obj_handle_t handle; /* handle to the mailslot */ |
Alexandre Julliard | 8c8c665 | 2008-12-31 15:14:29 +0100 | [diff] [blame] | 3069 | timeout_t read_timeout; |
Mike McCormack | 2ab6a77 | 2005-03-30 19:02:15 +0000 | [diff] [blame] | 3070 | unsigned int flags; |
Mike McCormack | 2ab6a77 | 2005-03-30 19:02:15 +0000 | [diff] [blame] | 3071 | @REPLY |
Alexandre Julliard | aaf477f | 2007-04-17 20:08:59 +0200 | [diff] [blame] | 3072 | timeout_t read_timeout; |
Alexandre Julliard | 8c8c665 | 2008-12-31 15:14:29 +0100 | [diff] [blame] | 3073 | unsigned int max_msgsize; |
Mike McCormack | 2ab6a77 | 2005-03-30 19:02:15 +0000 | [diff] [blame] | 3074 | @END |
| 3075 | #define MAILSLOT_SET_READ_TIMEOUT 1 |
Vitaliy Margolen | 3c6bdcc | 2005-11-29 17:21:05 +0100 | [diff] [blame] | 3076 | |
| 3077 | |
| 3078 | /* Create a directory object */ |
| 3079 | @REQ(create_directory) |
| 3080 | unsigned int access; /* access flags */ |
| 3081 | unsigned int attributes; /* object attributes */ |
| 3082 | obj_handle_t rootdir; /* root directory */ |
| 3083 | VARARG(directory_name,unicode_str); /* Directory name */ |
| 3084 | @REPLY |
| 3085 | obj_handle_t handle; /* handle to the directory */ |
| 3086 | @END |
| 3087 | |
| 3088 | |
| 3089 | /* Open a directory object */ |
| 3090 | @REQ(open_directory) |
| 3091 | unsigned int access; /* access flags */ |
| 3092 | unsigned int attributes; /* object attributes */ |
| 3093 | obj_handle_t rootdir; /* root directory */ |
| 3094 | VARARG(directory_name,unicode_str); /* Directory name */ |
| 3095 | @REPLY |
| 3096 | obj_handle_t handle; /* handle to the directory */ |
| 3097 | @END |
Vitaliy Margolen | 80444df | 2005-11-30 19:22:57 +0100 | [diff] [blame] | 3098 | |
| 3099 | |
Alexandre Julliard | a5e38b3 | 2007-12-05 16:57:41 +0100 | [diff] [blame] | 3100 | /* Get a directory entry by index */ |
| 3101 | @REQ(get_directory_entry) |
| 3102 | obj_handle_t handle; /* handle to the directory */ |
| 3103 | unsigned int index; /* entry index */ |
| 3104 | @REPLY |
Alexandre Julliard | 5c37788 | 2008-12-06 17:29:31 +0100 | [diff] [blame] | 3105 | data_size_t name_len; /* length of the entry name in bytes */ |
Alexandre Julliard | a5e38b3 | 2007-12-05 16:57:41 +0100 | [diff] [blame] | 3106 | VARARG(name,unicode_str,name_len); /* entry name */ |
| 3107 | VARARG(type,unicode_str); /* entry type */ |
| 3108 | @END |
| 3109 | |
| 3110 | |
Vitaliy Margolen | 80444df | 2005-11-30 19:22:57 +0100 | [diff] [blame] | 3111 | /* Create a symbolic link object */ |
| 3112 | @REQ(create_symlink) |
| 3113 | unsigned int access; /* access flags */ |
| 3114 | unsigned int attributes; /* object attributes */ |
| 3115 | obj_handle_t rootdir; /* root directory */ |
Alexandre Julliard | 0f273c1 | 2006-07-26 10:43:25 +0200 | [diff] [blame] | 3116 | data_size_t name_len; /* length of the symlink name in bytes */ |
Vitaliy Margolen | 80444df | 2005-11-30 19:22:57 +0100 | [diff] [blame] | 3117 | VARARG(name,unicode_str,name_len); /* symlink name */ |
| 3118 | VARARG(target_name,unicode_str); /* target name */ |
| 3119 | @REPLY |
| 3120 | obj_handle_t handle; /* handle to the symlink */ |
| 3121 | @END |
| 3122 | |
| 3123 | |
| 3124 | /* Open a symbolic link object */ |
| 3125 | @REQ(open_symlink) |
| 3126 | unsigned int access; /* access flags */ |
| 3127 | unsigned int attributes; /* object attributes */ |
| 3128 | obj_handle_t rootdir; /* root directory */ |
| 3129 | VARARG(name,unicode_str); /* symlink name */ |
| 3130 | @REPLY |
| 3131 | obj_handle_t handle; /* handle to the symlink */ |
| 3132 | @END |
| 3133 | |
| 3134 | |
| 3135 | /* Query a symbolic link object */ |
| 3136 | @REQ(query_symlink) |
| 3137 | obj_handle_t handle; /* handle to the symlink */ |
| 3138 | @REPLY |
Alexandre Julliard | 4c1f36c | 2010-06-30 16:11:03 +0200 | [diff] [blame] | 3139 | data_size_t total; /* total needed size for name */ |
Vitaliy Margolen | 80444df | 2005-11-30 19:22:57 +0100 | [diff] [blame] | 3140 | VARARG(target_name,unicode_str); /* target name */ |
| 3141 | @END |
Vitaliy Margolen | bae7502 | 2007-01-24 23:43:04 -0700 | [diff] [blame] | 3142 | |
| 3143 | |
| 3144 | /* Query basic object information */ |
| 3145 | @REQ(get_object_info) |
| 3146 | obj_handle_t handle; /* handle to the object */ |
| 3147 | @REPLY |
| 3148 | unsigned int access; /* granted access mask */ |
| 3149 | unsigned int ref_count; /* object ref count */ |
Alexandre Julliard | 658dae9 | 2010-01-08 13:01:50 +0100 | [diff] [blame] | 3150 | data_size_t total; /* total needed size for name */ |
| 3151 | VARARG(name,unicode_str); /* object name */ |
Vitaliy Margolen | bae7502 | 2007-01-24 23:43:04 -0700 | [diff] [blame] | 3152 | @END |
Rob Shearman | d342d14 | 2007-02-21 17:10:45 +0000 | [diff] [blame] | 3153 | |
Alexandre Julliard | ba71579 | 2008-10-20 16:21:06 +0200 | [diff] [blame] | 3154 | |
| 3155 | /* Unlink a named object */ |
| 3156 | @REQ(unlink_object) |
| 3157 | obj_handle_t handle; /* handle to the object */ |
| 3158 | @END |
| 3159 | |
| 3160 | |
Rob Shearman | d342d14 | 2007-02-21 17:10:45 +0000 | [diff] [blame] | 3161 | /* Query the impersonation level of an impersonation token */ |
| 3162 | @REQ(get_token_impersonation_level) |
| 3163 | obj_handle_t handle; /* handle to the object */ |
| 3164 | @REPLY |
| 3165 | int impersonation_level; /* impersonation level of the impersonation token */ |
| 3166 | @END |
Juan Lang | c2cb296 | 2007-03-06 16:33:26 -0800 | [diff] [blame] | 3167 | |
| 3168 | /* Allocate a locally-unique identifier */ |
| 3169 | @REQ(allocate_locally_unique_id) |
| 3170 | @REPLY |
| 3171 | luid_t luid; |
| 3172 | @END |
Alexandre Julliard | b43dc15 | 2007-05-08 20:28:37 +0200 | [diff] [blame] | 3173 | |
| 3174 | |
| 3175 | /* Create a device manager */ |
| 3176 | @REQ(create_device_manager) |
| 3177 | unsigned int access; /* wanted access rights */ |
| 3178 | unsigned int attributes; /* object attributes */ |
| 3179 | @REPLY |
| 3180 | obj_handle_t handle; /* handle to the device */ |
| 3181 | @END |
| 3182 | |
| 3183 | |
| 3184 | /* Create a device */ |
| 3185 | @REQ(create_device) |
| 3186 | unsigned int access; /* wanted access rights */ |
| 3187 | unsigned int attributes; /* object attributes */ |
| 3188 | obj_handle_t rootdir; /* root directory */ |
Alexandre Julliard | 923310a | 2008-12-29 17:28:40 +0100 | [diff] [blame] | 3189 | client_ptr_t user_ptr; /* opaque ptr for use by client */ |
Alexandre Julliard | 8c8c665 | 2008-12-31 15:14:29 +0100 | [diff] [blame] | 3190 | obj_handle_t manager; /* device manager */ |
Alexandre Julliard | b43dc15 | 2007-05-08 20:28:37 +0200 | [diff] [blame] | 3191 | VARARG(name,unicode_str); /* object name */ |
| 3192 | @REPLY |
| 3193 | obj_handle_t handle; /* handle to the device */ |
| 3194 | @END |
| 3195 | |
| 3196 | |
| 3197 | /* Delete a device */ |
| 3198 | @REQ(delete_device) |
| 3199 | obj_handle_t handle; /* handle to the device */ |
| 3200 | @END |
Alexandre Julliard | 78b7510 | 2007-05-08 20:40:26 +0200 | [diff] [blame] | 3201 | |
| 3202 | |
| 3203 | /* Retrieve the next pending device ioctl request */ |
| 3204 | @REQ(get_next_device_request) |
| 3205 | obj_handle_t manager; /* handle to the device manager */ |
| 3206 | obj_handle_t prev; /* handle to the previous ioctl */ |
| 3207 | unsigned int status; /* status of the previous ioctl */ |
| 3208 | VARARG(prev_data,bytes); /* output data of the previous ioctl */ |
| 3209 | @REPLY |
| 3210 | obj_handle_t next; /* handle to the next ioctl */ |
| 3211 | ioctl_code_t code; /* ioctl code */ |
Alexandre Julliard | 923310a | 2008-12-29 17:28:40 +0100 | [diff] [blame] | 3212 | client_ptr_t user_ptr; /* opaque ptr for the device */ |
Bernhard Loos | 507d929 | 2011-10-27 14:20:19 +0200 | [diff] [blame] | 3213 | process_id_t client_pid; /* pid of process calling ioctl */ |
| 3214 | thread_id_t client_tid; /* tid of thread calling ioctl */ |
Alexandre Julliard | 78b7510 | 2007-05-08 20:40:26 +0200 | [diff] [blame] | 3215 | data_size_t in_size; /* total needed input size */ |
| 3216 | data_size_t out_size; /* needed output size */ |
| 3217 | VARARG(next_data,bytes); /* input data of the next ioctl */ |
| 3218 | @END |
Alexandre Julliard | 156b205 | 2007-06-06 20:33:13 +0200 | [diff] [blame] | 3219 | |
| 3220 | |
| 3221 | /* Make the current process a system process */ |
| 3222 | @REQ(make_process_system) |
| 3223 | @REPLY |
| 3224 | obj_handle_t event; /* event signaled when all user processes have exited */ |
| 3225 | @END |
Rob Shearman | 3f431a0 | 2007-09-13 16:47:56 +0100 | [diff] [blame] | 3226 | |
| 3227 | |
| 3228 | /* Get detailed fixed-size information about a token */ |
| 3229 | @REQ(get_token_statistics) |
| 3230 | obj_handle_t handle; /* handle to the object */ |
| 3231 | @REPLY |
| 3232 | luid_t token_id; /* locally-unique identifier of the token */ |
| 3233 | luid_t modified_id; /* locally-unique identifier of the modified version of the token */ |
| 3234 | int primary; /* is the token primary or impersonation? */ |
| 3235 | int impersonation_level; /* level of impersonation */ |
| 3236 | int group_count; /* the number of groups the token is a member of */ |
| 3237 | int privilege_count; /* the number of privileges the token has */ |
| 3238 | @END |
Andrey Turkin | 4775824 | 2007-09-18 00:00:45 +0400 | [diff] [blame] | 3239 | |
| 3240 | |
| 3241 | /* Create I/O completion port */ |
| 3242 | @REQ(create_completion) |
| 3243 | unsigned int access; /* desired access to a port */ |
| 3244 | unsigned int attributes; /* object attributes */ |
| 3245 | unsigned int concurrent; /* max number of concurrent active threads */ |
| 3246 | obj_handle_t rootdir; /* root directory */ |
| 3247 | VARARG(filename,string); /* port name */ |
| 3248 | @REPLY |
| 3249 | obj_handle_t handle; /* port handle */ |
| 3250 | @END |
| 3251 | |
| 3252 | |
| 3253 | /* Open I/O completion port */ |
| 3254 | @REQ(open_completion) |
| 3255 | unsigned int access; /* desired access to a port */ |
| 3256 | unsigned int attributes; /* object attributes */ |
| 3257 | obj_handle_t rootdir; /* root directory */ |
| 3258 | VARARG(filename,string); /* port name */ |
| 3259 | @REPLY |
| 3260 | obj_handle_t handle; /* port handle */ |
| 3261 | @END |
| 3262 | |
| 3263 | |
| 3264 | /* add completion to completion port */ |
| 3265 | @REQ(add_completion) |
| 3266 | obj_handle_t handle; /* port handle */ |
Alexandre Julliard | dc7f170 | 2008-12-15 13:29:38 +0100 | [diff] [blame] | 3267 | apc_param_t ckey; /* completion key */ |
| 3268 | apc_param_t cvalue; /* completion value */ |
Alexandre Julliard | f6fa72d | 2008-12-15 13:30:25 +0100 | [diff] [blame] | 3269 | unsigned int information; /* IO_STATUS_BLOCK Information */ |
Andrey Turkin | 4775824 | 2007-09-18 00:00:45 +0400 | [diff] [blame] | 3270 | unsigned int status; /* completion result */ |
| 3271 | @END |
| 3272 | |
| 3273 | |
| 3274 | /* get completion from completion port queue */ |
| 3275 | @REQ(remove_completion) |
| 3276 | obj_handle_t handle; /* port handle */ |
| 3277 | @REPLY |
Alexandre Julliard | dc7f170 | 2008-12-15 13:29:38 +0100 | [diff] [blame] | 3278 | apc_param_t ckey; /* completion key */ |
| 3279 | apc_param_t cvalue; /* completion value */ |
Alexandre Julliard | f6fa72d | 2008-12-15 13:30:25 +0100 | [diff] [blame] | 3280 | unsigned int information; /* IO_STATUS_BLOCK Information */ |
Andrey Turkin | 4775824 | 2007-09-18 00:00:45 +0400 | [diff] [blame] | 3281 | unsigned int status; /* completion result */ |
| 3282 | @END |
| 3283 | |
| 3284 | |
| 3285 | /* get completion queue depth */ |
| 3286 | @REQ(query_completion) |
| 3287 | obj_handle_t handle; /* port handle */ |
| 3288 | @REPLY |
| 3289 | unsigned int depth; /* completion queue depth */ |
| 3290 | @END |
Andrey Turkin | d1a8155 | 2007-09-28 00:03:39 +0400 | [diff] [blame] | 3291 | |
| 3292 | |
| 3293 | /* associate object with completion port */ |
| 3294 | @REQ(set_completion_info) |
| 3295 | obj_handle_t handle; /* object handle */ |
Alexandre Julliard | dc7f170 | 2008-12-15 13:29:38 +0100 | [diff] [blame] | 3296 | apc_param_t ckey; /* completion key */ |
Alexandre Julliard | 8c8c665 | 2008-12-31 15:14:29 +0100 | [diff] [blame] | 3297 | obj_handle_t chandle; /* port handle */ |
Andrey Turkin | d1a8155 | 2007-09-28 00:03:39 +0400 | [diff] [blame] | 3298 | @END |
Andrey Turkin | 27cb7c7 | 2007-11-10 01:11:58 +0300 | [diff] [blame] | 3299 | |
| 3300 | |
| 3301 | /* check for associated completion and push msg */ |
| 3302 | @REQ(add_fd_completion) |
| 3303 | obj_handle_t handle; /* async' object */ |
Alexandre Julliard | dc7f170 | 2008-12-15 13:29:38 +0100 | [diff] [blame] | 3304 | apc_param_t cvalue; /* completion value */ |
Andrey Turkin | 27cb7c7 | 2007-11-10 01:11:58 +0300 | [diff] [blame] | 3305 | unsigned int status; /* completion status */ |
Alexandre Julliard | f6fa72d | 2008-12-15 13:30:25 +0100 | [diff] [blame] | 3306 | unsigned int information; /* IO_STATUS_BLOCK Information */ |
Andrey Turkin | 27cb7c7 | 2007-11-10 01:11:58 +0300 | [diff] [blame] | 3307 | @END |
Alexandre Julliard | 05b4181 | 2008-09-12 15:30:47 +0200 | [diff] [blame] | 3308 | |
| 3309 | |
| 3310 | /* Retrieve layered info for a window */ |
| 3311 | @REQ(get_window_layered_info) |
| 3312 | user_handle_t handle; /* handle to the window */ |
| 3313 | @REPLY |
| 3314 | unsigned int color_key; /* color key */ |
| 3315 | unsigned int alpha; /* alpha (0..255) */ |
| 3316 | unsigned int flags; /* LWA_* flags */ |
| 3317 | @END |
| 3318 | |
| 3319 | |
| 3320 | /* Set layered info for a window */ |
| 3321 | @REQ(set_window_layered_info) |
| 3322 | user_handle_t handle; /* handle to the window */ |
| 3323 | unsigned int color_key; /* color key */ |
| 3324 | unsigned int alpha; /* alpha (0..255) */ |
| 3325 | unsigned int flags; /* LWA_* flags */ |
| 3326 | @END |
Alexandre Julliard | 9018e13 | 2009-10-12 14:25:01 +0200 | [diff] [blame] | 3327 | |
| 3328 | |
| 3329 | /* Allocate an arbitrary user handle */ |
| 3330 | @REQ(alloc_user_handle) |
| 3331 | @REPLY |
| 3332 | user_handle_t handle; /* allocated handle */ |
| 3333 | @END |
| 3334 | |
| 3335 | |
| 3336 | /* Free an arbitrary user handle */ |
| 3337 | @REQ(free_user_handle) |
| 3338 | user_handle_t handle; /* handle to free*/ |
| 3339 | @END |
Alexandre Julliard | 8159d4e | 2010-03-22 17:52:23 +0100 | [diff] [blame] | 3340 | |
| 3341 | |
| 3342 | /* Set/get the current cursor */ |
| 3343 | @REQ(set_cursor) |
| 3344 | unsigned int flags; /* flags for fields to set (see below) */ |
| 3345 | user_handle_t handle; /* handle to the cursor */ |
| 3346 | int show_count; /* show count increment/decrement */ |
Alexandre Julliard | 183c41b | 2011-02-24 17:47:59 +0100 | [diff] [blame] | 3347 | int x; /* cursor position */ |
| 3348 | int y; |
Alexandre Julliard | 02e8174 | 2011-02-25 11:31:47 +0100 | [diff] [blame] | 3349 | rectangle_t clip; /* cursor clip rectangle */ |
Alexandre Julliard | 21e86f6 | 2011-03-31 20:27:29 +0200 | [diff] [blame] | 3350 | unsigned int clip_msg; /* message to post on cursor clip changes */ |
Alexandre Julliard | 8159d4e | 2010-03-22 17:52:23 +0100 | [diff] [blame] | 3351 | @REPLY |
| 3352 | user_handle_t prev_handle; /* previous handle */ |
| 3353 | int prev_count; /* previous show count */ |
Alexandre Julliard | abe5440 | 2011-04-20 20:29:16 +0200 | [diff] [blame] | 3354 | int prev_x; /* previous position */ |
| 3355 | int prev_y; |
Alexandre Julliard | 183c41b | 2011-02-24 17:47:59 +0100 | [diff] [blame] | 3356 | int new_x; /* new position */ |
| 3357 | int new_y; |
Alexandre Julliard | 02e8174 | 2011-02-25 11:31:47 +0100 | [diff] [blame] | 3358 | rectangle_t new_clip; /* new clip rectangle */ |
Alexandre Julliard | 6576703 | 2011-03-31 20:15:56 +0200 | [diff] [blame] | 3359 | unsigned int last_change; /* time of last position change */ |
Alexandre Julliard | 8159d4e | 2010-03-22 17:52:23 +0100 | [diff] [blame] | 3360 | @END |
| 3361 | #define SET_CURSOR_HANDLE 0x01 |
| 3362 | #define SET_CURSOR_COUNT 0x02 |
Alexandre Julliard | 183c41b | 2011-02-24 17:47:59 +0100 | [diff] [blame] | 3363 | #define SET_CURSOR_POS 0x04 |
Alexandre Julliard | 02e8174 | 2011-02-25 11:31:47 +0100 | [diff] [blame] | 3364 | #define SET_CURSOR_CLIP 0x08 |
Alexandre Julliard | 6b0d9ff | 2011-06-21 14:50:23 +0200 | [diff] [blame] | 3365 | #define SET_CURSOR_NOCLIP 0x10 |
Alexandre Julliard | 45075b2 | 2011-05-06 12:25:34 +0200 | [diff] [blame] | 3366 | |
| 3367 | |
| 3368 | /* Retrieve the suspended context of a thread */ |
| 3369 | @REQ(get_suspend_context) |
| 3370 | @REPLY |
| 3371 | VARARG(context,context); /* thread context */ |
| 3372 | @END |
| 3373 | |
| 3374 | |
| 3375 | /* Store the suspend context of a thread */ |
| 3376 | @REQ(set_suspend_context) |
| 3377 | VARARG(context,context); /* thread context */ |
| 3378 | @END |