SBSPSS/source/system/except.h

61 lines
1.3 KiB
C
Raw Normal View History

2000-10-26 01:31:12 +02:00
/*=========================================================================
except.h
Author: PKG
Created:
Project: Spongebob
Purpose:
Copyright (c) 2000 Climax Development Ltd
===========================================================================*/
2000-10-20 23:52:46 +02:00
#ifndef __SYSTEM_EXCEPT_H__
#define __SYSTEM_EXCEPT_H__
2000-10-26 01:31:12 +02:00
/*----------------------------------------------------------------------
Includes
-------- */
/* Std Lib
------- */
/*----------------------------------------------------------------------
Tyepdefs && Defines
------------------- */
#ifdef __USER_CDBUILD__
#define __INSTALL_EXCEPTION_HANDLER__
#endif
2000-10-20 23:52:46 +02:00
2000-10-26 01:31:12 +02:00
/*----------------------------------------------------------------------
Structure defintions
-------------------- */
/*----------------------------------------------------------------------
Globals
------- */
extern int *reg_lst;
extern int dev_kit;
/*----------------------------------------------------------------------
Functions
--------- */
extern void installExceptionHandler();
2000-10-20 23:52:46 +02:00
extern "C" void exc_c(void);
extern "C" void install_exc(void);
extern "C" void uninstall_exc(void);
2000-10-26 01:31:12 +02:00
/*---------------------------------------------------------------------- */
2000-10-20 23:52:46 +02:00
2000-10-26 01:31:12 +02:00
#endif /* __SYSTEM_EXCEPT_H__ */
2000-10-20 23:52:46 +02:00
2000-10-26 01:31:12 +02:00
/*===========================================================================
end */