#include "wx/log.h"
#endif
-#include "wx/hashmap.h"
#include "wx/filesys.h"
#include "wx/zipstrm.h"
#include "wx/fs_zip.h"
#include "unzip.h"
#endif
-WX_DECLARE_HASH_MAP_WITH_DECL( long, long, wxIntegerHash, wxIntegerEqual,
- wxLongToLongHashMap, class WXDLLIMPEXP_BASE );
-
//----------------------------------------------------------------------------
// wxZipFSHandler
//----------------------------------------------------------------------------
m_ZipFile = left;
wxString nativename = wxFileSystem::URLToFileName(m_ZipFile).GetFullPath();
- m_Archive = (void*) unzOpen(nativename.fn_str());
+ m_Archive = (void*) unzOpen(nativename.mb_str(wxConvFile));
m_Pattern = right.AfterLast(wxT('/'));
m_BaseDir = right.BeforeLast(wxT('/'));