Searched defs:aScancodes (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Main/src-client/
H A DKeyboardImpl.cpp169 * @param aScancodes Pointer to the first scancode
174 HRESULT Keyboard::putScancodes(const std::vector<LONG> &aScancodes, argument
198 *aCodesStored = (uint32_t)aScancodes.size();
205 for (sent = 0; (sent < aScancodes.size()) && RT_SUCCESS(vrc); ++sent)
206 vrc = pUpPort->pfnPutEventScan(pUpPort, (uint8_t)aScancodes[sent]);
211 com::SafeArray<LONG> keys(aScancodes.size());
212 for (size_t i = 0; i < aScancodes.size(); ++i)
213 keys[i] = aScancodes[i];

Completed in 34 milliseconds