aboutsummaryrefslogtreecommitdiffhomepage
path: root/autoload.h
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-12-08 21:41:38 -0800
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-12-08 21:41:38 -0800
commit6a8219a02e8017ffd39437dc830d0422dc3472a6 (patch)
treefb97baa1a44b85f182b46cfa3befac6950426830 /autoload.h
parentc8f7d33a9a6205ebf3ed8fe2a24836325b80f96c (diff)
Remove Python dependency from Makefile and Xcode build
Diffstat (limited to 'autoload.h')
-rw-r--r--autoload.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/autoload.h b/autoload.h
index ee3d259a..8bfdad6a 100644
--- a/autoload.h
+++ b/autoload.h
@@ -34,6 +34,10 @@ struct autoload_function_t : public lru_node_t
bool is_internalized; /** Whether this function came from a builtin "internalized" script */
};
+struct builtin_script_t {
+ const wchar_t *name;
+ const char *def;
+};
struct builtin_script_t;
class env_vars_snapshot_t;