- Timestamp:
- Sep 17, 2019 1:13:26 PM (5 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/mangling.h
r80832 r80860 2223 2223 # define RTSystemFirmwareQueryType RT_MANGLER(RTSystemFirmwareQueryType) 2224 2224 # define RTSystemFirmwareValueFree RT_MANGLER(RTSystemFirmwareValueFree) 2225 # define RTSystemFirmwareValue Get RT_MANGLER(RTSystemFirmwareValueGet)2225 # define RTSystemFirmwareValueQuery RT_MANGLER(RTSystemFirmwareValueQuery) 2226 2226 # define RTSystemIsInsideVM RT_MANGLER(RTSystemIsInsideVM) 2227 2227 # define RTSystemQueryAvailableRam RT_MANGLER(RTSystemQueryAvailableRam) -
trunk/include/iprt/system.h
r80856 r80860 337 337 } RTSYSFWPROP; 338 338 339 RTDECL(int) RTSystemFirmwareValue Get(RTSYSFWPROP enmProp, PRTSYSFWVALUE *ppValue);339 RTDECL(int) RTSystemFirmwareValueQuery(RTSYSFWPROP enmProp, PRTSYSFWVALUE *ppValue); 340 340 341 341 RTDECL(void) RTSystemFirmwareValueFree(PRTSYSFWVALUE pValue); -
trunk/src/VBox/Runtime/generic/RTSystemFirmware-generic.cpp
r80857 r80860 50 50 51 51 52 RTDECL(int) RTSystemFirmwareValue Get(RTSYSFWPROP enmProp, PRTSYSFWVALUE *ppValue)52 RTDECL(int) RTSystemFirmwareValueQuery(RTSYSFWPROP enmProp, PRTSYSFWVALUE *ppValue) 53 53 { 54 54 RT_NOREF(enmProp, ppValue); 55 55 return VERR_NOT_SUPPORTED; 56 56 } 57 RT_EXPORT_SYMBOL(RTSystemFirmwareValue Get);57 RT_EXPORT_SYMBOL(RTSystemFirmwareValueQuery); 58 58 -
trunk/src/VBox/Runtime/r3/win/RTSystemFirmware-win.cpp
r80708 r80860 169 169 170 170 171 RTDECL(int) RTSystemFirmwareValue Get(RTSYSFWPROP enmProp, PRTSYSFWVALUE *ppValue)171 RTDECL(int) RTSystemFirmwareValueQuery(RTSYSFWPROP enmProp, PRTSYSFWVALUE *ppValue) 172 172 { 173 173 int rc = rtSystemFirmwareGetPrivileges(SE_SYSTEM_ENVIRONMENT_NAME); -
trunk/src/VBox/Runtime/testcase/tstRTSystemQueryFirmware.cpp
r80708 r80860 66 66 67 67 PRTSYSFWVALUE pValue; 68 rc = RTSystemFirmwareValue Get(RTSYSFWPROP_SECURE_BOOT, &pValue);68 rc = RTSystemFirmwareValueQuery(RTSYSFWPROP_SECURE_BOOT, &pValue); 69 69 if (RT_SUCCESS(rc)) 70 70 {
Note:
See TracChangeset
for help on using the changeset viewer.