Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'CPP/7zip/Archive/Lzh/LzhRegister.cpp')
-rwxr-xr-xCPP/7zip/Archive/Lzh/LzhRegister.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/CPP/7zip/Archive/Lzh/LzhRegister.cpp b/CPP/7zip/Archive/Lzh/LzhRegister.cpp
new file mode 100755
index 00000000..b9b1d473
--- /dev/null
+++ b/CPP/7zip/Archive/Lzh/LzhRegister.cpp
@@ -0,0 +1,13 @@
+// LzhRegister.cpp
+
+#include "StdAfx.h"
+
+#include "../../Common/RegisterArc.h"
+
+#include "LzhHandler.h"
+static IInArchive *CreateArc() { return new NArchive::NLzh::CHandler; }
+
+static CArcInfo g_ArcInfo =
+ { L"Lzh", L"lzh lha", 0, 6, { '-', 'l' }, 2, false, CreateArc, 0 };
+
+REGISTER_ARC(Lzh)