Files
sphaira/sphaira/include/web.hpp
ITotalJustice 0370e47f7f public release
2024-12-16 21:13:05 +00:00

14 lines
309 B
C++

#pragma once
#include <switch.h>
#include <string>
namespace sphaira {
// if show_error = true, it will display popup error box on
// faliure. set this to false if you want to handle errors
// from the caller.
auto WebShow(const std::string& url, bool show_error = true) -> Result;
} // namespace sphaira