mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 19:14:56 -06:00
15 lines
307 B
C++
Executable File
15 lines
307 B
C++
Executable File
// CopyRegister.cpp
|
|
|
|
#include "StdAfx.h"
|
|
|
|
#include "../Common/RegisterCodec.h"
|
|
|
|
#include "CopyCoder.h"
|
|
|
|
static void *CreateCodec() { return (void *)(ICompressCoder *)(new NCompress::CCopyCoder); }
|
|
|
|
static CCodecInfo g_CodecInfo =
|
|
{ CreateCodec, CreateCodec, 0x00, L"Copy", 1, false };
|
|
|
|
REGISTER_CODEC(Copy)
|