2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-11-17 18:52:06 +00:00
Files
OpenAssetTools/src/ModMan/Web/Platform/Linux/AssetHandlerLinux.h
2025-10-10 09:49:36 +02:00

19 lines
362 B
C++

#pragma once
#include "Web/Platform/Platform.h"
#include <webview/macros.h>
#if defined(WEBVIEW_PLATFORM_LINUX) && defined(WEBVIEW_GTK)
#include "Web/WebViewLib.h"
namespace PLATFORM_NAMESPACE_LINUX
{
constexpr auto URL_PREFIX = "modman://localhost/";
void InstallAssetHandler(webview::webview& wv);
} // namespace PLATFORM_NAMESPACE_LINUX
#endif