summaryrefslogtreecommitdiff
path: root/libgpython/include/gpython/vectors.h
diff options
context:
space:
mode:
Diffstat (limited to 'libgpython/include/gpython/vectors.h')
-rw-r--r--libgpython/include/gpython/vectors.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/libgpython/include/gpython/vectors.h b/libgpython/include/gpython/vectors.h
index ff29e9dac7f..0f34e09c39b 100644
--- a/libgpython/include/gpython/vectors.h
+++ b/libgpython/include/gpython/vectors.h
@@ -36,6 +36,13 @@ typedef struct gpy_hash_table_t {
gpy_hash_entry_t * array;
} gpy_hash_tab_t ;
+typedef struct gpy_rr_context_t {
+ gpy_vector_t * symbols;
+ /* ... maybe more things later date! */
+} gpy_context_t ;
+
+extern gpy_hash_tab_t * gpy_primitives;
+
extern gpy_hashval_t gpy_dd_hash_string( const char * );
extern gpy_hash_entry_t * gpy_dd_hash_lookup_table( gpy_hash_tab_t *, gpy_hashval_t );