mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-14 22:11:38 -06:00
4.45 beta
This commit is contained in:
committed by
Kornel Lesiński
parent
d9666cf046
commit
a145bfc7cf
17
CPP/7zip/Compress/ByteSwap/ByteSwapRegister.cpp
Executable file
17
CPP/7zip/Compress/ByteSwap/ByteSwapRegister.cpp
Executable file
@@ -0,0 +1,17 @@
|
||||
// ByteSwapRegister.cpp
|
||||
|
||||
#include "StdAfx.h"
|
||||
|
||||
#include "../../Common/RegisterCodec.h"
|
||||
|
||||
#include "ByteSwap.h"
|
||||
static void *CreateCodec2() { return (void *)(ICompressFilter *)(new CByteSwap2); }
|
||||
static void *CreateCodec4() { return (void *)(ICompressFilter *)(new CByteSwap4); }
|
||||
|
||||
static CCodecInfo g_CodecsInfo[] =
|
||||
{
|
||||
{ CreateCodec2, CreateCodec4, 0x020302, L"Swap2", 1, true },
|
||||
{ CreateCodec4, CreateCodec4, 0x020304, L"Swap4", 1, true }
|
||||
};
|
||||
|
||||
REGISTER_CODECS(ByteSwap)
|
||||
Reference in New Issue
Block a user