- Timestamp:
- Sep 17, 2019 12:33:54 PM (5 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/system.h
r80708 r80855 280 280 * Queries the system's firmware type. 281 281 * 282 * @ret valIPRT status code.283 * @param p FirmwareType Where to storethe firmware type on success.284 */ 285 RTDECL(int) RTSystemFirmwareQueryType(PRTSYSFWTYPE p FirmwareType);282 * @returns IPRT status code. 283 * @param penmType Where to return the firmware type on success. 284 */ 285 RTDECL(int) RTSystemFirmwareQueryType(PRTSYSFWTYPE penmType); 286 286 287 287 /** -
trunk/src/VBox/Runtime/generic/RTSystemFirmware-generic.cpp
r80708 r80855 29 29 * Header Files * 30 30 *********************************************************************************************************************************/ 31 #include "internal/iprt.h" 32 #include <iprt/system.h> 31 33 32 #include <iprt/assert.h>33 34 #include <iprt/errcore.h> 34 #include <iprt/ldr.h>35 #include <iprt/system.h>36 #include "internal/iprt.h"37 35 38 36 39 /********************************************************************************************************************************* 40 * Structures and Typedefs * 41 *********************************************************************************************************************************/ 42 43 44 RTDECL(int) RTSystemFirmwareQueryType(PRTSYSFWTYPE pFirmwareType) 37 RTDECL(int) RTSystemFirmwareQueryType(PRTSYSFWTYPE penmFirmwareType) 45 38 { 46 AssertPtrReturn(pFirmwareType, VERR_INVALID_POINTER);47 48 39 return VERR_NOT_SUPPORTED; 49 40 } … … 60 51 RTDECL(int) RTSystemFirmwareValueGet(RTSYSFWPROP enmProp, PRTSYSFWVALUE *ppValue) 61 52 { 62 AssertPtrReturn(ppValue, VERR_INVALID_POINTER);63 64 53 RT_NOREF(enmProp, ppValue); 65 66 54 return VERR_NOT_SUPPORTED; 67 55 } 68 56 RT_EXPORT_SYMBOL(RTSystemFirmwareValueGet); 57
Note:
See TracChangeset
for help on using the changeset viewer.