Ignore:
Timestamp:
Jan 15, 2003, 11:41:13 AM (23 years ago)
Author:
sandervl
Message:

PF: Updates for GCC builds

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/win/wine/exception.h

    r8208 r9673  
    1 /* $Id: exception.h,v 1.2 2002-04-07 17:33:06 sandervl Exp $ */
     1/* $Id: exception.h,v 1.3 2003-01-15 10:41:13 sandervl Exp $ */
    22/*
    33 * Wine exception handling
     
    7777             __f.frame.Handler = (PEXCEPTION_HANDLER)WINE_exception_handler; \
    7878             __f.u.filter = (func); \
    79              EXC_push_frame( &__f.frame ); \
     79             __wine_push_frame( &__f.frame ); \
    8080             if (setjmp( __f.jmp)) { \
    8181                 const __WINE_FRAME * const __eptr WINE_UNUSED = &__f; \
     
    9898             __f.frame.Handler = (PEXCEPTION_HANDLER)WINE_finally_handler; \
    9999             __f.u.finally_func = (func); \
    100              EXC_push_frame( &__f.frame ); \
     100             __wine_push_frame( &__f.frame ); \
    101101             __first = 0; \
    102102         } \
     
    137137#endif /* USE_COMPILER_EXCEPTIONS */
    138138
    139 static inline EXCEPTION_FRAME * WINE_UNUSED EXC_push_frame( EXCEPTION_FRAME *frame )
     139static inline EXCEPTION_FRAME * WINE_UNUSED __wine_push_frame( EXCEPTION_FRAME *frame )
    140140{
    141141#if defined(__GNUC__) && defined(__i386__)
     
    154154}
    155155
    156 static inline EXCEPTION_FRAME * WINE_UNUSED EXC_pop_frame( EXCEPTION_FRAME *frame )
     156static inline EXCEPTION_FRAME * WINE_UNUSED __wine_pop_frame( EXCEPTION_FRAME *frame )
    157157{
    158158#if defined(__GNUC__) && defined(__i386__)
Note: See TracChangeset for help on using the changeset viewer.