Mesen/GUI/main.cpp
2014-06-12 21:48:04 -04:00

14 lines
615 B
C++

#include "stdafx.h"
#include "MainWindow.h"
//--------------------------------------------------------------------------------------
// Entry point to the program. Initializes everything and goes into a message processing
// loop. Idle time is used to render the scene.
//--------------------------------------------------------------------------------------
int WINAPI wWinMain(_In_ HINSTANCE hInstance, _In_opt_ HINSTANCE hPrevInstance, _In_ LPWSTR lpCmdLine, _In_ int nCmdShow)
{
UNREFERENCED_PARAMETER(hPrevInstance);
UNREFERENCED_PARAMETER(lpCmdLine);
return NES::MainWindow(hInstance, nCmdShow).Run();
}