Changeset 38293 in vbox for trunk/src/VBox/Main
- Timestamp:
- Aug 3, 2011 9:33:11 AM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 73300
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/GuestCtrlImpl.cpp
r38290 r38293 1172 1172 /** 1173 1173 * Gets the next stream block from a formerly processed guest stream. Will return 1174 * E_ PENDINGif not enough guest stream data was read yet, otherwise S_OK or an appropriate1174 * E_UNEXPECTED if not enough guest stream data was read yet, otherwise S_OK or an appropriate 1175 1175 * error. 1176 1176 * … … 1187 1187 SafeArray<BYTE> aOutputData; 1188 1188 ULONG cbOutputData = 0; 1189 int vrc = VINF_SUCCESS;1190 1189 for (;;) 1191 1190 { … … 1226 1225 { 1227 1226 if (vrc == VERR_MORE_DATA) 1228 rc = E_ PENDING; /** @todo Find a better rc! */1227 rc = E_UNEXPECTED; /** @todo Find a better rc! */ 1229 1228 break; 1230 1229 }
Note:
See TracChangeset
for help on using the changeset viewer.