main.cpp 307 B

12345678910111213
  1. #include "main.h"
  2. #include "SimulatorWin.h"
  3. #include <shellapi.h>
  4. int APIENTRY _tWinMain(HINSTANCE hInstance,
  5. HINSTANCE hPrevInstance,
  6. LPTSTR lpCmdLine,
  7. int nCmdShow)
  8. {
  9. UNREFERENCED_PARAMETER(hPrevInstance);
  10. UNREFERENCED_PARAMETER(lpCmdLine);
  11. return SimulatorWin::getInstance()->run();
  12. }