Ignore:
Timestamp:
Nov 18, 2006, 12:21:33 PM (19 years ago)
Author:
bird
Message:

cleanup.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/kLdr/kLdrDyldFind.c

    r2875 r2883  
    3737#  define LIBPATHSTRICT 3
    3838# endif
    39   extern APIRET DosQueryHeaderInfo(HMODULE hmod, ULONG ulIndex, PVOID pvBuffer, ULONG cbBuffer, ULONG ulSubFunction);
     39  extern APIRET APIENTRY DosQueryHeaderInfo(HMODULE hmod, ULONG ulIndex, PVOID pvBuffer, ULONG cbBuffer, ULONG ulSubFunction);
    4040# define QHINF_EXEINFO       1 /* NE exeinfo. */
    4141# define QHINF_READRSRCTBL   2 /* Reads from the resource table. */
     
    240240    if (rc)
    241241        return rc;
    242     rc = DosQueryExtLIBPATH(kLdrDyldOS2LibpathStrict, LIBPATHSTRICT);
     242    rc = DosQueryExtLIBPATH((PSZ)kLdrDyldOS2LibpathStrict, LIBPATHSTRICT);
    243243    if (rc)
    244244        kLdrDyldOS2LibpathStrict[0] = '\0';
    245     rc = DosQueryExtLIBPATH(kLdrDyldOS2BeginLibpath, BEGIN_LIBPATH);
     245    rc = DosQueryExtLIBPATH((PSZ)kLdrDyldOS2BeginLibpath, BEGIN_LIBPATH);
    246246    if (rc)
    247247        kLdrDyldOS2BeginLibpath[0] = '\0';
    248     rc = DosQueryExtLIBPATH(kLdrDyldOS2EndLibpath, END_LIBPATH);
     248    rc = DosQueryExtLIBPATH((PSZ)kLdrDyldOS2EndLibpath, END_LIBPATH);
    249249    if (rc)
    250250        kLdrDyldOS2EndLibpath[0] = '\0';
Note: See TracChangeset for help on using the changeset viewer.