Changeset 100037 in vbox for trunk/include
- Timestamp:
- Jun 1, 2023 6:06:11 PM (18 months ago)
- Location:
- trunk/include/iprt
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/fdt.h
r100036 r100037 273 273 RTDECL(int) RTFdtNodePropertyAddCellsU32V(RTFDT hFdt, const char *pszProperty, uint32_t cCells, va_list va); 274 274 275 276 /** 277 * Adds the given string list property to the given FDT. 278 * 279 * @returns IPRT status code. 280 * @param hFdt The flattened devicetree handle. 281 * @param pszProperty The property name. 282 * @param cStrings How many strings are following. 283 * @param ... The strings. 284 */ 285 RTDECL(int) RTFdtNodePropertyAddStringList(RTFDT hFdt, const char *pszProperty, uint32_t cStrings, ...); 286 287 288 /** 289 * Adds the given string list property to the given FDT. 290 * 291 * @returns IPRT status code. 292 * @param hFdt The flattened devicetree handle. 293 * @param pszProperty The property name. 294 * @param cStrings How many strings are following. 295 * @param va The strings. 296 */ 297 RTDECL(int) RTFdtNodePropertyAddStringListV(RTFDT hFdt, const char *pszProperty, uint32_t cStrings, va_list va); 298 275 299 #endif /* IN_RING3 */ 276 300 -
trunk/include/iprt/mangling.h
r100036 r100037 964 964 # define RTFdtNodePropertyAddEmpty RT_MANGLER(RTFdtNodePropertyAddEmpty) 965 965 # define RTFdtNodePropertyAddString RT_MANGLER(RTFdtNodePropertyAddString) 966 # define RTFdtNodePropertyAddStringList RT_MANGLER(RTFdtNodePropertyAddStringList) 967 # define RTFdtNodePropertyAddStringListV RT_MANGLER(RTFdtNodePropertyAddStringListV) 966 968 # define RTFdtNodePropertyAddU32 RT_MANGLER(RTFdtNodePropertyAddU32) 967 969 # define RTFdtPHandleAllocate RT_MANGLER(RTFdtPHandleAllocate)
Note:
See TracChangeset
for help on using the changeset viewer.