Changeset 470 in vbox for trunk/src/VBox/Main/FramebufferImpl.cpp
- Timestamp:
- Jan 31, 2007 4:14:04 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/FramebufferImpl.cpp
r1 r470 56 56 ///////////////////////////////////////////////////////////////////////////// 57 57 58 STDMETHODIMP InternalFramebuffer::COMGETTER(Address) ( ULONG*address)58 STDMETHODIMP InternalFramebuffer::COMGETTER(Address) (BYTE **address) 59 59 { 60 60 if (!address) 61 61 return E_POINTER; 62 *address = (ULONG)mData;62 *address = mData; 63 63 return S_OK; 64 64 } … … 148 148 } 149 149 150 STDMETHODIMP InternalFramebuffer::RequestResize(FramebufferPixelFormat_T pixelFormat, ULONG vram, ULONG lineSize, ULONG w, ULONG h, 151 BOOL *finished) 150 STDMETHODIMP 151 InternalFramebuffer::RequestResize(FramebufferPixelFormat_T pixelFormat, BYTE *vram, 152 ULONG lineSize, ULONG w, ULONG h, 153 BOOL *finished) 152 154 { 153 155 if (!finished)
Note:
See TracChangeset
for help on using the changeset viewer.