mirror of
https://github.com/libretro/beetle-psx-libretro.git
synced 2024-11-23 00:39:40 +00:00
21 lines
280 B
C++
21 lines
280 B
C++
#ifndef __MDFN_ERROR_H
|
|
#define __MDFN_ERROR_H
|
|
|
|
#include <string.h>
|
|
|
|
#ifdef __cplusplus
|
|
|
|
class MDFN_Error
|
|
{
|
|
public:
|
|
MDFN_Error();
|
|
MDFN_Error(int errno_code_new, const char *format, ...);
|
|
~MDFN_Error();
|
|
private:
|
|
char *error_message;
|
|
};
|
|
|
|
#endif
|
|
|
|
#endif
|