mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-17 11:39:13 +01:00
18 lines
304 B
C
18 lines
304 B
C
|
#ifndef _MCM__
|
||
|
#define _MCM__
|
||
|
|
||
|
void __Log(int logNumber, const char* text, ...){logNumber; text;}
|
||
|
void __Logv(int log, int v, const char *format, ...){log; v; format;}
|
||
|
|
||
|
#include "MemcardManager.h"
|
||
|
#include "Timer.h"
|
||
|
|
||
|
class MCMApp
|
||
|
: public wxApp
|
||
|
{
|
||
|
public:
|
||
|
bool OnInit();
|
||
|
|
||
|
};
|
||
|
#endif
|