]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/fs_zip.h
new native toolbar implementation (turned off by default, not supporting embedded...
[wxWidgets.git] / include / wx / fs_zip.h
index 6dc75eb25cf8d173d4014e59833e6dad4cce4a31..3293151b121e9ec0c19c6354d04f9f301fc3db38 100644 (file)
 #include "wx/filesys.h"
 #include "wx/hashmap.h"
 
+
+WX_DECLARE_STRING_HASH_MAP(int, wxZipFilenameHashMap);
+
+
 //---------------------------------------------------------------------------
 // wxZipFSHandler
 //---------------------------------------------------------------------------
@@ -37,10 +41,10 @@ class WXDLLIMPEXP_BASE wxZipFSHandler : public wxFileSystemHandler
 
     private:
         // these vars are used by FindFirst/Next:
-        void *m_Archive;
+        class wxZipInputStream *m_Archive;
         wxString m_Pattern, m_BaseDir, m_ZipFile;
         bool m_AllowDirs, m_AllowFiles;
-        wxLongToLongHashMap *m_DirsFound;
+        wxZipFilenameHashMap *m_DirsFound;
 
         wxString DoFind();