Changeset 107099 in vbox for trunk/include
- Timestamp:
- Nov 22, 2024 1:44:29 AM (6 months ago)
- svn:sync-xref-src-repo-rev:
- 166065
- Location:
- trunk/include/iprt
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/mangling.h
r107064 r107099 425 425 # define RTAcpiTblUuidAppend RT_MANGLER(RTAcpiTblUuidAppend) 426 426 # define RTAcpiTblUuidAppendFromStr RT_MANGLER(RTAcpiTblUuidAppendFromStr) 427 # define RTArchValToString RT_MANGLER(RTArchValToString) 427 428 # define RTAssertAreQuiet RT_MANGLER(RTAssertAreQuiet) 428 429 # define RTAssertMayPanic RT_MANGLER(RTAssertMayPanic) … … 2510 2511 # define RTSymlinkRead RT_MANGLER(RTSymlinkRead) 2511 2512 # define RTSymlinkReadA RT_MANGLER(RTSymlinkReadA) 2513 # define RTSystemGetNativeArch RT_MANGLER(RTSystemGetNativeArch) 2512 2514 # define RTSystemGetPageSize RT_MANGLER(RTSystemGetPageSize) 2513 2515 # define RTSystemGetPageOffsetMask RT_MANGLER(RTSystemGetPageOffsetMask) -
trunk/include/iprt/system.h
r106061 r107099 192 192 */ 193 193 RTDECL(size_t) RTSystemPageAlignSize(size_t cb); 194 195 196 /** 197 * Get the architecture the OS is actually running on. 198 * 199 * This bypasses WoW64, Rosetta(2), and similar application compatibility 200 * emulators. 201 * 202 * @returns RT_ARCH_VAL_XXX 203 * 204 * @sa RTArchValToString 205 */ 206 RTDECL(uint32_t) RTSystemGetNativeArch(void); 194 207 195 208
Note:
See TracChangeset
for help on using the changeset viewer.