mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-17 03:29:12 +01:00
b00fd93f09
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2736 8ced0084-cf51-0410-be5f-012b33b47a6e
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
|