VirtualBox

Ignore:
Timestamp:
Jul 12, 2007 10:24:41 AM (17 years ago)
Author:
vboxsync
Message:

Main: Beautified method/property names in COM interfaces.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VBoxSDL/Framebuffer.cpp

    r3575 r3576  
    601601}
    602602
    603 STDMETHODIMP VBoxSDLFB::GetVisibleRegion(ULONG * aPcRect, BYTE * aPRect)
    604 {
    605     PRTRECT paRect = (PRTRECT)aPRect;
    606 
    607     if (!aPcRect)
     603STDMETHODIMP VBoxSDLFB::GetVisibleRegion(BYTE *aRectangles, ULONG aCount,
     604                                         ULONG *aCountCopied)
     605{
     606    PRTRECT rects = (PRTRECT)aRectangles;
     607
     608    if (!rects)
    608609        return E_POINTER;
    609610
    610     /* @todo */
    611     return S_OK;
    612 }
    613 
    614 STDMETHODIMP VBoxSDLFB::SetVisibleRegion(ULONG aCRect, BYTE * aPRect)
    615 {
    616     PRTRECT paRect = (PRTRECT)aPRect;
    617 
    618     if (!paRect)
     611    /// @todo
     612
     613        NOREF(aCount);
     614        NOREF(aCountCopied);
     615
     616    return S_OK;
     617}
     618
     619STDMETHODIMP VBoxSDLFB::SetVisibleRegion(BYTE *aRectangles, ULONG aCount)
     620{
     621    PRTRECT rects = (PRTRECT)aRectangles;
     622
     623    if (!rects)
    619624        return E_POINTER;
    620625
    621     /* @todo */
     626    /// @todo
     627
     628        NOREF(aCount);
     629
    622630    return S_OK;
    623631}
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