xref: /aosp_15_r20/external/lzma/CPP/7zip/Archive/Iso/IsoRegister.cpp (revision f6dc9357d832569d4d1f5d24eacdb3935a1ae8e6)
1 // IsoRegister.cpp
2 
3 #include "StdAfx.h"
4 
5 #include "../../Common/RegisterArc.h"
6 
7 #include "IsoHandler.h"
8 
9 namespace NArchive {
10 namespace NIso {
11 
12 static const Byte k_Signature[] = { 'C', 'D', '0', '0', '1' };
13 
14 REGISTER_ARC_I(
15   "Iso", "iso img", NULL, 0xE7,
16   k_Signature,
17   NArchive::NIso::kStartPos + 1,
18   0,
19   NULL)
20 
21 }}
22