2020-10-05 23:30:33 +08:00
|
|
|
/*
|
2024-01-02 05:15:26 +08:00
|
|
|
Copyright (C) 1997-2024 Sam Lantinga <slouken@libsdl.org>
|
2020-10-05 23:30:33 +08: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-27 12:43:38 +08:00
|
|
|
#include <SDL3/SDL.h>
|
2022-12-15 12:58:20 +08:00
|
|
|
#include <SDL3/SDL_main.h>
|
2020-10-05 23:30:33 +08:00
|
|
|
|
2022-07-02 02:59:06 +08:00
|
|
|
static void tryOpenURL(const char *url)
|
|
|
|
{
|
|
|
|
SDL_Log("Opening '%s' ...", url);
|
2024-08-23 08:33:49 +08:00
|
|
|
if (SDL_OpenURL(url)) {
|
2022-07-02 02:59:06 +08:00
|
|
|
SDL_Log(" success!");
|
|
|
|
} else {
|
|
|
|
SDL_Log(" failed! %s", SDL_GetError());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-05 23:30:33 +08:00
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
int i;
|
2024-08-23 08:33:49 +08:00
|
|
|
if (!SDL_Init(SDL_INIT_VIDEO)) {
|
2020-10-06 03:27:32 +08:00
|
|
|
SDL_Log("SDL_Init failed: %s\n", SDL_GetError());
|
2020-10-05 23:30:33 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2022-07-02 02:59:06 +08:00
|
|
|
if (argc > 1) {
|
|
|
|
for (i = 1; i < argc; i++) {
|
|
|
|
tryOpenURL(argv[i]);
|
2020-10-05 23:30:33 +08:00
|
|
|
}
|
2022-07-02 02:59:06 +08:00
|
|
|
} else {
|
|
|
|
tryOpenURL("https://libsdl.org/");
|
2020-10-05 23:30:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
SDL_Quit();
|
|
|
|
return 0;
|
|
|
|
}
|