// Copyright Epic Games, Inc. All Rights Reserved. #pragma once #include namespace zen { // Opens the given URL in the user's default web browser. // Throws zen::runtime_error on failure. On POSIX platforms the URL is // screened for shell metacharacters to prevent command injection. void LaunchBrowser(std::string_view Url); } // namespace zen