- Timestamp:
- Jul 16, 2013 1:59:25 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 87298
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/DisplayImpl.h
r47190 r47192 107 107 { 108 108 public: 109 virtual int getScreenResolution(uint32_t cScreen, uint32_t*pcx,110 uint32_t *pcy, uint32_t*pcBPP) = 0;109 virtual int getScreenResolution(uint32_t cScreen, ULONG *pcx, 110 ULONG *pcy, ULONG *pcBPP) = 0; 111 111 virtual void getFramebufferDimensions(int32_t *px1, int32_t *py1, 112 112 int32_t *px2, int32_t *py2) = 0; … … 161 161 } 162 162 void getFramebufferDimensions(int32_t *px1, int32_t *py1, int32_t *px2, int32_t *py2); 163 int getScreenResolution(uint32_t cScreen, uint32_t *pcx, uint32_t*pcy,164 uint32_t*pcBPP)163 int getScreenResolution(uint32_t cScreen, ULONG *pcx, ULONG *pcy, 164 ULONG *pcBPP) 165 165 { 166 166 return GetScreenResolution(cScreen, pcx, pcy, pcBPP); -
trunk/src/VBox/Main/testcase/tstMouseImpl.cpp
r47190 r47192 43 43 void getFramebufferDimensions(int32_t *px1, int32_t *py1, 44 44 int32_t *px2, int32_t *py2); 45 int getScreenResolution(uint32_t cScreen, uint32_t *pcx, uint32_t*pcy,46 uint32_t*pcBPP);45 int getScreenResolution(uint32_t cScreen, ULONG *pcx, ULONG *pcy, 46 ULONG *pcBPP); 47 47 }; 48 48 … … 170 170 } 171 171 172 int TestDisplay::getScreenResolution(uint32_t cScreen, uint32_t *pcx,173 uint32_t *pcy, uint32_t*pcBPP)172 int TestDisplay::getScreenResolution(uint32_t cScreen, ULONGt *pcx, 173 ULONG *pcy, ULONG *pcBPP) 174 174 { 175 175 NOREF(cScreen);
Note:
See TracChangeset
for help on using the changeset viewer.