diff options
Diffstat (limited to 'includes/rts/Linker.h')
-rw-r--r-- | includes/rts/Linker.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/includes/rts/Linker.h b/includes/rts/Linker.h index c53ad4acc5..a0891f46f7 100644 --- a/includes/rts/Linker.h +++ b/includes/rts/Linker.h @@ -51,6 +51,9 @@ void *lookupSymbol( char *lbl ); /* delete an object from the pool */ HsInt unloadObj( pathchar *path ); +/* purge an object's symbols from the symbol table, but don't unload it */ +HsInt purgeObj( pathchar *path ); + /* add an obj (populate the global symbol table, but don't resolve yet) */ HsInt loadObj( pathchar *path ); |