mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-22 22:34:33 +01:00
16 lines
221 B
C
16 lines
221 B
C
#ifndef _OPENRCT2_CRASH_
|
|
#define _OPENRCT2_CRASH_
|
|
|
|
typedef void * CExceptionHandler;
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
CExceptionHandler crash_init();
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _OPENRCT2_CRASH_ */
|