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