Changeset 52064 in vbox for trunk/src/VBox/Main/testcase
- Timestamp:
- Jul 16, 2014 9:23:55 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/testcase/tstMouseImpl.cpp
r51616 r52064 5 5 6 6 /* 7 * Copyright (C) 2011-201 3Oracle Corporation7 * Copyright (C) 2011-2014 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 40 40 class TestDisplay : public DisplayMouseInterface 41 41 { 42 v oid getFramebufferDimensions(int32_t *px1, int32_t *py1,43 int32_t *px2, int32_t *py2);44 int getScreenResolution(uint32_t cScreen, ULONG *pcx, ULONG *pcy,45 ULONG *pcBPP, LONG *pXOrigin, LONG *pYOrigin);42 virtual HRESULT i_getScreenResolution(ULONG cScreen, ULONG *pcx, ULONG *pcy, 43 ULONG *pcBPP, LONG *pXOrigin, LONG *pYOrigin); 44 virtual void i_getFramebufferDimensions(int32_t *px1, int32_t *py1, 45 int32_t *px2, int32_t *py2); 46 46 }; 47 47 … … 233 233 } 234 234 235 void TestDisplay:: getFramebufferDimensions(int32_t *px1, int32_t *py1,236 int32_t *px2, int32_t *py2)235 void TestDisplay::i_getFramebufferDimensions(int32_t *px1, int32_t *py1, 236 int32_t *px2, int32_t *py2) 237 237 { 238 238 if (px1) … … 246 246 } 247 247 248 int TestDisplay::getScreenResolution(uint32_tcScreen, ULONG *pcx,249 ULONG *pcy, ULONG *pcBPP, LONG *pXOrigin, LONG *pYOrigin)248 HRESULT TestDisplay::i_getScreenResolution(ULONG cScreen, ULONG *pcx, 249 ULONG *pcy, ULONG *pcBPP, LONG *pXOrigin, LONG *pYOrigin) 250 250 { 251 251 NOREF(cScreen);
Note:
See TracChangeset
for help on using the changeset viewer.