diff options
author | raveit65 <[email protected]> | 2013-10-28 21:03:26 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2013-10-28 21:03:26 +0100 |
commit | 5ef1b4801e7365b4cbf53c6ee829259dde32b5ee (patch) | |
tree | 2ec99bfe8bde50bd4c17c78404d797611aeda1d8 /src/main.c | |
parent | b28ae6fe841663d7cfc96908172c4adecd1dd3c6 (diff) | |
download | engrampa-5ef1b4801e7365b4cbf53c6ee829259dde32b5ee.tar.bz2 engrampa-5ef1b4801e7365b4cbf53c6ee829259dde32b5ee.tar.xz |
adds Windows Imaging Format (.wim, .swm) support
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -113,6 +113,7 @@ FrMimeTypeDescription mime_type_desc[] = { { "application/x-lzma-compressed-tar", ".tar.lzma", N_("Tar compressed with lzma (.tar.lzma)"), 0 }, { "application/x-lzop", ".lzo", NULL, 0 }, { "application/x-lzop-compressed-tar", ".tar.lzo", N_("Tar compressed with lzop (.tar.lzo)"), 0 }, + { "application/x-ms-wim", ".wim", N_("Windows Imaging Format (.wim)"), 0 }, { "application/x-rar", ".rar", N_("Rar (.rar)"), 0 }, { "application/x-rpm", ".rpm", NULL, 0 }, { "application/x-rzip", ".rz", NULL, 0 }, @@ -156,6 +157,7 @@ FrExtensionType file_ext_type[] = { { ".rpm", "application/x-rpm" }, { ".rz", "application/x-rzip" }, { ".sit", "application/x-stuffit" }, + { ".swm", "application/x-ms-wim" }, { ".tar", "application/x-tar" }, { ".tar.bz", "application/x-bzip-compressed-tar" }, { ".tar.bz2", "application/x-bzip-compressed-tar" }, @@ -176,6 +178,7 @@ FrExtensionType file_ext_type[] = { { ".tzma", "application/x-lzma-compressed-tar" }, { ".tzo", "application/x-lzop-compressed-tar" }, { ".war", "application/x-war" }, + { ".wim", "application/x-ms-wim" }, { ".xz", "application/x-xz" }, { ".z", "application/x-gzip" }, { ".Z", "application/x-compress" }, |