add some #ifdefs for SWIG

fixed a compile error in DefaultIOSystem
add swig-script


git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@546 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
This commit is contained in:
rave3d
2010-02-15 18:28:32 +00:00
parent fc47576da5
commit 52228add3a
9 changed files with 148 additions and 3 deletions

View File

@@ -130,7 +130,7 @@ bool IOSystem::ComparePaths (const char* one, const char* second) const
// Convert a relative path into an absolute path
inline void MakeAbsolutePath (const char* in, char* _out)
{
ai_assert(in & _out);
ai_assert(in && _out);
char* ret;
#ifdef _WIN32
ret = ::_fullpath(_out, in,PATHLIMIT);