update for HEAD-2003091401
[reactos.git] / lib / cards / cards.h
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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20
21 #ifndef _CARDS_H
22 #define _CARDS_H
23
24 /*
25  * 52 card faces +
26  * 12 card backs +
27  * X Sign +
28  * O Sign +
29  * FreeCard +
30  * Joker
31  */
32 #define MAX_CARD_BITMAPS        68
33
34 #define ectFACES                        0
35 #define ectBACKS                        1
36 #define ectINVERTED                     2
37 #define ectEMPTY                        3
38 #define ectERASE                        4
39 #define ectEMPTYNOBG            5
40 #define ectREDX                         6
41 #define ectGREENO                       7
42 #define ectSAVEEDGESMASK        0x80000000
43
44 /* Microsoft card dimensions */
45 /*
46 #define CARD_WIDTH              71
47 #define CARD_HEIGHT             96
48 */
49 /* Oxymoron's card dimensions */
50 #define CARD_WIDTH              73
51 #define CARD_HEIGHT             97
52
53 #define ISREDCARD(x)    (x >= 13 && x <= 39)
54
55 BOOL WINAPI cdtInit(int *width, int *height);
56 BOOL WINAPI cdtDraw(HDC hdc, int x, int y, int card, int type, DWORD color);
57 BOOL WINAPI cdtDrawExt(HDC hdc, int x, int y, int dx, int dy, int card, int suit, DWORD color);
58 BOOL WINAPI cdtAnimate(HDC hdc, int cardback, int x, int y, int frame);
59 void WINAPI cdtTerm(void);
60
61 #endif /* _CARDS_H */