diff options
Diffstat (limited to 'Include/import.h')
-rw-r--r-- | Include/import.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Include/import.h b/Include/import.h new file mode 100644 index 0000000..298a72b --- /dev/null +++ b/Include/import.h @@ -0,0 +1,7 @@ +/* Module definition and import interface */ + +void init_modules PROTO(()); +void close_modules PROTO(()); +object *new_module PROTO((char *name)); +void define_module PROTO((struct _context *ctx, char *name)); +object *import_module PROTO((struct _context *ctx, char *name)); |