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

Last change on this file since 4 was 4, checked in by ktk, 26 years ago

Import

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