From e37befbc044012655b0935bf43053ee772bad432 Mon Sep 17 00:00:00 2001 From: Brendan Hansen Date: Sun, 27 Feb 2022 19:54:29 -0600 Subject: [PATCH] one more subtle bugfix --- modules/onyx_runtime/onyx_runtime.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/modules/onyx_runtime/onyx_runtime.c b/modules/onyx_runtime/onyx_runtime.c index 40eba1d3..231093a7 100644 --- a/modules/onyx_runtime/onyx_runtime.c +++ b/modules/onyx_runtime/onyx_runtime.c @@ -176,12 +176,6 @@ ONYX_DEF(__file_get_standard, (WASM_I32, WASM_I32), (WASM_I32)) { // // Directories // -#ifdef _BH_WINDOWS -typedef struct Windows_Directory_Opened { - HANDLE hndl; - WIN32_FIND_DATAA found_file; -} Windows_Directory_Opened; -#endif ONYX_DEF(__dir_open, (WASM_I32, WASM_I32, WASM_I32), (WASM_I32)) { char *path_ptr = ONYX_PTR(params->data[0].of.i32); -- 2.25.1