Changeset 29518 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- May 17, 2010 10:06:22 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 61658
- Location:
- trunk/src/VBox/Main/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/ConsoleImpl.h
r29480 r29518 21 21 #include "VirtualBoxBase.h" 22 22 #include "SchemaDefs.h" 23 #include "VBox/com/array.h" 23 24 24 25 class Guest; … … 206 207 uint32_t xHot, uint32_t yHot, 207 208 uint32_t width, uint32_t height, 208 void *pShape);209 ComSafeArrayIn(uint8_t, aShape)); 209 210 void onMouseCapabilityChange(BOOL supportsAbsolute, BOOL supportsRelative, BOOL needsHostCursor); 210 211 void onStateChange(MachineState_T aMachineState); … … 675 676 uint32_t width; 676 677 uint32_t height; 677 BYTE *shape; 678 size_t shapeSize; 678 com::SafeArray<BYTE> shape; 679 679 } 680 680 mpsc; -
trunk/src/VBox/Main/include/DisplayImpl.h
r28973 r29518 150 150 // IConsoleCallback methods 151 151 STDMETHOD(OnMousePointerShapeChange)(BOOL visible, BOOL alpha, ULONG xHot, ULONG yHot, 152 ULONG width, ULONG height, BYTE *shape)152 ULONG width, ULONG height, ComSafeArrayIn(BYTE,shape)) 153 153 { 154 154 return S_OK;
Note:
See TracChangeset
for help on using the changeset viewer.