mirror of
https://github.com/love2d/megasource.git
synced 2026-08-21 13:10:24 +02:00
14 lines
309 B
C++
14 lines
309 B
C++
// LZMARegister.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)
|