VirtualBox

Changeset 19799 in vbox for trunk/src/VBox/Main


Ignore:
Timestamp:
May 18, 2009 4:18:45 PM (16 years ago)
Author:
vboxsync
Message:

C API: the API is stable for 2.2 and thus vbox_CAPI_v2_2.h doesn't change, only vbox_CAPI_v2_5.h does.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/cbinding/VBoxCAPI_v2_2.h

    r19798 r19799  
    11811181
    11821182
     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}
     1189enum FramebufferAccelerationOperation
     1190{
     1191    FramebufferAccelerationOperation_SolidFillAcceleration = 1,
     1192    FramebufferAccelerationOperation_ScreenCopyAcceleration = 2
     1193};
     1194/* End of enum FramebufferAccelerationOperation Declaration */
     1195
     1196
    11831197/* Start of enum FramebufferPixelFormat Declaration */
    11841198#define FRAMEBUFFERPIXELFORMAT_IID_STR "7acfd5ed-29e3-45e3-8136-73c9224f3d2d"
     
    37433757    );
    37443758
     3759    nsresult (*OperationSupported)(
     3760        IFramebuffer *pThis,
     3761        PRUint32 operation,
     3762        PRBool * supported
     3763    );
     3764
    37453765    nsresult (*VideoModeSupported)(
    37463766        IFramebuffer *pThis,
     
    37493769        PRUint32 bpp,
    37503770        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
    37513792    );
    37523793
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette