| 123456789101112131415161718192021222324252627282930 |
- #ifndef BLITZ_EX_H
- #define BLITZ_EX_H
- #include "blitz_types.h"
- #ifdef __cplusplus
- extern "C"{
- #endif
- #if __APPLE__
- #if __i386__
- #define BB_ARGP 1
- void* bbArgp( int offset );
- #endif
- #endif
- void* bbExEnter();
- void bbExThrow( BBObject *p );
- void bbExThrowCString( const char *p );
- void bbExLeave();
- void _bbExEnter( void *_cpu_state );
- void* _bbExThrow( void *_cpu_state,void *p );
- #ifdef __cplusplus
- }
- #endif
- #endif
|