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

Last change on this file since 91 was 46, checked in by sandervl, 26 years ago

* empty log message *

File size: 520 bytes
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
14extern "C" {
15#endif
16
17//SvL: Replace original startup code exception handler
18void ReplaceExceptionHandler(void);
19void DisableFPUExceptions();
20void __cdecl SetExceptionChain(DWORD);
21void ChangeTIBStack();
22ULONG GetDllEntryPoint();
23
24ULONG getEAX();
25ULONG getEBX();
26
27#ifdef __cplusplus
28}
29#endif
30
31#endif
Note: See TracBrowser for help on using the repository browser.