url: Another attempt at WinRT implementation.

This commit is contained in:
Ryan C. Gordon 2020-10-05 18:01:47 -04:00
parent 1f4b5d54ca
commit 02addf135d

View File

@ -21,22 +21,21 @@
#include <Windows.h> #include <Windows.h>
#include "../../core/windows/SDL_windows.h"
#include "../SDL_sysurl.h" #include "../SDL_sysurl.h"
int int
SDL_SYS_OpenURL(const char *url) SDL_SYS_OpenURL(const char *url)
{ {
auto uri = ref new Windows::Foundation::Uri(url); WCHAR *wurl = WIN_UTF8ToString(url);
concurrency::task<bool> launchUriOperation(Windows::System::Launcher::LaunchUriAsync(uri)); if (wurl == NULL) {
int retval = -1; return SDL_OutOfMemory();
launchUriOperation.then([](bool success) { }
if (success) {
retval = 0; auto uri = ref new Windows::Foundation::Uri(wurl);
} else { SDL_free(wurl);
retval = SDL_SetError("URL failed to launch"); launchUriOperation(Windows::System::Launcher::LaunchUriAsync(uri));
} return 0;
});
return retval;
} }
/* vi: set ts=4 sw=4 expandtab: */ /* vi: set ts=4 sw=4 expandtab: */