From f24b6093d2f1f5eaa33307574bc478d622bd48c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A9=20van=20Geldorp?= Date: Thu, 20 Jan 2005 11:37:29 +0000 Subject: [PATCH] Initial vendor drop svn path=/trunk/; revision=13162 --- reactos/lib/msimg32/Makefile.in | 12 ++++++++++ reactos/lib/msimg32/msimg32.spec | 5 ++++ reactos/lib/msimg32/msimg32_main.c | 37 ++++++++++++++++++++++++++++++ 3 files changed, 54 insertions(+) create mode 100644 reactos/lib/msimg32/Makefile.in create mode 100644 reactos/lib/msimg32/msimg32.spec create mode 100644 reactos/lib/msimg32/msimg32_main.c diff --git a/reactos/lib/msimg32/Makefile.in b/reactos/lib/msimg32/Makefile.in new file mode 100644 index 00000000000..78670f87fc3 --- /dev/null +++ b/reactos/lib/msimg32/Makefile.in @@ -0,0 +1,12 @@ +TOPSRCDIR = @top_srcdir@ +TOPOBJDIR = ../.. +SRCDIR = @srcdir@ +VPATH = @srcdir@ +MODULE = msimg32.dll +IMPORTS = gdi32 kernel32 + +C_SRCS = msimg32_main.c + +@MAKE_DLL_RULES@ + +### Dependencies: diff --git a/reactos/lib/msimg32/msimg32.spec b/reactos/lib/msimg32/msimg32.spec new file mode 100644 index 00000000000..6d78914210f --- /dev/null +++ b/reactos/lib/msimg32/msimg32.spec @@ -0,0 +1,5 @@ +@ stdcall AlphaBlend(long long long long long long long long long long long) gdi32.GdiAlphaBlend +@ stub DllInitialize +@ stdcall GradientFill(long ptr long ptr long long) gdi32.GdiGradientFill +@ stdcall TransparentBlt(long long long long long long long long long long long) gdi32.GdiTransparentBlt +@ stdcall vSetDdrawflag() diff --git a/reactos/lib/msimg32/msimg32_main.c b/reactos/lib/msimg32/msimg32_main.c new file mode 100644 index 00000000000..6a49854e19b --- /dev/null +++ b/reactos/lib/msimg32/msimg32_main.c @@ -0,0 +1,37 @@ +/* + * Copyright 2002 Uwe Bonnes + * + * 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +#include + +#include "windef.h" +#include "winbase.h" +#include "wingdi.h" +#include "winerror.h" +#include "wine/debug.h" + +WINE_DEFAULT_DEBUG_CHANNEL(msimg32); + +/****************************************************************************** + * vSetDdrawflag (MSIMG32.@) + */ +void WINAPI vSetDdrawflag(void) +{ + static unsigned int vDrawflag=1; + FIXME("stub: vSetDrawFlag %u\n", vDrawflag); + SetLastError(ERROR_CALL_NOT_IMPLEMENTED); +}