mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
20 lines
509 B
C++
20 lines
509 B
C++
|
// Bcj2Register.cpp
|
||
|
|
||
|
#include "StdAfx.h"
|
||
|
|
||
|
#include "../Common/RegisterCodec.h"
|
||
|
|
||
|
#include "Bcj2Coder.h"
|
||
|
|
||
|
static void *CreateCodec() { return (void *)(ICompressCoder2 *)(new NCompress::NBcj2::CDecoder()); }
|
||
|
#ifndef EXTRACT_ONLY
|
||
|
static void *CreateCodecOut() { return (void *)(ICompressCoder2 *)(new NCompress::NBcj2::CEncoder()); }
|
||
|
#else
|
||
|
#define CreateCodecOut 0
|
||
|
#endif
|
||
|
|
||
|
static CCodecInfo g_CodecInfo =
|
||
|
{ CreateCodec, CreateCodecOut, 0x0303011B, L"BCJ2", 4, false };
|
||
|
|
||
|
REGISTER_CODEC(BCJ2)
|