Changeset 2883 for trunk/kLdr/kLdrDyldFind.c
- Timestamp:
- Nov 18, 2006, 12:21:33 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kLdr/kLdrDyldFind.c
r2875 r2883 37 37 # define LIBPATHSTRICT 3 38 38 # 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); 40 40 # define QHINF_EXEINFO 1 /* NE exeinfo. */ 41 41 # define QHINF_READRSRCTBL 2 /* Reads from the resource table. */ … … 240 240 if (rc) 241 241 return rc; 242 rc = DosQueryExtLIBPATH( kLdrDyldOS2LibpathStrict, LIBPATHSTRICT);242 rc = DosQueryExtLIBPATH((PSZ)kLdrDyldOS2LibpathStrict, LIBPATHSTRICT); 243 243 if (rc) 244 244 kLdrDyldOS2LibpathStrict[0] = '\0'; 245 rc = DosQueryExtLIBPATH( kLdrDyldOS2BeginLibpath, BEGIN_LIBPATH);245 rc = DosQueryExtLIBPATH((PSZ)kLdrDyldOS2BeginLibpath, BEGIN_LIBPATH); 246 246 if (rc) 247 247 kLdrDyldOS2BeginLibpath[0] = '\0'; 248 rc = DosQueryExtLIBPATH( kLdrDyldOS2EndLibpath, END_LIBPATH);248 rc = DosQueryExtLIBPATH((PSZ)kLdrDyldOS2EndLibpath, END_LIBPATH); 249 249 if (rc) 250 250 kLdrDyldOS2EndLibpath[0] = '\0';
Note:
See TracChangeset
for help on using the changeset viewer.