From 021b9ee28278a4828467becdeaa4fdb5de6f1190 Mon Sep 17 00:00:00 2001 From: Takashi Kitao Date: Sun, 26 Nov 2023 17:34:25 +0900 Subject: [PATCH] Added a block type for Windows --- crates/pyxel-platform/build.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/pyxel-platform/build.rs b/crates/pyxel-platform/build.rs index 60cf88d0aa..e65401c887 100644 --- a/crates/pyxel-platform/build.rs +++ b/crates/pyxel-platform/build.rs @@ -157,6 +157,7 @@ impl SDL2BindingsBuilder { .allowlist_type("SDL_.*") .allowlist_var("SDL_.*") .allowlist_var("AUDIO_.*") + .blocklist_type("_IMAGE_TLS_DIRECTORY64") .use_core() .prepend_enum_name(false) .clang_arg(format!("--target={}", self.target.clone()))