cards: Enable compilation with long types.
Signed-off-by: Eric Pouech <eric.pouech@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
0197a1c0cc
commit
5e441786d3
|
@ -1,4 +1,3 @@
|
|||
EXTRADEFS = -DWINE_NO_LONG_TYPES
|
||||
MODULE = cards.dll
|
||||
IMPORTLIB = cards
|
||||
IMPORTS = user32 gdi32
|
||||
|
|
|
@ -92,7 +92,7 @@ BOOL WINAPI cdtDrawExt(HDC hdc, int x, int y, int dx, int dy, int card, int mode
|
|||
BOOL eraseFlag = FALSE;
|
||||
BOOL drawFlag = TRUE;
|
||||
|
||||
TRACE("(%p, %d, %d, %d, %d, %d, %d, %d)\n", hdc, x, y, dx, dy, card, mode, color);
|
||||
TRACE("(%p, %d, %d, %d, %d, %d, %d, %ld)\n", hdc, x, y, dx, dy, card, mode, color);
|
||||
|
||||
roundCornersFlag = !(mode & MODEFLAG_DONT_ROUND_CORNERS) &&
|
||||
(dx == cardWidth) && (dy == cardHeight);
|
||||
|
@ -238,7 +238,7 @@ BOOL WINAPI cdtDrawExt(HDC hdc, int x, int y, int dx, int dy, int card, int mode
|
|||
*/
|
||||
BOOL WINAPI cdtDraw(HDC hdc, int x, int y, int card, int mode, DWORD color)
|
||||
{
|
||||
TRACE("(%p, %d, %d, %d, %d, %d)\n", hdc, x, y, card, mode, color);
|
||||
TRACE("(%p, %d, %d, %d, %d, %ld)\n", hdc, x, y, card, mode, color);
|
||||
|
||||
return cdtDrawExt(hdc, x, y, cardWidth, cardHeight, card, mode, color);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue