Changeset 3576 in vbox for trunk/src/VBox/Frontends/VBoxSDL/Framebuffer.cpp
- Timestamp:
- Jul 12, 2007 10:24:41 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxSDL/Framebuffer.cpp
r3575 r3576 601 601 } 602 602 603 STDMETHODIMP VBoxSDLFB::GetVisibleRegion(ULONG * aPcRect, BYTE * aPRect) 604 { 605 PRTRECT paRect = (PRTRECT)aPRect; 606 607 if (!aPcRect) 603 STDMETHODIMP VBoxSDLFB::GetVisibleRegion(BYTE *aRectangles, ULONG aCount, 604 ULONG *aCountCopied) 605 { 606 PRTRECT rects = (PRTRECT)aRectangles; 607 608 if (!rects) 608 609 return E_POINTER; 609 610 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 619 STDMETHODIMP VBoxSDLFB::SetVisibleRegion(BYTE *aRectangles, ULONG aCount) 620 { 621 PRTRECT rects = (PRTRECT)aRectangles; 622 623 if (!rects) 619 624 return E_POINTER; 620 625 621 /* @todo */ 626 /// @todo 627 628 NOREF(aCount); 629 622 630 return S_OK; 623 631 }
Note:
See TracChangeset
for help on using the changeset viewer.