Changeset 21426 for trunk/src/kernel32/oslibdos.cpp
- Timestamp:
- Aug 27, 2010, 12:32:58 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/oslibdos.cpp
r21407 r21426 36 36 #include <win\winioctl.h> 37 37 #include <misc.h> 38 #include <odincrt.h> 38 39 #include "initterm.h" 39 40 #include "oslibdos.h" … … 126 127 HMODULE hDoscalls; 127 128 128 if(DosQueryModuleHandle ("DOSCALLS", &hDoscalls) != NO_ERROR) {129 if(DosQueryModuleHandleStrict("DOSCALLS", &hDoscalls) != NO_ERROR) { 129 130 return; 130 131 } … … 3262 3263 3263 3264 HMODULE hDoscalls; 3264 if(DosQueryModuleHandle ("DOSCALLS", &hDoscalls) == NO_ERROR) {3265 if(DosQueryModuleHandleStrict("DOSCALLS", &hDoscalls) == NO_ERROR) { 3265 3266 DosQueryProcAddr(hDoscalls, 564, NULL, (PFN *)&pfnDosSetThreadAffinity); 3266 3267 } … … 3306 3307 3307 3308 HMODULE hDoscalls; 3308 if(DosQueryModuleHandle ("DOSCALLS", &hDoscalls) == NO_ERROR) {3309 if(DosQueryModuleHandleStrict("DOSCALLS", &hDoscalls) == NO_ERROR) { 3309 3310 DosQueryProcAddr(hDoscalls, 563, NULL, (PFN *)&pfnDosQueryThreadAffinity); 3310 3311 }
Note:
See TracChangeset
for help on using the changeset viewer.