Changeset 79286 in vbox for trunk/include/VBox
- Timestamp:
- Jun 22, 2019 12:03:47 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/HostServices/GuestControlSvc.h
r77115 r79286 137 137 HOST_MSG_SESSION_CLOSE = 21, 138 138 /** 139 * The host wants to execute something in the guest. This can be a command line140 * 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. 142 142 */ 143 143 HOST_MSG_EXEC_CMD = 100, 144 144 /** 145 145 * 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. 147 147 */ 148 148 HOST_MSG_EXEC_SET_INPUT = 101, … … 169 169 * Closes a guest file. 170 170 */ 171 HOST_MSG_FILE_CLOSE = 241,171 HOST_MSG_FILE_CLOSE, 172 172 /** 173 173 * Reads from an opened guest file. … … 175 175 HOST_MSG_FILE_READ = 250, 176 176 /** 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, 181 180 /** 182 181 * Write to an opened guest file. … … 184 183 HOST_MSG_FILE_WRITE = 260, 185 184 /** 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, 190 188 /** 191 189 * Changes the read & write position of an opened guest file. … … 195 193 * Gets the current file position of an opened guest file. 196 194 */ 197 HOST_MSG_FILE_TELL = 271,195 HOST_MSG_FILE_TELL, 198 196 /** 199 197 * Removes a directory on the guest. … … 207 205 * Retrieves the user's documents directory. 208 206 */ 209 HOST_MSG_PATH_USER_DOCUMENTS = 331,207 HOST_MSG_PATH_USER_DOCUMENTS, 210 208 /** 211 209 * Retrieves the user's home directory. 212 210 */ 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 214 215 }; 215 216 … … 245 246 RT_CASE_RET_STR(HOST_MSG_PATH_USER_DOCUMENTS); 246 247 RT_CASE_RET_STR(HOST_MSG_PATH_USER_HOME); 248 RT_CASE_RET_STR(HOST_MSG_32BIT_HACK); 247 249 } 248 250 return "Unknown";
Note:
See TracChangeset
for help on using the changeset viewer.