mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-10-22 14:25:51 +00:00
23 lines
315 B
C
23 lines
315 B
C
#pragma once
|
|
|
|
#define NOMINMAX
|
|
|
|
#ifdef _MSC_VER
|
|
#pragma warning(push, 0)
|
|
#else
|
|
#pragma GCC diagnostic push
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
|
#endif
|
|
|
|
#include <webview/webview.h>
|
|
|
|
#ifdef _MSC_VER
|
|
#pragma warning(pop)
|
|
#else
|
|
#pragma GCC diagnostic pop
|
|
#endif
|
|
|
|
#ifdef ERROR
|
|
#undef ERROR
|
|
#endif
|