From 7fc96a70ceee5b9f12c0510d35694f834537f0a4 Mon Sep 17 00:00:00 2001 From: Harvey Fong Date: Thu, 10 Apr 2025 19:53:04 -0600 Subject: [PATCH] added windows includes --- vmax2bella.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/vmax2bella.cpp b/vmax2bella.cpp index 4193744..8ca6feb 100644 --- a/vmax2bella.cpp +++ b/vmax2bella.cpp @@ -176,6 +176,15 @@ The 't' field in the snapshot's 's.id' dictionary indicates the type of snapshot #include "../bella_scene_sdk/src/bella_sdk/bella_scene.h" // For creating and manipulating 3D scenes in Bella #include "../bella_scene_sdk/src/dl_core/dl_main.inl" // Core functionality from the Diffuse Logic engine +#ifdef _WIN32 +#include // For ShellExecuteW +#include // For ShellExecuteW +#include // For wstring_convert +#elif defined(__APPLE__) || defined(__linux__) +#include // For fork, exec +#include // For waitpid +#endif + #include "oomer_voxel_vmax.h" // common vmax voxel code and structures #include "oomer_misc.h" // common misc code #include "oomer_voxel_ogt.h" // common opengametools voxel conversion wrappers