Changeset 2898 for trunk/kLdr/kLdrModNative.c
- Timestamp:
- Dec 24, 2006, 4:10:53 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kLdr/kLdrModNative.c
r2893 r2898 644 644 for (iName = 0; iName < cNames; iName++) 645 645 { 646 const char *pszName; 646 647 if (paOrdinals[iName] != iFunction) 647 648 continue; 648 649 fFoundName = 1; 649 rc = pfnCallback(pMod, iFunction + pExpDir->Base, 650 KLDRMODNATIVE_RVA2TYPE(pModNative->hmod, paRVANames[iName], const char *), 650 651 pszName = KLDRMODNATIVE_RVA2TYPE(pModNative->hmod, paRVANames[iName], const char *); 652 rc = pfnCallback(pMod, iFunction + pExpDir->Base, pszName, strlen(pszName), NULL, 651 653 uValue, fKind, pvUser); 652 654 if (rc) … … 659 661 if (!fFoundName) 660 662 { 661 rc = pfnCallback(pMod, iFunction + pExpDir->Base, NULL, uValue, fKind, pvUser);663 rc = pfnCallback(pMod, iFunction + pExpDir->Base, NULL, 0, NULL, uValue, fKind, pvUser); 662 664 if (rc) 663 665 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.