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

Last change on this file since 150 was 130, checked in by sandervl, 26 years ago

Activated Win32 TIB code and fixes some other things (see ChangeLog)

File size: 618 bytes
Line 
1/* $Id: except.h,v 1.6 1999-06-20 12:46:08 sandervl 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
16#ifndef WIN32_TIBSEL
17void ReplaceExceptionHandler(void);
18void ChangeTIBStack();
19#endif
20void __cdecl SetExceptionChain(DWORD);
21
22void DisableFPUExceptions();
23ULONG GetDllEntryPoint();
24
25ULONG getEAX();
26ULONG getEBX();
27USHORT getSS();
28
29#ifdef __cplusplus
30}
31#endif
32
33#endif
Note: See TracBrowser for help on using the repository browser.