mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 15:17:59 +00:00
9689e38a15
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=45940 Signed-off-by: Vijay Kiran Kamuju <infyquest@gmail.com> Signed-off-by: Esme Povirk <esme@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
128 lines
3.7 KiB
C
128 lines
3.7 KiB
C
/*
|
|
* unix_lib.c - This is the Unix side of the Unix interface.
|
|
*
|
|
* Copyright 2020 Esme Povirk
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
|
|
#if 0
|
|
#pragma makedep unix
|
|
#endif
|
|
|
|
#include "config.h"
|
|
#include "wine/port.h"
|
|
|
|
#include <stdarg.h>
|
|
|
|
#define NONAMELESSUNION
|
|
|
|
#include "ntstatus.h"
|
|
#define WIN32_NO_STATUS
|
|
#include "windef.h"
|
|
#include "winternl.h"
|
|
#include "winbase.h"
|
|
#include "objbase.h"
|
|
|
|
#include "initguid.h"
|
|
#include "wincodecs_private.h"
|
|
|
|
#include "wine/debug.h"
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(wincodecs);
|
|
|
|
#include "wincodecs_common.h"
|
|
|
|
static const struct win32_funcs *win32_funcs;
|
|
|
|
HRESULT CDECL stream_getsize(IStream *stream, ULONGLONG *size)
|
|
{
|
|
return win32_funcs->stream_getsize(stream, size);
|
|
}
|
|
|
|
HRESULT CDECL stream_read(IStream *stream, void *buffer, ULONG read, ULONG *bytes_read)
|
|
{
|
|
return win32_funcs->stream_read(stream, buffer, read, bytes_read);
|
|
}
|
|
|
|
HRESULT CDECL stream_seek(IStream *stream, LONGLONG ofs, DWORD origin, ULONGLONG *new_position)
|
|
{
|
|
return win32_funcs->stream_seek(stream, ofs, origin, new_position);
|
|
}
|
|
|
|
HRESULT CDECL stream_write(IStream *stream, const void *buffer, ULONG write, ULONG *bytes_written)
|
|
{
|
|
return win32_funcs->stream_write(stream, buffer, write, bytes_written);
|
|
}
|
|
|
|
HRESULT CDECL decoder_create(const CLSID *decoder_clsid, struct decoder_info *info, struct decoder **result)
|
|
{
|
|
if (IsEqualGUID(decoder_clsid, &CLSID_WICPngDecoder)||
|
|
IsEqualGUID(decoder_clsid, &CLSID_WICPngDecoder2))
|
|
return png_decoder_create(info, result);
|
|
|
|
if (IsEqualGUID(decoder_clsid, &CLSID_WICTiffDecoder))
|
|
return tiff_decoder_create(info, result);
|
|
|
|
if (IsEqualGUID(decoder_clsid, &CLSID_WICJpegDecoder))
|
|
return jpeg_decoder_create(info, result);
|
|
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
HRESULT CDECL encoder_create(const CLSID *encoder_clsid, struct encoder_info *info, struct encoder **result)
|
|
{
|
|
if (IsEqualGUID(encoder_clsid, &CLSID_WICPngEncoder))
|
|
return png_encoder_create(info, result);
|
|
|
|
if (IsEqualGUID(encoder_clsid, &CLSID_WICTiffEncoder))
|
|
return tiff_encoder_create(info, result);
|
|
|
|
if (IsEqualGUID(encoder_clsid, &CLSID_WICJpegEncoder))
|
|
return jpeg_encoder_create(info, result);
|
|
|
|
if (IsEqualGUID(encoder_clsid, &CLSID_WICIcnsEncoder))
|
|
return icns_encoder_create(info, result);
|
|
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static const struct unix_funcs unix_funcs = {
|
|
decoder_create,
|
|
decoder_initialize,
|
|
decoder_get_frame_info,
|
|
decoder_copy_pixels,
|
|
decoder_get_metadata_blocks,
|
|
decoder_get_color_context,
|
|
decoder_destroy,
|
|
encoder_create,
|
|
encoder_initialize,
|
|
encoder_get_supported_format,
|
|
encoder_create_frame,
|
|
encoder_write_lines,
|
|
encoder_commit_frame,
|
|
encoder_commit_file,
|
|
encoder_destroy
|
|
};
|
|
|
|
NTSTATUS CDECL __wine_init_unix_lib( HMODULE module, DWORD reason, const void *ptr_in, void *ptr_out )
|
|
{
|
|
if (reason != DLL_PROCESS_ATTACH) return STATUS_SUCCESS;
|
|
|
|
win32_funcs = ptr_in;
|
|
|
|
*(const struct unix_funcs **)ptr_out = &unix_funcs;
|
|
return STATUS_SUCCESS;
|
|
}
|