Mesen-X/PGOHelper/PGOHelper.cpp

15 lines
183 B
C++
Raw Normal View History

#include <tchar.h>
extern "C" {
void __stdcall LoadROM(wchar_t* filename);
void __stdcall Run();
}
int _tmain(int argc, _TCHAR* argv[])
{
LoadROM(argv[1]);
Run();
return 0;
}