Changeset 3564 in vbox for trunk/src/VBox/Frontends/VBoxBFE
- Timestamp:
- Jul 11, 2007 4:46:05 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 22805
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxBFE/VMMDevInterface.cpp
r2981 r3564 170 170 } 171 171 172 DECLCALLBACK(int) iface_SetVisibleRegion(PPDMIVMMDEVCONNECTOR pInterface, uint32_t cRect, PRTRECT pRect) 173 { 174 /* not implemented */ 175 return VINF_SUCCESS; 176 } 177 178 DECLCALLBACK(int) iface_QueryVisibleRegion(PPDMIVMMDEVCONNECTOR pInterface, uint32_t *pcRect, PRTRECT pRect) 179 { 180 /* not implemented */ 181 return VINF_SUCCESS; 182 } 183 172 184 DECLCALLBACK(int) VMMDev::VideoModeSupported(PPDMIVMMDEVCONNECTOR pInterface, uint32_t width, uint32_t height, 173 185 uint32_t bpp, bool *fSupported) … … 271 283 pData->Connector.pfnVideoModeSupported = VMMDev::VideoModeSupported; 272 284 pData->Connector.pfnGetHeightReduction = VMMDev::GetHeightReduction; 285 pData->Connector.pfnSetVisibleRegion = iface_SetVisibleRegion; 286 pData->Connector.pfnQueryVisibleRegion = iface_QueryVisibleRegion; 273 287 274 288 /*
Note:
See TracChangeset
for help on using the changeset viewer.