Changeset 2893 for trunk/kLdr/kLdrDyld.c
- Timestamp:
- Dec 22, 2006, 7:01:38 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kLdr/kLdrDyld.c
r2887 r2893 525 525 * @returns 0 on success and pValue and pfKind set. 526 526 * @returns KLDR_ERR_INVALID_HANDLE or KLDR_ERR_SYMBOL_NOT_FOUND on failure. 527 * @param hMod The module handle. 528 * @param uSymbolOrdinal The symbol ordinal. This is ignored if pszSymbolName is non-zero. 529 * @param pszSymbolName The symbol name. 530 * @param pValue Where to put the symbol value. Optional if pfKind is non-zero. 531 * @param pfKind Where to put the symbol kind flags. Optional if pValue is non-zero. 532 */ 533 int kLdrDyldQuerySymbol(HKLDRMOD hMod, uint32_t uSymbolOrdinal, const char *pszSymbolName, uintptr_t *pValue, uint32_t *pfKind) 527 * @param hMod The module handle. 528 * @param uSymbolOrdinal The symbol ordinal. This is ignored if pszSymbolName is non-zero. 529 * @param pszSymbolName The symbol name. 530 * @param pszSymbolVersion The symbol version. Optional. 531 * @param pValue Where to put the symbol value. Optional if pfKind is non-zero. 532 * @param pfKind Where to put the symbol kind flags. Optional if pValue is non-zero. 533 */ 534 int kLdrDyldQuerySymbol(HKLDRMOD hMod, uint32_t uSymbolOrdinal, const char *pszSymbolName, 535 const char *pszSymbolVersion, uintptr_t *pValue, uint32_t *pfKind) 534 536 { 535 537 int rc;
Note:
See TracChangeset
for help on using the changeset viewer.