Changeset 1083 for trunk/src/crtdll/crtdll.cpp
- Timestamp:
- Sep 28, 1999, 3:29:51 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/crtdll/crtdll.cpp
r1012 r1083 1 /* $Id: crtdll.cpp,v 1. 5 1999-09-23 09:38:03sandervl Exp $ */1 /* $Id: crtdll.cpp,v 1.6 1999-09-28 13:26:34 sandervl Exp $ */ 2 2 3 3 /* … … 395 395 396 396 /********************************************************************* 397 * CRTDLL__controlfp (CRTDLL.61) 398 * FIXME - Could not find anything about it 399 */ 400 INT CDECL CRTDLL__controlfp(DWORD ret) 401 { 402 dprintf(("CRTDLL: _controlfp not implemented.\n")); 403 SetLastError(ERROR_CALL_NOT_IMPLEMENTED); 404 return FALSE; 405 } 406 407 408 /********************************************************************* 397 409 * CRTDLL__cwait (CRTDLL.69) 398 410 */ … … 455 467 456 468 /********************************************************************* 457 * _except_handler2 (CRTDLL.78) 458 * FIXME - Could not find anything about it 459 */ 460 INT CDECL CRTDLL__except_handler2(DWORD ret) 469 * _except_handler2 (CRTDLL.78) 470 */ 471 INT CDECL CRTDLL__except_handler2 ( PEXCEPTION_RECORD rec, 472 PEXCEPTION_FRAME frame, PCONTEXT context, 473 PEXCEPTION_FRAME *dispatcher) 461 474 { 462 475 dprintf(("CRTDLL: _except_handler2\n")); 463 return 0;476 return 1; 464 477 } 465 478 … … 2696 2709 2697 2710 dprintf(("CRTDLL: fwrite\n")); 2698 WriteFile( file->handle, ptr, size * nmemb, &ret, NULL ); 2711 if (!WriteFile( file->handle, ptr, size * nmemb, &ret, NULL )) 2712 dprintf((" failed!\n")); 2713 2699 2714 return ret / size; 2700 2715 }
Note:
See TracChangeset
for help on using the changeset viewer.