Changeset 446 for trunk/dll/common.c
- Timestamp:
- Aug 24, 2006, 6:51:41 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/common.c
r377 r446 11 11 13 Aug 05 SHL Renames 12 12 22 Jul 06 SHL Check more run time errors 13 15 Aug 06 SHL Use Dos_Error 13 14 14 15 ***********************************************************************/ … … 317 318 break; 318 319 319 /* 320 #if 0 // fixme to be gone? 321 320 322 case IDM_CLOSETRAY: 321 323 if(driveflags[*dv - 'A'] & DRIVE_CDROM) { … … 338 340 OPEN_SHARE_DENYNONE, 339 341 NULL); 340 if(!rc) { 342 if (rc) 343 Dos_Error(MB_CANCEL,rc,hwnd,pszSrcFile,__LINE__,"DosOpen"); 344 else { 341 345 dlen = 0; 342 346 plen = sizeof(parm); … … 351 355 &dlen); 352 356 DosClose(hfile); 353 if (rc)354 saymsg(MB_ENTER,HWND_DESKTOP,DEBUG_STRING,"rc2 = %lu",rc);357 if (rc) 358 Dos_Error(MB_CANCEL,rc,hwnd,pszSrcFile,__LINE__,"DosDevIOCtl"); 355 359 } 356 else 357 saymsg(MB_ENTER,HWND_DESKTOP,DEBUG_STRING,"rc = %lu",rc); 358 } 359 break; 360 */ 360 } 361 break; 362 #endif // fixme to be gone? 363 361 364 362 365 case IDM_LOCK:
Note:
See TracChangeset
for help on using the changeset viewer.