105 lines
2.4 KiB
C
105 lines
2.4 KiB
C
|
/*
|
||
|
* Copyright (C) 2007 Google (Evan Stade)
|
||
|
*
|
||
|
* 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
|
||
|
*/
|
||
|
|
||
|
#include "windef.h"
|
||
|
#include "wingdi.h"
|
||
|
#include "gdiplus.h"
|
||
|
#include "gdiplus_private.h"
|
||
|
#include "wine/debug.h"
|
||
|
|
||
|
WINE_DEFAULT_DEBUG_CHANNEL(gdiplus);
|
||
|
|
||
|
GpStatus WINGDIPAPI GdipGetImageHeight(GpImage *image, UINT *height)
|
||
|
{
|
||
|
static int calls;
|
||
|
|
||
|
if(!image || !height)
|
||
|
return InvalidParameter;
|
||
|
|
||
|
if(!(calls++))
|
||
|
FIXME("not implemented\n");
|
||
|
|
||
|
return NotImplemented;
|
||
|
}
|
||
|
|
||
|
GpStatus WINGDIPAPI GdipGetImageHorizontalResolution(GpImage *image, REAL *res)
|
||
|
{
|
||
|
static int calls;
|
||
|
|
||
|
if(!image || !res)
|
||
|
return InvalidParameter;
|
||
|
|
||
|
if(!(calls++))
|
||
|
FIXME("not implemented\n");
|
||
|
|
||
|
return NotImplemented;
|
||
|
}
|
||
|
|
||
|
GpStatus WINGDIPAPI GdipGetImageRawFormat(GpImage *image, GUID *format)
|
||
|
{
|
||
|
static int calls;
|
||
|
|
||
|
if(!image || !format)
|
||
|
return InvalidParameter;
|
||
|
|
||
|
if(!(calls++))
|
||
|
FIXME("not implemented\n");
|
||
|
|
||
|
return NotImplemented;
|
||
|
}
|
||
|
|
||
|
GpStatus WINGDIPAPI GdipGetImageVerticalResolution(GpImage *image, REAL *res)
|
||
|
{
|
||
|
static int calls;
|
||
|
|
||
|
if(!image || !res)
|
||
|
return InvalidParameter;
|
||
|
|
||
|
if(!(calls++))
|
||
|
FIXME("not implemented\n");
|
||
|
|
||
|
return NotImplemented;
|
||
|
}
|
||
|
|
||
|
GpStatus WINGDIPAPI GdipGetImageWidth(GpImage *image, UINT *width)
|
||
|
{
|
||
|
static int calls;
|
||
|
|
||
|
if(!image || !width)
|
||
|
return InvalidParameter;
|
||
|
|
||
|
if(!(calls++))
|
||
|
FIXME("not implemented\n");
|
||
|
|
||
|
return NotImplemented;
|
||
|
}
|
||
|
|
||
|
GpStatus WINGDIPAPI GdipImageGetFrameCount(GpImage *image,
|
||
|
GDIPCONST GUID* dimensionID, UINT* count)
|
||
|
{
|
||
|
static int calls;
|
||
|
|
||
|
if(!image || !dimensionID || !count)
|
||
|
return InvalidParameter;
|
||
|
|
||
|
if(!(calls++))
|
||
|
FIXME("not implemented\n");
|
||
|
|
||
|
return NotImplemented;
|
||
|
}
|