Changeset 47301 in vbox
- Timestamp:
- Jul 22, 2013 2:07:57 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 87440
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/include/VBox/vmm/pdmifs.h ¶
r47294 r47301 2286 2286 * 2287 2287 * @param pInterface Pointer to this interface. 2288 * @param pszUser Guest user name to update status for. 2289 * @param pszDomain Domain the guest user is bound to. Optional. 2290 * @param uState New guest user state to notify host about. 2291 * @param puDetails Pointer to optional state data. 2292 * @param cbDetails Size (in bytes) of optional state data. 2288 2293 * @thread The emulation thread. 2289 2294 */ 2290 2295 DECLR3CALLBACKMEMBER(void, pfnUpdateGuestUserState,(PPDMIVMMDEVCONNECTOR pInterface, const char *pszUser, const char *pszDomain, 2291 2296 uint32_t uState, 2292 uint8_t *puDetails, uint32_t cbDetails));2297 const uint8_t *puDetails, uint32_t cbDetails)); 2293 2298 2294 2299 /** -
TabularUnified trunk/src/VBox/Devices/VMMDev/VMMDev.cpp ¶
r47300 r47301 687 687 AssertPtr(pvDynamic); 688 688 689 if (!pStatus->cbUser) )/* User name is required. */689 if (!pStatus->cbUser) /* User name is required. */ 690 690 return VERR_INVALID_PARAMETER; 691 691 const char *pszUser = (const char *)pvDynamic;
Note:
See TracChangeset
for help on using the changeset viewer.