BlitzMax Extended  0.8.11
Pushing Blitz to the Max.
_common.h
00001 #ifndef BLITZ_EXCEPTIONS_COMMON_H
00002 #define BLITZ_EXCEPTIONS_COMMON_H
00003 
00004 #include "../_common.h"
00005 
00006 #include "../blitz_class.h"
00007 #include "../blitz_debug.h"
00008 #include "../blitz_ex.h"
00009 #include "../blitz_object.h"
00010 #include "../blitz_string.h"
00011 
00012 BB_BEGIN_DECLS
00013 
00014 typedef struct BBException              BBException;
00015 
00016 typedef struct BBBlitzException         BBBlitzException;
00017 typedef struct BBArrayBoundsException   BBArrayBoundsException;
00018 typedef struct BBNullFunctionException  BBNullFunctionException;
00019 typedef struct BBNullMethodException    BBNullMethodException;
00020 typedef struct BBNullObjectException    BBNullObjectException;
00021 typedef struct BBOutOfDataException     BBOutOfDataException;
00022 
00023 typedef struct BBRuntimeException       BBRuntimeException;
00024 
00025 BB_END_DECLS
00026 
00027 #endif  // BLITZ_EXCEPTIONS_COMMON_H