Changeset 108131 in vbox for trunk/include
- Timestamp:
- Feb 10, 2025 10:37:31 AM (2 months ago)
- svn:sync-xref-src-repo-rev:
- 167430
- Location:
- trunk/include/iprt
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/acpi.h
r108096 r108131 197 197 */ 198 198 RTDECL(int) RTAcpiTblDumpToFile(RTACPITBL hAcpiTbl, RTACPITBLTYPE enmOutType, const char *pszFilename); 199 200 201 /** 202 * Dumps the given ACPI table to a memory buffer allocated with RTMemAlloc() and returns the pointer 203 * to the allocated memory. 204 * 205 * @returns IPRT status code. 206 * @param hAcpiTbl The ACPI table handle. 207 * @param enmOutType The output type. 208 * @param ppbAcpiTbl Where to store the pointer to the ACPI table on success. 209 * @param pcbAcpiTbl Where to store the size of the ACPI table in bytes on success. 210 * 211 * @note The caller has to free the buffer with RTMemFree(). 212 */ 213 RTDECL(int) RTAcpiTblDumpToBufferA(RTACPITBL hAcpiTbl, RTACPITBLTYPE enmOutType, uint8_t **ppbAcpiTbl, size_t *pcbAcpiTbl); 199 214 200 215 -
trunk/include/iprt/mangling.h
r108095 r108131 400 400 # define RTAcpiTblDeviceStartF RT_MANGLER(RTAcpiTblDeviceStartF) 401 401 # define RTAcpiTblDeviceStartV RT_MANGLER(RTAcpiTblDeviceStartV) 402 # define RTAcpiTblDumpToBufferA RT_MANGLER(RTAcpiTblDumpToBufferA) 402 403 # define RTAcpiTblDumpToFile RT_MANGLER(RTAcpiTblDumpToFile) 403 404 # define RTAcpiTblDumpToVfsIoStrm RT_MANGLER(RTAcpiTblDumpToVfsIoStrm)
Note:
See TracChangeset
for help on using the changeset viewer.