slouken@281
|
1 |
/*
|
slouken@281
|
2 |
SDL - Simple DirectMedia Layer
|
slouken@1312
|
3 |
Copyright (C) 1997-2006 Sam Lantinga
|
slouken@281
|
4 |
|
slouken@281
|
5 |
This library is free software; you can redistribute it and/or
|
slouken@1312
|
6 |
modify it under the terms of the GNU Lesser General Public
|
slouken@281
|
7 |
License as published by the Free Software Foundation; either
|
slouken@1312
|
8 |
version 2.1 of the License, or (at your option) any later version.
|
slouken@281
|
9 |
|
slouken@281
|
10 |
This library is distributed in the hope that it will be useful,
|
slouken@281
|
11 |
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
slouken@281
|
12 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
slouken@1312
|
13 |
Lesser General Public License for more details.
|
slouken@281
|
14 |
|
slouken@1312
|
15 |
You should have received a copy of the GNU Lesser General Public
|
slouken@1312
|
16 |
License along with this library; if not, write to the Free Software
|
slouken@1312
|
17 |
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
slouken@281
|
18 |
|
slouken@281
|
19 |
Sam Lantinga
|
slouken@281
|
20 |
slouken@libsdl.org
|
slouken@281
|
21 |
*/
|
slouken@1402
|
22 |
#include "SDL_config.h"
|
slouken@281
|
23 |
|
slouken@281
|
24 |
#ifndef _SDL_Atari_eddi_s_h
|
slouken@281
|
25 |
#define _SDL_Atari_eddi_s_h
|
slouken@281
|
26 |
|
slouken@281
|
27 |
/*--- Defines ---*/
|
slouken@281
|
28 |
|
slouken@281
|
29 |
/* EdDI versions */
|
slouken@281
|
30 |
|
slouken@281
|
31 |
#define EDDI_10 (0x0100)
|
slouken@281
|
32 |
#define EDDI_11 (0x0110)
|
slouken@281
|
33 |
|
slouken@281
|
34 |
/* Screen format */
|
slouken@281
|
35 |
|
slouken@1662
|
36 |
enum
|
slouken@1662
|
37 |
{
|
slouken@1662
|
38 |
VDI_FORMAT_UNKNOWN = -1,
|
slouken@1662
|
39 |
VDI_FORMAT_INTER = 0, /* Interleaved bitplanes */
|
slouken@1662
|
40 |
VDI_FORMAT_VDI = 1, /* VDI independent */
|
slouken@1662
|
41 |
VDI_FORMAT_PACK = 2 /* Packed pixels */
|
slouken@281
|
42 |
};
|
slouken@281
|
43 |
|
slouken@281
|
44 |
/* CLUT types */
|
slouken@1662
|
45 |
enum
|
slouken@1662
|
46 |
{
|
slouken@1662
|
47 |
VDI_CLUT_NONE = 0, /* Monochrome mode */
|
slouken@1662
|
48 |
VDI_CLUT_HARDWARE, /* <256 colours mode */
|
slouken@1662
|
49 |
VDI_CLUT_SOFTWARE /* True colour mode */
|
slouken@281
|
50 |
};
|
slouken@281
|
51 |
|
slouken@281
|
52 |
/*--- Functions ---*/
|
slouken@281
|
53 |
|
slouken@1668
|
54 |
unsigned long Atari_get_EdDI_version(void *function_pointer);
|
slouken@281
|
55 |
|
slouken@281
|
56 |
#endif /* _SDL_Atari_eddi_s_h */
|
slouken@1662
|
57 |
/* vi: set ts=4 sw=4 expandtab: */
|