From fff83d8e52decbe504f500f30d2de4ceff89aeb3 Mon Sep 17 00:00:00 2001 From: David Ludwig Date: Mon, 16 Sep 2013 21:09:58 -0400 Subject: [PATCH] WinRT: reduced the size of SDL_winrt_main.cpp by a little bit --- src/main/winrt/SDL_winrt_main.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/main/winrt/SDL_winrt_main.cpp b/src/main/winrt/SDL_winrt_main.cpp index b06def8a7..81ccfb310 100644 --- a/src/main/winrt/SDL_winrt_main.cpp +++ b/src/main/winrt/SDL_winrt_main.cpp @@ -4,8 +4,7 @@ /* 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 __declspec(dllimport) int SDL_WinRT_RunApplication(int (*)(int, char **)); extern "C" int SDL_main(int, char **); /* Prevent MSVC++ from warning about threading models when defining our