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