Ignore:
Timestamp:
Sep 28, 1999, 3:29:51 PM (26 years ago)
Author:
sandervl
Message:

* empty log message *

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:03 sandervl Exp $ */
     1/* $Id: crtdll.cpp,v 1.6 1999-09-28 13:26:34 sandervl Exp $ */
    22
    33/*
     
    395395
    396396/*********************************************************************
     397 *                  CRTDLL__controlfp    (CRTDLL.61)
     398 *      FIXME - Could not find anything about it
     399 */
     400INT 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/*********************************************************************
    397409 *           CRTDLL__cwait   (CRTDLL.69)
    398410 */
     
    455467
    456468/*********************************************************************
    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 */
     471INT CDECL CRTDLL__except_handler2 ( PEXCEPTION_RECORD rec,
     472        PEXCEPTION_FRAME frame, PCONTEXT context,
     473        PEXCEPTION_FRAME  *dispatcher)
    461474{
    462475        dprintf(("CRTDLL: _except_handler2\n"));
    463         return 0;
     476        return 1;
    464477}
    465478
     
    26962709
    26972710    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
    26992714    return ret / size;
    27002715}
Note: See TracChangeset for help on using the changeset viewer.