mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 13:03:11 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@62634 954022d7-b5bf-4e40-9824-e11837661b57
23 lines
267 B
C++
23 lines
267 B
C++
#pragma once
|
|
|
|
class ImgFilesJ2K
|
|
{
|
|
public:
|
|
ImgFilesJ2K()
|
|
{
|
|
}
|
|
~ImgFilesJ2K()
|
|
{
|
|
}
|
|
|
|
BOOL LoadJ2k(BSTR bstrPath, SAFEARRAY** pImage)
|
|
{
|
|
return FALSE;
|
|
}
|
|
BOOL SaveJ2k(BSTR bstrPath, SAFEARRAY** pImage, int Quality)
|
|
{
|
|
return FALSE;
|
|
}
|
|
};
|
|
|