Ignore:
Timestamp:
Aug 23, 1999, 12:11:23 AM (26 years ago)
Author:
sandervl
Message:

Bugfixes + def files changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/exceptions.cpp

    r617 r634  
    1 /* $Id: exceptions.cpp,v 1.10 1999-08-22 11:11:10 sandervl Exp $ */
     1/* $Id: exceptions.cpp,v 1.11 1999-08-22 22:11:21 sandervl Exp $ */
    22
    33/*
     
    935935 PEXCEPTIONREGISTRATIONRECORD pExceptRec = (PEXCEPTIONREGISTRATIONRECORD)exceptframe;
    936936
    937   pExceptRec->prev_structure   = 0;
     937  pExceptRec->prev_structure   = (PEXCEPTIONREGISTRATIONRECORD)-1;
    938938  pExceptRec->ExceptionHandler = OS2ExceptionHandler;
    939939
     
    960960}
    961961
     962void SetOS2ExceptionChain(ULONG val)
     963{
     964 USHORT sel = GetFS();
     965
     966    SetExceptionChain(val);   
     967    SetFS(sel);
     968}
     969
    962970/*****************************************************************************
    963971 * Name      : void ReplaceExceptionHandler
Note: See TracChangeset for help on using the changeset viewer.