Changeset 21426 for trunk/src/kernel32/oslibmisc.cpp
- Timestamp:
- Aug 27, 2010, 12:32:58 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/oslibmisc.cpp
r21308 r21426 24 24 #include "oslibmisc.h" 25 25 #include <misc.h> 26 #include <odincrt.h> 26 27 27 28 #define DBG_LOCALLOG DBG_oslibmisc … … 104 105 else 105 106 { 106 rc = DosQueryModuleHandle (pszModule,/* query module handle */107 &hModule);107 rc = DosQueryModuleHandleStrict(pszModule, /* query module handle */ 108 &hModule); 108 109 109 110 if (rc != NO_ERROR) /* check for errors */ … … 122 123 APIRET rc; 123 124 124 rc = DosQueryModuleHandle (modname,/* query module handle */125 &hModule);125 rc = DosQueryModuleHandleStrict(modname, /* query module handle */ 126 &hModule); 126 127 if(rc) 127 128 return(-1);
Note:
See TracChangeset
for help on using the changeset viewer.