Changeset 21755 for branches/gcc-kmk/src/kernel32/exceptions.cpp
- Timestamp:
- Oct 28, 2011, 2:04:25 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/gcc-kmk/src/kernel32/exceptions.cpp
r21717 r21755 109 109 static PEXCEPTION_HANDLER StartupCodeHandler = NULL; 110 110 111 extern "C" PWINEXCEPTION_FRAME GetExceptionRecord(ULONG offset, ULONG segment); 111 extern "C" { 112 113 PWINEXCEPTION_FRAME GetExceptionRecord(ULONG offset, ULONG segment); 112 114 113 115 LONG WIN32API UnhandledExceptionFilter(PWINEXCEPTION_POINTERS lpexpExceptionInfo); … … 118 120 PCONTEXTRECORD pCtxRec, PVOID p, PSZ szTrapDump); 119 121 120 extern "C"121 122 int __cdecl __seh_handler(PWINEXCEPTION_RECORD pRec, 122 123 PWINEXCEPTION_FRAME pFrame, 123 124 PCONTEXTRECORD pContext, PVOID pVoid); 124 125 125 extern "C"126 126 PWINEXCEPTION_FRAME __cdecl __seh_get_prev_frame(PWINEXCEPTION_FRAME pFrame); 127 127 … … 1791 1791 * Author : Sander van Leeuwen [Sun, 1999/08/21 12:16] 1792 1792 *****************************************************************************/ 1793 void OS2SetExceptionHandler(void *exceptframe)1793 void SYSTEM OS2SetExceptionHandler(void *exceptframe) 1794 1794 { 1795 1795 PEXCEPTIONREGISTRATIONRECORD pExceptRec = (PEXCEPTIONREGISTRATIONRECORD)exceptframe; … … 1954 1954 * Author : Sander van Leeuwen [Sun, 1999/08/21 12:16] 1955 1955 *****************************************************************************/ 1956 void OS2UnsetExceptionHandler(void *exceptframe)1956 void SYSTEM OS2UnsetExceptionHandler(void *exceptframe) 1957 1957 { 1958 1958 PEXCEPTIONREGISTRATIONRECORD pExceptRec = (PEXCEPTIONREGISTRATIONRECORD)exceptframe; … … 1986 1986 //***************************************************************************** 1987 1987 1988 } // extern "C" 1989
Note:
See TracChangeset
for help on using the changeset viewer.