Changeset 37375 in vbox for trunk/include/VBox/HostServices
- Timestamp:
- Jun 8, 2011 10:51:26 AM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 72150
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/HostServices/GuestControlSvc.h
r36887 r37375 109 109 110 110 /** 111 * Document me. 111 * The guest control callback data header. Must come first 112 * on each callback structure defined below this struct. 112 113 */ 113 114 typedef struct VBoxGuestCtrlCallbackHeader … … 119 120 } CALLBACKHEADER; 120 121 typedef CALLBACKHEADER *PCALLBACKHEADER; 122 123 typedef struct VBoxGuestCtrlCallbackDataClientDisconnected 124 { 125 /** Callback data header. */ 126 CALLBACKHEADER hdr; 127 } CALLBACKDATACLIENTDISCONNECTED; 128 typedef CALLBACKDATACLIENTDISCONNECTED *PCALLBACKDATACLIENTDISCONNECTED; 121 129 122 130 /** … … 173 181 typedef CALLBACKDATAEXECINSTATUS *PCALLBACKDATAEXECINSTATUS; 174 182 175 typedef struct VBoxGuestCtrlCallbackData ClientDisconnected183 typedef struct VBoxGuestCtrlCallbackDataDirOpen 176 184 { 177 185 /** Callback data header. */ 178 186 CALLBACKHEADER hdr; 179 } CALLBACKDATACLIENTDISCONNECTED; 180 typedef CALLBACKDATACLIENTDISCONNECTED *PCALLBACKDATACLIENTDISCONNECTED; 181 182 enum 183 { 184 /** Magic number for sanity checking the CALLBACKDATACLIENTDISCONNECTED structure. */ 185 CALLBACKDATAMAGICCLIENTDISCONNECTED = 0x08041984, 186 /** Magic number for sanity checking the CALLBACKDATAEXECSTATUS structure. */ 187 CALLBACKDATAMAGICEXECSTATUS = 0x26011982, 188 /** Magic number for sanity checking the CALLBACKDATAEXECOUT structure. */ 189 CALLBACKDATAMAGICEXECOUT = 0x11061949, 190 /** Magic number for sanity checking the CALLBACKDATAEXECIN structure. */ 191 CALLBACKDATAMAGICEXECINSTATUS = 0x19091951 187 /** The native node id. */ 188 uint32_t u32Handle; 189 } CALLBACKDATADIROPEN; 190 typedef CALLBACKDATADIROPEN *PCALLBACKDATADIROPEN; 191 192 typedef struct VBoxGuestCtrlCallbackDataDirRead 193 { 194 /** Callback data header. */ 195 CALLBACKHEADER hdr; 196 /** The native node id. */ 197 uint64_t u64NodeId; 198 /** The entry name. */ 199 char *pszName; 200 /** Size (in bytes) of entry name. */ 201 uint32_t cbName; 202 } CALLBACKDATADIRREAD; 203 typedef CALLBACKDATADIRREAD *PCALLBACKDATADIRREAD; 204 205 enum eVBoxGuestCtrlCallbackDataMagic 206 { 207 CALLBACKDATAMAGIC_CLIENT_DISCONNECTED = 0x08041984, 208 209 CALLBACKDATAMAGIC_EXEC_STATUS = 0x26011982, 210 CALLBACKDATAMAGIC_EXEC_OUT = 0x11061949, 211 CALLBACKDATAMAGIC_EXEC_IN_STATUS = 0x19091951, 212 213 CALLBACKDATAMAGIC_DIR_OPEN = 0x05031907, 214 CALLBACKDATAMAGIC_DIR_READ = 0x02041932 192 215 }; 193 216 … … 195 218 { 196 219 VBOXGUESTCTRLCALLBACKTYPE_UNKNOWN = 0, 220 197 221 VBOXGUESTCTRLCALLBACKTYPE_EXEC_START = 1, 198 222 VBOXGUESTCTRLCALLBACKTYPE_EXEC_OUTPUT = 2, 199 VBOXGUESTCTRLCALLBACKTYPE_EXEC_INPUT_STATUS = 3 223 VBOXGUESTCTRLCALLBACKTYPE_EXEC_INPUT_STATUS = 3, 224 225 VBOXGUESTCTRLCALLBACKTYPE_DIR_OPEN = 100, 226 VBOXGUESTCTRLCALLBACKTYPE_DIR_READ = 105 200 227 }; 201 228 … … 209 236 */ 210 237 HOST_CANCEL_PENDING_WAITS = 0, 238 239 /* 240 * Execution handling. 241 */ 242 211 243 /** 212 244 * The host wants to execute something in the guest. This can be a command line … … 222 254 * new data on stdout/stderr, process terminated etc. 223 255 */ 224 HOST_EXEC_GET_OUTPUT = 102 256 HOST_EXEC_GET_OUTPUT = 102, 257 258 /* 259 * Directory handling. 260 */ 261 262 /** 263 * Opens a directory for reading. 264 */ 265 HOST_DIR_OPEN = 200, 266 /** 267 * Closes a formerly opened directory. 268 */ 269 HOST_DIR_CLOSE = 201, 270 /** 271 * Reads the next entry from an open directory. 272 */ 273 HOST_DIR_READ = 202 225 274 }; 226 275 … … 247 296 */ 248 297 GUEST_DISCONNECTED = 3, 298 299 /* 300 * Process execution. 301 */ 302 249 303 /** 250 304 * Guests sends output from an executed process. … … 258 312 * Guests sends an input status notification to the host. 259 313 */ 260 GUEST_EXEC_SEND_INPUT_STATUS = 102 314 GUEST_EXEC_SEND_INPUT_STATUS = 102, 315 316 /* 317 * Directory handling. 318 */ 319 320 /** 321 * Guest sends back the directory handle. 322 */ 323 GUEST_DIR_SEND_OPEN = 200, 324 /** 325 * Guest sends back the next directory entry. 326 */ 327 GUEST_DIR_SEND_READ = 202 261 328 }; 262 329 … … 401 468 } VBoxGuestCtrlHGCMMsgExecStatusIn; 402 469 470 /** 471 * Closes a formerly openend guest directory. 472 */ 473 typedef struct VBoxGuestCtrlHGCMMsgDirClose 474 { 475 VBoxGuestHGCMCallInfo hdr; 476 /** Context ID. */ 477 HGCMFunctionParameter context; 478 /** Directory handle to close. */ 479 HGCMFunctionParameter handle; 480 481 } VBoxGuestCtrlHGCMMsgDirClose; 482 483 /** 484 * Opens a guest directory for reading. 485 */ 486 typedef struct VBoxGuestCtrlHGCMMsgDirOpen 487 { 488 VBoxGuestHGCMCallInfo hdr; 489 /** Context ID. */ 490 HGCMFunctionParameter context; 491 /** Directory (path) to open. */ 492 HGCMFunctionParameter directory; 493 /** Filter (DOS style wildcard). */ 494 HGCMFunctionParameter filter; 495 /** Open flags. */ 496 HGCMFunctionParameter flags; 497 /** The user name to run the executed command under. */ 498 HGCMFunctionParameter username; 499 /** The user's password. */ 500 HGCMFunctionParameter password; 501 /** OUT: Handle for opened directory. */ 502 HGCMFunctionParameter handle; 503 504 } VBoxGuestCtrlHGCMMsgDirOpen; 505 506 /** 507 * Reads next entry of an open guest directory. 508 */ 509 typedef struct VBoxGuestCtrlHGCMMsgDirRead 510 { 511 VBoxGuestHGCMCallInfo hdr; 512 /** Context ID. */ 513 HGCMFunctionParameter context; 514 /** Directory handle to read from. */ 515 HGCMFunctionParameter handle; 516 517 } VBoxGuestCtrlHGCMMsgDirRead; 518 403 519 #pragma pack () 404 520
Note:
See TracChangeset
for help on using the changeset viewer.