mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-11-17 18:52:06 +00:00
19 lines
362 B
C++
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
|