2 * Copyright (C) 2007 Google (Evan Stade)
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
24 #include "wine/debug.h"
27 WINE_DEFAULT_DEBUG_CHANNEL(gdiplus
);
29 /*****************************************************
32 BOOL WINAPI
DllMain(HINSTANCE hinst
, DWORD reason
, LPVOID reserved
)
34 TRACE("(%p, %d, %p)\n", hinst
, reason
, reserved
);
38 case DLL_WINE_PREATTACH
:
39 return FALSE
; /* prefer native version */
41 case DLL_PROCESS_ATTACH
:
42 DisableThreadLibraryCalls( hinst
);
48 /*****************************************************
49 * GdiplusStartup [GDIPLUS.@]
51 Status WINAPI
GdiplusStartup(ULONG_PTR
*token
, const struct GdiplusStartupInput
*input
,
52 struct GdiplusStartupOutput
*output
)
55 return InvalidParameter
;
57 if(input
->GdiplusVersion
!= 1) {
58 return UnsupportedGdiplusVersion
;
59 } else if ((input
->DebugEventCallback
) ||
60 (input
->SuppressBackgroundThread
) || (input
->SuppressExternalCodecs
)){
61 FIXME("Unimplemented for non-default GdiplusStartupInput\n");
62 return NotImplemented
;
64 FIXME("Unimplemented for non-null GdiplusStartupOutput\n");
65 return NotImplemented
;
71 /*****************************************************
72 * GdiplusShutdown [GDIPLUS.@]
74 void WINAPI
GdiplusShutdown(ULONG_PTR token
)
76 /* FIXME: no object tracking */
79 /*****************************************************
80 * GdipAlloc [GDIPLUS.@]
82 void* WINGDIPAPI
GdipAlloc(SIZE_T size
)
84 return HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, size
);
87 /*****************************************************
88 * GdipFree [GDIPLUS.@]
90 void WINGDIPAPI
GdipFree(void* ptr
)
92 HeapFree(GetProcessHeap(), 0, ptr
);
95 COLORREF
ARGB2COLORREF(ARGB color
)
98 Packing of these color structures:
101 FIXME:doesn't handle alpha channel
104 ((color
& 0x0000ff) << 16) +
106 ((color
& 0xff0000) >> 16);