- Timestamp:
- Sep 28, 1999, 3:29:51 PM (26 years ago)
- Location:
- trunk/src
- Files:
-
- 4 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 } -
trunk/src/crtdll/crtdll.def
r1012 r1083 1 ; $Id: crtdll.def,v 1. 5 1999-09-23 09:38:04sandervl Exp $1 ; $Id: crtdll.def,v 1.6 1999-09-28 13:26:35 sandervl Exp $ 2 2 3 3 ;Created by BLAST for IBM's compiler … … 161 161 _commode_dll = CRTDLL_commode_dll @59 162 162 _control87 = _CRTDLL__control87 @60 163 ; _controlfp@61163 _controlfp = _CRTDLL__controlfp @61 164 164 ; _copysign @62 165 165 ; _cprintf @63 -
trunk/src/makefile
r957 r1083 1 # $Id: makefile,v 1.2 1 1999-09-15 23:40:37sandervl Exp $1 # $Id: makefile,v 1.22 1999-09-28 13:26:52 sandervl Exp $ 2 2 3 3 # … … 83 83 cd ..\crtdll 84 84 $(MAKE_CMD) 85 cd ..\msvcrt 86 $(MAKE_CMD) 85 87 cd ..\msacm32 86 88 $(MAKE_CMD) … … 153 155 cd ..\crtdll 154 156 $(MAKE_CMD) clean 157 cd ..\msvcrt 158 $(MAKE_CMD) clean 155 159 cd ..\shell32 156 160 $(MAKE_CMD) clean -
trunk/src/user32/win32wbase.cpp
r1074 r1083 1 /* $Id: win32wbase.cpp,v 1.1 7 1999-09-27 19:43:04sandervl Exp $ */1 /* $Id: win32wbase.cpp,v 1.18 1999-09-28 13:27:52 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 898 898 //****************************************************************************** 899 899 //TODO: Is this correct and complete? 900 //Add print screen, break & numlock 900 901 //****************************************************************************** 901 902 void Win32BaseWindow::setExtendedKey(ULONG virtualkey, ULONG *lParam)
Note:
See TracChangeset
for help on using the changeset viewer.