Changeset 107064 in vbox for trunk/include
- Timestamp:
- Nov 20, 2024 8:21:23 PM (3 months ago)
- svn:sync-xref-src-repo-rev:
- 166018
- Location:
- trunk/include/iprt
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/acpi.h
r107063 r107064 261 261 */ 262 262 RTDECL(int) RTAcpiTblNameAppend(RTACPITBL hAcpiTbl, const char *pszName); 263 264 265 /** 266 * Appends a new NullName object. 267 * 268 * @returns IPRT status code. 269 * @param hAcpiTbl The ACPI table handle. 270 */ 271 RTDECL(int) RTAcpiTblNullNameAppend(RTACPITBL hAcpiTbl); 272 273 274 /** 275 * Appends a new NameString object. 276 * 277 * @returns IPRT status code. 278 * @param hAcpiTbl The ACPI table handle. 279 * @param pszName The name to append. 280 */ 281 RTDECL(int) RTAcpiTblNameStringAppend(RTACPITBL hAcpiTbl, const char *pszName); 263 282 264 283 … … 321 340 kAcpiStmt_Break, 322 341 /** Continue statement. */ 323 kAcpiStmt_Continue 342 kAcpiStmt_Continue, 343 /** Add(Operand, Operand, Target) statement. */ 344 kAcpiStmt_Add, 345 /** Subtract(Operand, Operand, Target) statement. */ 346 kAcpiStmt_Subtract, 347 /** And(Operand, Operand, Target) statement. */ 348 kAcpiStmt_And, 349 /** Nand(Operand, Operand, Target) statement. */ 350 kAcpiStmt_Nand, 351 /** Or(Operand, Operand, Target) statement. */ 352 kAcpiStmt_Or, 353 /** Xor(Operand, Operand, Target) statement. */ 354 kAcpiStmt_Xor, 355 /** Not(Operand, Target) statement. */ 356 kAcpiStmt_Not, 357 /** Store(TermArg, Supername) statement. */ 358 kAcpiStmt_Store, 359 /** Index(BuffPkgStrObj, IndexValue, Target) statement. */ 360 kAcpiStmt_Index, 361 /** DerefOf(ObjReference) statement. */ 362 kAcpiStmt_DerefOf 324 363 } RTACPISTMT; 325 364 … … 480 519 481 520 /** 521 * Appends a new OperationRegion() to the given ACPI table - extended version. 522 * 523 * @returns IPRT status code. 524 * @param hAcpiTbl The ACPI table handle. 525 * @param pszName The name of the operation region. 526 * @param enmSpace The operation region space type. 527 * 528 * @note This doesn't encode the region offset and size arguments but leaves it up to the caller 529 * to be able to encode complex stuff. 530 */ 531 RTDECL(int) RTAcpiTblOpRegionAppendEx(RTACPITBL hAcpiTbl, const char *pszName, RTACPIOPREGIONSPACE enmSpace); 532 533 534 /** 482 535 * Appends a new OperationRegion() to the given ACPI table. 483 536 * -
trunk/include/iprt/mangling.h
r107063 r107064 412 412 # define RTAcpiTblMethodFinalize RT_MANGLER(RTAcpiTblMethodFinalize) 413 413 # define RTAcpiTblNameAppend RT_MANGLER(RTAcpiTblNameAppend) 414 # define RTAcpiTblNameStringAppend RT_MANGLER(RTAcpiTblNameStringAppend) 415 # define RTAcpiTblNullNameAppend RT_MANGLER(RTAcpiTblNullNameAppend) 414 416 # define RTAcpiTblOpRegionAppend RT_MANGLER(RTAcpiTblOpRegionAppend) 417 # define RTAcpiTblOpRegionAppendEx RT_MANGLER(RTAcpiTblOpRegionAppendEx) 415 418 # define RTAcpiTblPackageStart RT_MANGLER(RTAcpiTblPackageStart) 416 419 # define RTAcpiTblPackageFinalize RT_MANGLER(RTAcpiTblPackageFinalize)
Note:
See TracChangeset
for help on using the changeset viewer.