Changeset 19799 in vbox for trunk/src/VBox/Main
- Timestamp:
- May 18, 2009 4:18:45 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/cbinding/VBoxCAPI_v2_2.h
r19798 r19799 1181 1181 1182 1182 1183 /* Start of enum FramebufferAccelerationOperation Declaration */ 1184 #define FRAMEBUFFERACCELERATIONOPERATION_IID_STR "f0e5ebbe-dc8e-4e2d-916e-53baa3844df8" 1185 #define FRAMEBUFFERACCELERATIONOPERATION_IID { \ 1186 0xf0e5ebbe, 0xdc8e, 0x4e2d, \ 1187 { 0x91, 0x6e, 0x53, 0xba, 0xa3, 0x84, 0x4d, 0xf8 } \ 1188 } 1189 enum FramebufferAccelerationOperation 1190 { 1191 FramebufferAccelerationOperation_SolidFillAcceleration = 1, 1192 FramebufferAccelerationOperation_ScreenCopyAcceleration = 2 1193 }; 1194 /* End of enum FramebufferAccelerationOperation Declaration */ 1195 1196 1183 1197 /* Start of enum FramebufferPixelFormat Declaration */ 1184 1198 #define FRAMEBUFFERPIXELFORMAT_IID_STR "7acfd5ed-29e3-45e3-8136-73c9224f3d2d" … … 3743 3757 ); 3744 3758 3759 nsresult (*OperationSupported)( 3760 IFramebuffer *pThis, 3761 PRUint32 operation, 3762 PRBool * supported 3763 ); 3764 3745 3765 nsresult (*VideoModeSupported)( 3746 3766 IFramebuffer *pThis, … … 3749 3769 PRUint32 bpp, 3750 3770 PRBool * supported 3771 ); 3772 3773 nsresult (*SolidFill)( 3774 IFramebuffer *pThis, 3775 PRUint32 x, 3776 PRUint32 y, 3777 PRUint32 width, 3778 PRUint32 height, 3779 PRUint32 color, 3780 PRBool * handled 3781 ); 3782 3783 nsresult (*CopyScreenBits)( 3784 IFramebuffer *pThis, 3785 PRUint32 xDst, 3786 PRUint32 yDst, 3787 PRUint32 xSrc, 3788 PRUint32 ySrc, 3789 PRUint32 width, 3790 PRUint32 height, 3791 PRBool * handled 3751 3792 ); 3752 3793
Note:
See TracChangeset
for help on using the changeset viewer.