From d1345878e1ca66cf9ec67efa89bcbcabf55501ff Mon Sep 17 00:00:00 2001 From: Dave Beazley Date: Tue, 11 Nov 2003 20:16:35 +0000 Subject: [PATCH] Added Swig_push_directory() and Swig_pop_directory() git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@5297 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- Source/Swig/swig.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/Swig/swig.h b/Source/Swig/swig.h index 29bba5e4a..6e97d536c 100644 --- a/Source/Swig/swig.h +++ b/Source/Swig/swig.h @@ -84,6 +84,8 @@ typedef DOH SwigType; /* --- File interface --- */ extern void Swig_add_directory(const String_or_char *dirname); +extern void Swig_push_directory(const String_or_char *dirname); +extern void Swig_pop_directory(); extern String *Swig_last_file(); extern List *Swig_search_path(); extern FILE *Swig_open(const String_or_char *name);