Changeset 79738 in vbox for trunk/src/VBox/Main/src-client
- Timestamp:
- Jul 12, 2019 1:59:54 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 132099
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/KeyboardImpl.cpp
r79676 r79738 256 256 int vrc = VINF_SUCCESS; 257 257 uint32_t u32Usage; 258 u32Usage = (uint8_t)aUsageCode | ((uint32_t)(uint8_t)aUsagePage << 16) | fKeyRelease ? 0x80000000 : 0;258 u32Usage = (uint8_t)aUsageCode | ((uint32_t)(uint8_t)aUsagePage << 16) | (fKeyRelease ? 0x80000000 : 0); 259 259 vrc = pUpPort->pfnPutEventHid(pUpPort, u32Usage); 260 260 if (RT_FAILURE(vrc))
Note:
See TracChangeset
for help on using the changeset viewer.