ReactOS 0.4.15-dev-7842-g558ab78
cards.h
Go to the documentation of this file.
1/*
2 * ReactOS Cards
3 *
4 * Copyright (C) 2003 Filip Navara <xnavara@volny.org>
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21#pragma once
22
23/*
24 * 52 card faces +
25 * 12 card backs +
26 * X Sign +
27 * O Sign +
28 * FreeCard +
29 * Joker
30 */
31#define MAX_CARD_BITMAPS 68
32
33#define ectFACES 0
34#define ectBACKS 1
35#define ectINVERTED 2
36#define ectEMPTY 3
37#define ectERASE 4
38#define ectEMPTYNOBG 5
39#define ectREDX 6
40#define ectGREENO 7
41#define ectSAVEEDGESMASK 0x80000000
42
43#if defined(CARDSTYLE_DEFAULT)
44# define CARD_WIDTH 72 // The original Microsoft cards are 71px wide, but ours are taken from http://united3dartists.com
45# define CARD_HEIGHT 112
46#elif defined(CARDSTYLE_BAVARIAN)
47# define CARD_WIDTH 110
48# define CARD_HEIGHT 198
49#else
50# error No or unsupported cardstyle defined
51#endif
52
53#define ISREDCARD(x) (x >= 13 && x <= 39)
54
56BOOL WINAPI cdtDraw(HDC hdc, int x, int y, int card, int type, DWORD color);
57BOOL WINAPI cdtDrawExt(HDC hdc, int x, int y, int dx, int dy, int card, int suit, DWORD color);
58BOOL WINAPI cdtAnimate(HDC hdc, int cardback, int x, int y, int frame);
59void WINAPI cdtTerm(void);
void WINAPI cdtTerm(void)
Definition: cards.c:62
BOOL WINAPI cdtDrawExt(HDC hdc, int x, int y, int dx, int dy, int card, int suit, DWORD color)
BOOL WINAPI cdtDraw(HDC hdc, int x, int y, int card, int type, DWORD color)
BOOL WINAPI cdtAnimate(HDC hdc, int cardback, int x, int y, int frame)
Definition: cards.c:238
BOOL WINAPI cdtInit(int *width, int *height)
unsigned int BOOL
Definition: ntddk_ex.h:94
unsigned long DWORD
Definition: ntddk_ex.h:95
GLint GLint GLint GLint GLint x
Definition: gl.h:1548
GLuint GLuint GLsizei GLenum type
Definition: gl.h:1545
GLint GLint GLint GLint GLint GLint y
Definition: gl.h:1548
GLint GLint GLsizei GLsizei height
Definition: gl.h:1546
GLint GLint GLsizei width
Definition: gl.h:1546
GLuint color
Definition: glext.h:6243
GLint dy
Definition: linetemp.h:97
GLint dx
Definition: linetemp.h:97
HDC hdc
Definition: main.c:9
static HDC
Definition: imagelist.c:92
#define WINAPI
Definition: msvc.h:6