This commit is contained in:
watrabi
2025-09-18 17:55:52 -04:00
commit 977f1ff4b8
15030 changed files with 17324420 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
// this file meant to include basic OS .h dependencies.
// obviously, it only supports windows at this time.
#pragma once
#ifdef WIN32
#define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers
#ifndef STRICT
#define STRICT 1
#endif
# ifndef WIN32_LEAN_AND_MEAN
# define WIN32_LEAN_AND_MEAN 1
# endif
#ifndef NOMINMAX
# define NOMINMAX 1
#endif
# include <windows.h>
# undef WIN32_LEAN_AND_MEAN
# undef NOMINMAX
# undef _G3D_INTERNAL_HIDE_WINSOCK_
# undef _WINSOCKAPI_
#include <intrin.h>
#endif
#include "RbxBase.h"