blob: cfadf9ffe0b46b35c18beb863fd1a087bb8f8035 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
// license:BSD-3-Clause
// copyright-holders:Aaron Giles
//============================================================
//
// main.cpp - Win32 main program
//
//============================================================
// standard windows headers
#ifdef OSD_SDL
#define _WIN32_WINNT 0x0501
#endif
#include <windows.h>
#include <tchar.h>
#include <cstdlib>
#include <vector>
#include <string>
#include "strconv.h"
#if !WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)
#include "winmain.h"
// The main function is only used to initialize our IFrameworkView class.
[Platform::MTAThread]
int main(Platform::Array<Platform::String^>^)
{
auto app_source = ref new MameViewSource();
Windows::ApplicationModel::Core::CoreApplication::Run(app_source);
return 0;
}
#endif
|