aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/tools/python/bootstrap/vars.h
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/tools/python/bootstrap/vars.h')
-rw-r--r--contrib/tools/python/bootstrap/vars.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/contrib/tools/python/bootstrap/vars.h b/contrib/tools/python/bootstrap/vars.h
new file mode 100644
index 0000000000..71b2d4b92b
--- /dev/null
+++ b/contrib/tools/python/bootstrap/vars.h
@@ -0,0 +1,17 @@
+#pragma once
+
+#define THROWING
+
+#ifdef __cplusplus
+#define THROWING noexcept
+extern "C" {
+#endif
+
+const char* GetLibDir() THROWING;
+const char* GetPyLib() THROWING;
+
+#ifdef __cplusplus
+}
+#endif
+
+