12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- using CommonMPQ.SharpZipLib.Core;
- namespace CommonMPQ.SharpZipLib.Zip
- {
-
-
-
- public interface IEntryFactory
- {
-
-
-
-
-
- ZipEntry MakeFileEntry(string fileName);
-
-
-
-
-
-
- ZipEntry MakeFileEntry(string fileName, bool useFileSystem);
-
-
-
-
-
-
-
- ZipEntry MakeFileEntry(string fileName, string entryName, bool useFileSystem);
-
-
-
-
-
- ZipEntry MakeDirectoryEntry(string directoryName);
-
-
-
-
-
-
- ZipEntry MakeDirectoryEntry(string directoryName, bool useFileSystem);
-
-
-
-
- INameTransform NameTransform { get; set; }
- }
- }
|