*** empty log message ***

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@1012 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Dave Beazley 2001-02-01 13:34:18 +00:00
commit 9f8c7a554a
14 changed files with 720 additions and 625 deletions

View file

@ -246,3 +246,14 @@ wad_arobject_load(const char *arpath, const char *robjname) {
return 0;
}
/* -----------------------------------------------------------------------------
* wad_find_object(WadFrame *f)
*
* Given a stack frame. Try to locate the object file
* ----------------------------------------------------------------------------- */
void wad_find_object(WadFrame *f) {
if (f->segment) {
f->object = wad_object_load(f->segment->mappath);
}
}