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