mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-07 11:14:58 -06:00
21 lines
289 B
C++
21 lines
289 B
C++
// NsisRegister.cpp
|
|
|
|
#include "StdAfx.h"
|
|
|
|
#include "../../Common/RegisterArc.h"
|
|
|
|
#include "NsisHandler.h"
|
|
|
|
namespace NArchive {
|
|
namespace NNsis {
|
|
|
|
REGISTER_ARC_I(
|
|
"Nsis", "nsis", 0, 0x9,
|
|
kSignature,
|
|
4,
|
|
NArcInfoFlags::kFindSignature |
|
|
NArcInfoFlags::kUseGlobalOffset,
|
|
NULL)
|
|
|
|
}}
|