Changeset 52934 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Oct 2, 2014 1:53:30 PM (10 years ago)
- Location:
- trunk/src/VBox/Main/include
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/ConsoleImpl.h
r52926 r52934 235 235 uint32_t xHot, uint32_t yHot, 236 236 uint32_t width, uint32_t height, 237 ComSafeArrayIn(uint8_t, aShape)); 237 const uint8_t *pu8Shape, 238 uint32_t cbShape); 238 239 void i_onMouseCapabilityChange(BOOL supportsAbsolute, BOOL supportsRelative, 239 240 BOOL supportsMT, BOOL needsHostCursor); -
trunk/src/VBox/Main/include/MouseImpl.h
r52921 r52934 108 108 HRESULT i_convertDisplayRes(LONG x, LONG y, int32_t *pxAdj, int32_t *pyAdj, 109 109 bool *pfValid); 110 HRESULT i_putEventMultiTouch(LONG aCount, LONG64 *paContacts, ULONG aScanTime);110 HRESULT i_putEventMultiTouch(LONG aCount, const LONG64 *paContacts, ULONG aScanTime); 111 111 112 112 void i_getDeviceCaps(bool *pfAbs, bool *pfRel, bool *fMT); -
trunk/src/VBox/Main/include/USBProxyService.h
r41528 r52934 58 58 /** @name Host Interfaces 59 59 * @{ */ 60 HRESULT getDeviceCollection( ComSafeArrayOut(IHostUSBDevice *, aUSBDevices));60 HRESULT getDeviceCollection(std::vector<ComPtr<IHostUSBDevice> > &aUSBDevices); 61 61 /** @} */ 62 62
Note:
See TracChangeset
for help on using the changeset viewer.