Changeset 71488 in vbox for trunk/src/VBox/Additions/common
- Timestamp:
- Mar 23, 2018 3:12:15 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxVideo/Modesetting.cpp
r71147 r71488 79 79 * 80 80 * @returns Whether the value is supported. 81 * @param u16Id Identifier of the configuration value (VBE_DISPI_CFG_ID_*). 82 * @param pu32Value Where to store value from the host. 83 */ 84 DECLHIDDEN(bool) VBoxVGACfgQuery(uint16_t u16Id, uint32_t *pu32Value) 81 * @param u16Id Identifier of the configuration value (VBE_DISPI_CFG_ID_*). 82 * @param pu32Value Where to store value from the host. 83 * @param u32DefValue What to assign to *pu32Value if the value is not supported. 84 */ 85 DECLHIDDEN(bool) VBoxVGACfgQuery(uint16_t u16Id, uint32_t *pu32Value, uint32_t u32DefValue) 85 86 { 86 87 uint32_t u32; … … 95 96 } 96 97 98 *pu32Value = u32DefValue; 97 99 return false; 98 100 }
Note:
See TracChangeset
for help on using the changeset viewer.