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