mirror of
https://github.com/yawut/SDL.git
synced 2026-08-12 20:15:38 -05:00
WinRT: merged with SDL 2.0.0 codebase (aka. SDL hg rev d4ce48ff30d1)
This commit is contained in:
14
src/main/windowsrt/SDL_winrt_main.cpp
Normal file
14
src/main/windowsrt/SDL_winrt_main.cpp
Normal file
@@ -0,0 +1,14 @@
|
||||
|
||||
//#include "pch.h"
|
||||
|
||||
// The app's C-style main will be passed into SDL.dll as a function
|
||||
// pointer, and called at the appropriate time.
|
||||
typedef int (*SDLmain_MainFunction)(int, char **);
|
||||
extern __declspec(dllimport) int SDL_WinRT_RunApplication(SDLmain_MainFunction mainFunction);
|
||||
extern "C" int SDL_main(int, char **);
|
||||
|
||||
[Platform::MTAThread]
|
||||
int main(Platform::Array<Platform::String^>^)
|
||||
{
|
||||
return SDL_WinRT_RunApplication(SDL_main);
|
||||
}
|
||||
Reference in New Issue
Block a user