VirtualBox

Ignore:
Timestamp:
Jun 17, 2013 2:32:51 PM (12 years ago)
Author:
vboxsync
Message:

updates

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/common/ldr/ldr.cpp

    r46164 r46593  
    9494
    9595
     96RTDECL(PFNRT) RTLdrGetFunction(RTLDRMOD hLdrMod, const char *pszSymbol)
     97{
     98    PFNRT pfn;
     99    int rc = RTLdrGetSymbol(hLdrMod, pszSymbol, (void **)&pfn);
     100    if (RT_SUCCESS(rc))
     101        return pfn;
     102    return NULL;
     103}
     104RT_EXPORT_SYMBOL(RTLdrGetFunction);
     105
     106
    96107RTDECL(RTLDRFMT) RTLdrGetFormat(RTLDRMOD hLdrMod)
    97108{
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette