summaryrefslogtreecommitdiff
path: root/prelude
diff options
context:
space:
mode:
Diffstat (limited to 'prelude')
-rw-r--r--prelude/slang-cpp-host-prelude.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/prelude/slang-cpp-host-prelude.h b/prelude/slang-cpp-host-prelude.h
new file mode 100644
index 000000000..90087d158
--- /dev/null
+++ b/prelude/slang-cpp-host-prelude.h
@@ -0,0 +1,16 @@
+#ifndef SLANG_CPP_HOST_PRELUDE_H
+#define SLANG_CPP_HOST_PRELUDE_H
+
+#include <cstdio>
+#include <cmath>
+#include <cstring>
+
+#include "../source/core/slang-string.h"
+#include "../source/core/slang-smart-pointer.h"
+#include "../slang-com-ptr.h"
+#include "../slang-gfx.h"
+
+using namespace Slang;
+using namespace gfx;
+
+#endif