Skip to content

Commit 8f33893

Browse files
fix: add windows.h for OutputDebugStringA
1 parent c579496 commit 8f33893

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

src/core/bindings/console.cc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@
1010
#include <android/log.h>
1111
#endif
1212

13+
#ifdef _WIN32
14+
#define WIN32_LEAN_AND_MEAN
15+
#include <windows.h>
16+
#endif
17+
1318
namespace {
1419
thread_local int current_group_depth = 0;
1520
thread_local std::unordered_map<

0 commit comments

Comments
 (0)