about summary refs log tree commit diff
path: root/pkgs/build-support/build-sandbox/src/path-cache.h
diff options
context:
space:
mode:
authoraszlig <aszlig@nix.build>2017-11-30 06:42:49 +0100
committeraszlig <aszlig@nix.build>2017-11-30 08:33:59 +0100
commit38d3fe573f4d0ad2115eaca71a0b8f67fd01a580 (patch)
treed09bf338919056089be3b59194fa7b647794b15b /pkgs/build-support/build-sandbox/src/path-cache.h
parent28ac40c9d9e1c9afc63c19646f223b28b7ed3bc8 (diff)
build-sandbox: Move to top-level build-support
This is not only useful for packaging games, so let's make it available
from the vuizvui scope, so we can use it from other packages as well.

Signed-off-by: aszlig <aszlig@nix.build>
Diffstat (limited to 'pkgs/build-support/build-sandbox/src/path-cache.h')
-rw-r--r--pkgs/build-support/build-sandbox/src/path-cache.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/pkgs/build-support/build-sandbox/src/path-cache.h b/pkgs/build-support/build-sandbox/src/path-cache.h
new file mode 100644
index 00000000..368f8d17
--- /dev/null
+++ b/pkgs/build-support/build-sandbox/src/path-cache.h
@@ -0,0 +1,10 @@
+#ifndef _PATH_CACHE_H
+#define _PATH_CACHE_H
+
+typedef void *path_cache;
+
+path_cache new_path_cache(void);
+void free_path_cache(path_cache pc);
+bool cache_path(path_cache pc, const char *path);
+
+#endif