VirtualBox

Changeset 80860 in vbox for trunk


Ignore:
Timestamp:
Sep 17, 2019 1:13:26 PM (5 years ago)
Author:
vboxsync
Message:

IPRT: Renamed RTSystemFirmwareValueGet() -> RTSystemFirmwareValueQuery().

Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/iprt/mangling.h

    r80832 r80860  
    22232223# define RTSystemFirmwareQueryType                      RT_MANGLER(RTSystemFirmwareQueryType)
    22242224# define RTSystemFirmwareValueFree                      RT_MANGLER(RTSystemFirmwareValueFree)
    2225 # define RTSystemFirmwareValueGet                       RT_MANGLER(RTSystemFirmwareValueGet)
     2225# define RTSystemFirmwareValueQuery                     RT_MANGLER(RTSystemFirmwareValueQuery)
    22262226# define RTSystemIsInsideVM                             RT_MANGLER(RTSystemIsInsideVM)
    22272227# define RTSystemQueryAvailableRam                      RT_MANGLER(RTSystemQueryAvailableRam)
  • trunk/include/iprt/system.h

    r80856 r80860  
    337337} RTSYSFWPROP;
    338338
    339 RTDECL(int) RTSystemFirmwareValueGet(RTSYSFWPROP enmProp, PRTSYSFWVALUE *ppValue);
     339RTDECL(int) RTSystemFirmwareValueQuery(RTSYSFWPROP enmProp, PRTSYSFWVALUE *ppValue);
    340340
    341341RTDECL(void) RTSystemFirmwareValueFree(PRTSYSFWVALUE pValue);
  • trunk/src/VBox/Runtime/generic/RTSystemFirmware-generic.cpp

    r80857 r80860  
    5050
    5151
    52 RTDECL(int) RTSystemFirmwareValueGet(RTSYSFWPROP enmProp, PRTSYSFWVALUE *ppValue)
     52RTDECL(int) RTSystemFirmwareValueQuery(RTSYSFWPROP enmProp, PRTSYSFWVALUE *ppValue)
    5353{
    5454    RT_NOREF(enmProp, ppValue);
    5555    return VERR_NOT_SUPPORTED;
    5656}
    57 RT_EXPORT_SYMBOL(RTSystemFirmwareValueGet);
     57RT_EXPORT_SYMBOL(RTSystemFirmwareValueQuery);
    5858
  • trunk/src/VBox/Runtime/r3/win/RTSystemFirmware-win.cpp

    r80708 r80860  
    169169
    170170
    171 RTDECL(int) RTSystemFirmwareValueGet(RTSYSFWPROP enmProp, PRTSYSFWVALUE *ppValue)
     171RTDECL(int) RTSystemFirmwareValueQuery(RTSYSFWPROP enmProp, PRTSYSFWVALUE *ppValue)
    172172{
    173173    int rc = rtSystemFirmwareGetPrivileges(SE_SYSTEM_ENVIRONMENT_NAME);
  • trunk/src/VBox/Runtime/testcase/tstRTSystemQueryFirmware.cpp

    r80708 r80860  
    6666
    6767    PRTSYSFWVALUE pValue;
    68     rc = RTSystemFirmwareValueGet(RTSYSFWPROP_SECURE_BOOT, &pValue);
     68    rc = RTSystemFirmwareValueQuery(RTSYSFWPROP_SECURE_BOOT, &pValue);
    6969    if (RT_SUCCESS(rc))
    7070    {
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette