mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
15 lines
321 B
C++
15 lines
321 B
C++
// 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)
|