VirtualBox

Changeset 79286 in vbox for trunk/include/VBox


Ignore:
Timestamp:
Jun 22, 2019 12:03:47 AM (6 years ago)
Author:
vboxsync
Message:

GuestControlSvc.h: cleanups. bugref:9320

File:
1 edited

Legend:

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

    r77115 r79286  
    137137    HOST_MSG_SESSION_CLOSE = 21,
    138138    /**
    139      * The host wants to execute something in the guest. This can be a command line
    140      * or starting a program.
    141      ** Note: Legacy (VBox < 4.3) message.
     139     * The host wants to execute something in the guest. This can be a command
     140     * line or starting a program.
     141     * @note Legacy (VBox < 4.3) message.
    142142     */
    143143    HOST_MSG_EXEC_CMD = 100,
    144144    /**
    145145     * Sends input data for stdin to a running process executed by HOST_EXEC_CMD.
    146      ** Note: Legacy (VBox < 4.3) message.
     146     * @note Legacy (VBox < 4.3) message.
    147147     */
    148148    HOST_MSG_EXEC_SET_INPUT = 101,
     
    169169     * Closes a guest file.
    170170     */
    171     HOST_MSG_FILE_CLOSE = 241,
     171    HOST_MSG_FILE_CLOSE,
    172172    /**
    173173     * Reads from an opened guest file.
     
    175175    HOST_MSG_FILE_READ = 250,
    176176    /**
    177      * Reads from an opened guest file at
    178      * a specified offset.
    179      */
    180     HOST_MSG_FILE_READ_AT = 251,
     177     * Reads from an opened guest file at a specified offset.
     178     */
     179    HOST_MSG_FILE_READ_AT,
    181180    /**
    182181     * Write to an opened guest file.
     
    184183    HOST_MSG_FILE_WRITE = 260,
    185184    /**
    186      * Write to an opened guest file at
    187      * a specified offset.
    188      */
    189     HOST_MSG_FILE_WRITE_AT = 261,
     185     * Write to an opened guest file at a specified offset.
     186     */
     187    HOST_MSG_FILE_WRITE_AT,
    190188    /**
    191189     * Changes the read & write position of an opened guest file.
     
    195193     * Gets the current file position of an opened guest file.
    196194     */
    197     HOST_MSG_FILE_TELL = 271,
     195    HOST_MSG_FILE_TELL,
    198196    /**
    199197     * Removes a directory on the guest.
     
    207205     * Retrieves the user's documents directory.
    208206     */
    209     HOST_MSG_PATH_USER_DOCUMENTS = 331,
     207    HOST_MSG_PATH_USER_DOCUMENTS,
    210208    /**
    211209     * Retrieves the user's home directory.
    212210     */
    213     HOST_MSG_PATH_USER_HOME = 332
     211    HOST_MSG_PATH_USER_HOME,
     212
     213    /** Blow the type up to 32-bits. */
     214    HOST_MSG_32BIT_HACK = 0x7fffffff
    214215};
    215216
     
    245246        RT_CASE_RET_STR(HOST_MSG_PATH_USER_DOCUMENTS);
    246247        RT_CASE_RET_STR(HOST_MSG_PATH_USER_HOME);
     248        RT_CASE_RET_STR(HOST_MSG_32BIT_HACK);
    247249    }
    248250    return "Unknown";
Note: See TracChangeset for help on using the changeset viewer.

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