bloodrun-editor/makefiles/Props/q3map2_config.h
2026-04-02 20:51:01 +08:00

17 lines
352 B
C
Executable file

/* Force-included config header for q3map2 MSVC build */
/* ASSIMP_INCLUDE macro - resolves to angle-bracket include for system assimp */
#define ASSIMP_INCLUDE(x) <x>
/* POSIX compatibility for Windows */
#ifndef R_OK
#define R_OK 4
#endif
#ifndef W_OK
#define W_OK 2
#endif
#ifndef X_OK
#define X_OK 0
#endif
#include <io.h>
#define access _access