aboutsummaryrefslogtreecommitdiff
path: root/src/lutris/runner.h
diff options
context:
space:
mode:
authorJan200101 <sentrycraft123@gmail.com>2021-07-22 22:36:29 +0200
committerJan200101 <sentrycraft123@gmail.com>2021-07-22 22:36:29 +0200
commitfa579dfd846d50bcd2edd28277036b2fb298c643 (patch)
tree067e2103aa7ec53543849e3a2c78b19200d74e0d /src/lutris/runner.h
parentfe2b369bcbf94eccf7c0a1af9ec8e50d93838e50 (diff)
downloadpolecat-fa579dfd846d50bcd2edd28277036b2fb298c643.tar.gz
polecat-fa579dfd846d50bcd2edd28277036b2fb298c643.zip
fix broken debug define checks, move lutris enums to special headers
Diffstat (limited to 'src/lutris/runner.h')
-rw-r--r--src/lutris/runner.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/lutris/runner.h b/src/lutris/runner.h
new file mode 100644
index 0000000..b5373c2
--- /dev/null
+++ b/src/lutris/runner.h
@@ -0,0 +1,11 @@
+CREATE_ENUM(unknown_runner)
+CREATE_ENUM(wine)
+#ifdef linux
+#define _linux linux
+#undef linux
+#endif
+CREATE_ENUM(linux)
+#ifdef _linux
+#define linux _linux
+#undef _linux
+#endif \ No newline at end of file