This commit is contained in:
Paul 2000-10-25 23:31:12 +00:00
parent 3e20e9cf7e
commit 329465176d
2 changed files with 439 additions and 309 deletions

View file

@ -1,16 +1,60 @@
/*=========================================================================
except.h
Author: PKG
Created:
Project: Spongebob
Purpose:
Copyright (c) 2000 Climax Development Ltd
===========================================================================*/
#ifndef __SYSTEM_EXCEPT_H__
#define __SYSTEM_EXCEPT_H__
extern void installExceptionHandler();
/*----------------------------------------------------------------------
Includes
-------- */
/* Std Lib
------- */
/*----------------------------------------------------------------------
Tyepdefs && Defines
------------------- */
#ifdef __USER_CDBUILD__
#define __INSTALL_EXCEPTION_HANDLER__
#endif
/*----------------------------------------------------------------------
Structure defintions
-------------------- */
/*----------------------------------------------------------------------
Globals
------- */
extern int *reg_lst;
extern int dev_kit;
/*----------------------------------------------------------------------
Functions
--------- */
extern void installExceptionHandler();
extern "C" void exc_c(void);
extern "C" void install_exc(void);
extern "C" void uninstall_exc(void);
extern int *reg_lst;
extern int dev_kit;
#endif
/*---------------------------------------------------------------------- */
#endif /* __SYSTEM_EXCEPT_H__ */
/*===========================================================================
end */