2020-10-05 09:30:33 -06:00
|
|
|
/*
|
2022-01-03 10:40:00 -07:00
|
|
|
Copyright (C) 1997-2022 Sam Lantinga <slouken@libsdl.org>
|
2020-10-05 09:30:33 -06:00
|
|
|
|
|
|
|
This software is provided 'as-is', without any express or implied
|
|
|
|
warranty. In no event will the authors be held liable for any damages
|
|
|
|
arising from the use of this software.
|
|
|
|
|
|
|
|
Permission is granted to anyone to use this software for any purpose,
|
|
|
|
including commercial applications, and to alter it and redistribute it
|
|
|
|
freely.
|
|
|
|
*/
|
2022-11-26 21:43:38 -07:00
|
|
|
#include <SDL3/SDL.h>
|
2022-12-14 21:58:20 -07:00
|
|
|
#include <SDL3/SDL_main.h>
|
2020-10-05 09:30:33 -06:00
|
|
|
|
2022-07-01 12:59:06 -06:00
|
|
|
static void tryOpenURL(const char *url)
|
|
|
|
{
|
|
|
|
SDL_Log("Opening '%s' ...", url);
|
|
|
|
if (SDL_OpenURL(url) == 0) {
|
|
|
|
SDL_Log(" success!");
|
|
|
|
} else {
|
|
|
|
SDL_Log(" failed! %s", SDL_GetError());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-05 09:30:33 -06:00
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
if (SDL_Init(SDL_INIT_VIDEO) == -1) {
|
2020-10-05 13:27:32 -06:00
|
|
|
SDL_Log("SDL_Init failed: %s\n", SDL_GetError());
|
2020-10-05 09:30:33 -06:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2022-07-01 12:59:06 -06:00
|
|
|
if (argc > 1) {
|
|
|
|
for (i = 1; i < argc; i++) {
|
|
|
|
tryOpenURL(argv[i]);
|
2020-10-05 09:30:33 -06:00
|
|
|
}
|
2022-07-01 12:59:06 -06:00
|
|
|
} else {
|
|
|
|
tryOpenURL("https://libsdl.org/");
|
2020-10-05 09:30:33 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
SDL_Quit();
|
|
|
|
return 0;
|
|
|
|
}
|