about summary refs log tree commit diff
path: root/pkgs/games/build-support/build-sandbox/src/params.h
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2017-10-03 15:53:45 +0200
committeraszlig <aszlig@redmoonstudios.org>2017-10-03 23:41:34 +0200
commit2c68ece11b950dc9f078ff843a0ba137c76f7076 (patch)
tree4d50843b6cf433ddecc3b6635db2ab895a3db36d /pkgs/games/build-support/build-sandbox/src/params.h
parentcf6a986d822fc99e4fde3b82dd8f03aca58482bc (diff)
pkgs/sandbox: Factor out setup routine
This leaves sandbox.c with only the main() function and nothing else, so
that whenever we have a lot of binaries to generate, the compilation
time should be much lower now.

The change doesn't change anything in functionality.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'pkgs/games/build-support/build-sandbox/src/params.h')
-rw-r--r--pkgs/games/build-support/build-sandbox/src/params.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/pkgs/games/build-support/build-sandbox/src/params.h b/pkgs/games/build-support/build-sandbox/src/params.h
new file mode 100644
index 00000000..ea33872d
--- /dev/null
+++ b/pkgs/games/build-support/build-sandbox/src/params.h
@@ -0,0 +1,8 @@
+#ifndef _PARAMS_H
+#define _PARAMS_H
+
+#include <stdbool.h>
+
+bool setup_app_paths(void);
+
+#endif