gdiplus: Added string format constructor.

oldstable
Evan Stade 2007-08-14 18:59:48 -07:00 committed by Alexandre Julliard
parent 62cae5ab39
commit 73be69c576
5 changed files with 55 additions and 2 deletions

View File

@ -18,7 +18,8 @@ C_SRCS = \
imageattributes.c \
matrix.c \
pathiterator.c \
pen.c
pen.c \
stringformat.c
@MAKE_DLL_RULES@

View File

@ -130,7 +130,7 @@
@ stub GdipCreateRegionRgnData
@ stdcall GdipCreateSolidFill(long ptr)
@ stdcall GdipCreateStreamOnFile(ptr long ptr)
@ stub GdipCreateStringFormat
@ stdcall GdipCreateStringFormat(long long ptr)
@ stub GdipCreateTexture2
@ stub GdipCreateTexture2I
@ stub GdipCreateTexture

View File

@ -174,4 +174,9 @@ struct GpFont{
LOGFONTW lfw;
};
struct GpStringFormat{
INT attr;
LANGID lang;
};
#endif

View File

@ -0,0 +1,45 @@
/*
*
* 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 <stdarg.h>
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "winnls.h"
#include "objbase.h"
#include "gdiplus.h"
#include "gdiplus_private.h"
GpStatus WINGDIPAPI GdipCreateStringFormat(INT attr, LANGID lang,
GpStringFormat **format)
{
if(!format)
return InvalidParameter;
*format = GdipAlloc(sizeof(GpStringFormat));
if(!*format) return OutOfMemory;
(*format)->attr = attr;
(*format)->lang = lang;
return Ok;
}

View File

@ -244,6 +244,8 @@ GpStatus WINGDIPAPI GdipCreateFontFromLogfontW(HDC,GDIPCONST LOGFONTW*,GpFont**)
GpStatus WINGDIPAPI GdipDeleteFont(GpFont*);
GpStatus WINGDIPAPI GdipGetLogFontW(GpFont*,GpGraphics*,LOGFONTW*);
GpStatus WINGDIPAPI GdipCreateStringFormat(INT,LANGID,GpStringFormat**);
#ifdef __cplusplus
}
#endif