Files
core/DesktopEditor/raster/Jp2/JpgEvent.h
Alexander.Trofimov beb64a6efa utf8 -> utf8 with BOM
2016-06-23 19:23:34 +03:00

21 lines
520 B
C++

#pragma once
#include "Types.h"
namespace Jpeg2000
{
//-------------------------------------------------------------------------------------------------------------------------------
// Events
//-------------------------------------------------------------------------------------------------------------------------------
bool Event_Message(int nEventType, const char *sFormatString, ...)
{
if (sFormatString != NULL)
{
// TODO: print sMessage/*, pCodecInfo->pClientData*/
}
return true;
}
}