Changeset 14215 in vbox for trunk/src/VBox/Main
- Timestamp:
- Nov 14, 2008 2:48:49 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 39331
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/KeyboardImpl.cpp
r13837 r14215 187 187 /// @todo is it actually possible that not all scancodes can be transmitted? 188 188 if (codesStored) 189 *codesStored = keys.size();189 *codesStored = (uint32_t)keys.size(); 190 190 191 191 return rc; -
trunk/src/VBox/Main/hgcm/HGCM.cpp
r13837 r14215 1111 1111 1112 1112 /* Save the length of the service name. */ 1113 rc = SSMR3PutU32(pSSM, strlen(pSvc->m_pszSvcName) + 1);1113 rc = SSMR3PutU32(pSSM, (uint32_t) strlen(pSvc->m_pszSvcName) + 1); 1114 1114 AssertRCReturn(rc, rc); 1115 1115
Note:
See TracChangeset
for help on using the changeset viewer.