source: trunk/src/kernel32/except.h@ 118

Last change on this file since 118 was 99, checked in by phaller, 26 years ago

Add: added cvs variable $Id$ to source files.

File size: 569 bytes
Line 
1/* $Id: except.h,v 1.3 1999-06-10 19:11:30 phaller Exp $ */
2
3/*
4 * Exception + misc functions for OS/2
5 * Copyright 1998 Sander van Leeuwen
6 * Project Odin Software License can be found in LICENSE.TXT
7 */
8#ifndef __EXCEPT_H__
9#define __EXCEPT_H__
10
11#ifdef __cplusplus
12extern "C" {
13#endif
14
15//SvL: Replace original startup code exception handler
16void ReplaceExceptionHandler(void);
17void DisableFPUExceptions();
18void __cdecl SetExceptionChain(DWORD);
19void ChangeTIBStack();
20ULONG GetDllEntryPoint();
21
22ULONG getEAX();
23ULONG getEBX();
24
25#ifdef __cplusplus
26}
27#endif
28
29#endif
Note: See TracBrowser for help on using the repository browser.