beetle-psx-libretro/mednafen/error.h
2021-04-05 18:07:13 +02:00

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