Changeset 40826 in vbox for trunk/include/iprt
- Timestamp:
- Apr 8, 2012 6:41:46 PM (13 years ago)
- Location:
- trunk/include/iprt
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/asmdefs.mac
r30943 r40826 122 122 %ifdef ASM_FORMAT_PE 123 123 %ifdef RT_ARCH_AMD64 124 %define IMP(name) qword [IMPNAME(name) wrt rip] 125 %else 126 %define IMP(name) dword [IMPNAME(name)] 127 %endif 128 %else 129 %define IMP(name) IMPNAME(name) 124 %define IMP(name) qword [IMPNAME(name) wrt rip] 125 %else 126 %define IMP(name) dword [IMPNAME(name)] 127 %endif 128 %else 129 %define IMP(name) IMPNAME(name) 130 %endif 131 132 ;; 133 ; Gets the pointer to an imported object, version 2. 134 %ifdef ASM_FORMAT_PE 135 %ifdef RT_ARCH_AMD64 136 %define IMP2(name) qword [IMPNAME(name) wrt rip] 137 %else 138 %define IMP2(name) dword [IMPNAME(name)] 139 %endif 140 %else 141 %ifdef RT_ARCH_AMD64 142 %define IMP2(name) IMPNAME(name) wrt rip 143 %else 144 %define IMP2(name) IMPNAME(name) 145 %endif 130 146 %endif 131 147 -
trunk/include/iprt/path.h
r39641 r40826 558 558 * Callback for RTPathTraverseList that's called for each element. 559 559 * 560 * @returns IPRT style status code. Return V INF_TRY_AGAIN to continue, any other560 * @returns IPRT style status code. Return VERR_TRY_AGAIN to continue, any other 561 561 * value will abort the traversing and be returned to the caller. 562 562 * … … 576 576 * 577 577 * @returns IPRT style status code from the callback or VERR_END_OF_STRING if 578 * the callback returned V INF_TRY_AGAIN for all paths in the string.578 * the callback returned VERR_TRY_AGAIN for all paths in the string. 579 579 * 580 580 * @param pszPathList The string to traverse.
Note:
See TracChangeset
for help on using the changeset viewer.