Changeset 45805 in vbox for trunk/include/VBox/com
- Timestamp:
- Apr 29, 2013 12:30:50 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/com/ErrorInfo.h
r45125 r45805 174 174 mIsFullAvailable(false), 175 175 mResultCode(S_OK), 176 mResultDetail(0), 176 177 m_pNext(NULL) 177 178 { … … 183 184 mIsFullAvailable(false), 184 185 mResultCode(S_OK), 186 mResultDetail(0), 185 187 m_pNext(NULL) 186 188 { … … 191 193 ErrorInfo (const ComPtr <IVirtualBoxErrorInfo> &aPtr) 192 194 : mIsBasicAvailable (false), mIsFullAvailable (false) 193 , mResultCode (S_OK) 195 , mResultCode (S_OK), mResultDetail(0) 194 196 { init (aPtr); } 195 197 … … 204 206 ErrorInfo (IVirtualBoxErrorInfo *aInfo) 205 207 : mIsBasicAvailable (false), mIsFullAvailable (false) 206 , mResultCode (S_OK) 208 , mResultCode (S_OK), mResultDetail(0) 207 209 { init (aInfo); } 208 210 … … 264 266 { 265 267 return mResultCode; 268 } 269 270 /** 271 * Returns the (optional) result detail code of the failed operation. 272 */ 273 LONG getResultDetail() const 274 { 275 return mResultDetail; 266 276 } 267 277 … … 359 369 360 370 HRESULT mResultCode; 371 LONG mResultDetail; 361 372 Guid mInterfaceID; 362 373 Bstr mComponent;
Note:
See TracChangeset
for help on using the changeset viewer.