Changeset 34395 in vbox
- Timestamp:
- Nov 26, 2010 2:33:47 PM (14 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/KeyboardImpl.cpp
r34393 r34395 219 219 com::SafeArray<LONG> keysSent(sent); 220 220 memcpy(keysSent.raw(), keys.raw(), sent*sizeof(LONG)); 221 fireGuestKeyboardEvent(mEventSource, ComSafeArrayAsInParam(keys)); 221 222 VBoxEventDesc evDesc; 223 evDesc.init(mEventSource, VBoxEventType_OnGuestKeyboard, ComSafeArrayAsInParam(keys)); 224 evDesc.fire(0); 222 225 223 226 if (RT_FAILURE(vrc)) -
trunk/src/VBox/Main/MouseImpl.cpp
r34393 r34395 23 23 24 24 #include "AutoCaller.h" 25 #include "VBoxEvents.h"26 25 #include "Logging.h" 27 26
Note:
See TracChangeset
for help on using the changeset viewer.