VirtualBox

Changeset 42461 in vbox for trunk/include/VBox/HostServices


Ignore:
Timestamp:
Jul 30, 2012 9:28:12 PM (13 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
79600
Message:

Guest Control 2.0: Update.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/VBox/HostServices/GuestControlSvc.h

    r42160 r42461  
    4444/**
    4545 * Process status when executed in the guest.
    46  * Note: Has to match Main's ExecuteProcessStatus_*!
    4746 */
    4847enum eProcessStatus
     
    250249     * new data on stdout/stderr, process terminated etc.
    251250     */
    252     HOST_EXEC_GET_OUTPUT = 102
     251    HOST_EXEC_GET_OUTPUT = 102,
     252
     253    /*
     254     * Guest control 2.0 commands start in the 2xx number space.
     255     */
     256
     257    /**
     258     * Waits for a certain event to happen. This can be an input, output
     259     * or status event.
     260     */
     261    HOST_EXEC_WAIT_FOR = 210
    253262};
    254263
     
    278287    /*
    279288     * Process execution.
     289     * The 1xx commands are legacy guest control commands and
     290     * will be replaced by newer commands in the future.
    280291     */
    281292
     
    291302     * Guests sends an input status notification to the host.
    292303     */
    293     GUEST_EXEC_SEND_INPUT_STATUS = 102
     304    GUEST_EXEC_SEND_INPUT_STATUS = 102,
     305
     306    /*
     307     * Guest control 2.0 commands start in the 2xx number space.
     308     */
     309
     310    /**
     311     * Guest notifies the host about some I/O event. This can be
     312     * a stdout, stderr or a stdin event. The actual event only tells
     313     * how many data is available / can be sent without actually
     314     * transmitting the data.
     315     */
     316    GUEST_EXEC_IO_NOTIFY = 210,
    294317};
    295318
     
    332355    /** The command to execute on the guest. */
    333356    HGCMFunctionParameter cmd;
    334     /** Execution flags (see IGuest::ExecuteProcessFlag_*). */
     357    /** Execution flags (see IGuest::ProcessCreateFlag_*). */
    335358    HGCMFunctionParameter flags;
    336359    /** Number of arguments. */
     
    351374     *  overall lifetime of the process or how long it
    352375     *  can take to bring the process up and running -
    353      *  (depends on the IGuest::ExecuteProcessFlag_*). */
     376     *  (depends on the IGuest::ProcessCreateFlag_*). */
    354377    HGCMFunctionParameter timeout;
    355378
     
    434457} VBoxGuestCtrlHGCMMsgExecStatusIn;
    435458
     459/**
     460 * Reports back the currente I/O status of a guest process.
     461 */
     462typedef struct VBoxGuestCtrlHGCMMsgExecIONotify
     463{
     464    VBoxGuestHGCMCallInfo hdr;
     465    /** Context ID. */
     466    HGCMFunctionParameter context;
     467    /** Data written. */
     468    HGCMFunctionParameter written;
     469
     470} VBoxGuestCtrlHGCMMsgExecIONotify;
     471
    436472#pragma pack ()
    437473
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette