Changeset 2893 for trunk/kLdr/kLdrDyld.c


Ignore:
Timestamp:
Dec 22, 2006, 7:01:38 PM (19 years ago)
Author:
bird
Message:

made it compile again.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/kLdr/kLdrDyld.c

    r2887 r2893  
    525525 * @returns 0 on success and pValue and pfKind set.
    526526 * @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 */
     534int     kLdrDyldQuerySymbol(HKLDRMOD hMod, uint32_t uSymbolOrdinal, const char *pszSymbolName,
     535                            const char *pszSymbolVersion, uintptr_t *pValue, uint32_t *pfKind)
    534536{
    535537    int rc;
Note: See TracChangeset for help on using the changeset viewer.