mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-11 14:07:13 -06:00
23 lines
366 B
C++
23 lines
366 B
C++
// WimRegister.cpp
|
|
|
|
#include "StdAfx.h"
|
|
|
|
#include "../../Common/RegisterArc.h"
|
|
|
|
#include "WimHandler.h"
|
|
|
|
namespace NArchive {
|
|
namespace NWim {
|
|
|
|
REGISTER_ARC_IO(
|
|
"wim", "wim swm esd", 0, 0xE6,
|
|
kSignature,
|
|
0,
|
|
NArcInfoFlags::kAltStreams |
|
|
NArcInfoFlags::kNtSecure |
|
|
NArcInfoFlags::kSymLinks |
|
|
NArcInfoFlags::kHardLinks
|
|
, NULL)
|
|
|
|
}}
|