Changeset 42234 in vbox for trunk/src/VBox/Main/include/GuestCtrlImplPrivate.h
- Timestamp:
- Jul 19, 2012 4:43:43 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/GuestCtrlImplPrivate.h
r42214 r42234 91 91 void Destroy(void); 92 92 93 eVBoxGuestCtrlCallbackType Type(void); 93 int Signal(int rc = VINF_SUCCESS, const Utf8Str &strMsg = ""); 94 95 Utf8Str GetMessage(void) { return mMessage; } 96 97 eVBoxGuestCtrlCallbackType GetType(void) { return mType; } 94 98 95 99 int Wait(ULONG uTimeoutMS); … … 109 113 /** The event semaphore triggering the*/ 110 114 RTSEMEVENT hEventSem; 111 /** Extended error information, if any. */ 112 ErrorInfo mErrorInfo; 115 /** Overall result code. */ 116 int mRC; 117 /** Error / information message to the 118 * result code. */ 119 Utf8Str mMessage; 113 120 }; 114 121 typedef std::map < uint32_t, GuestCtrlCallback* > GuestCtrlCallbacks;
Note:
See TracChangeset
for help on using the changeset viewer.