RetroArch
caca_common.h
Go to the documentation of this file.
1 /* RetroArch - A frontend for libretro.
2  * Copyright (C) 2010-2014 - Hans-Kristian Arntzen
3  * copyright (c) 2011-2017 - Daniel De Matteis
4  * copyright (c) 2016-2017 - Brad Parker
5  *
6  * RetroArch is free software: you can redistribute it and/or modify it under the terms
7  * of the GNU General Public License as published by the Free Software Found-
8  * ation, either version 3 of the License, or (at your option) any later version.
9  *
10  * RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
11  * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  * PURPOSE. See the GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along with RetroArch.
15  * If not, see <http://www.gnu.org/licenses/>.
16  */
17 
18 #ifndef __CACA_COMMON_H
19 #define __CACA_COMMON_H
20 
21 struct caca_canvas;
22 struct caca_dither;
23 struct caca_display;
24 
25 typedef struct caca_canvas caca_canvas_t;
26 typedef struct caca_dither caca_dither_t;
28 
29 typedef struct caca
30 {
34 } caca_t;
35 
36 #endif
static caca_display_t * caca_display
Definition: caca_gfx.c:35
struct caca_dither caca_dither_t
Definition: caca_common.h:26
caca_display_t ** caca_display
Definition: caca_common.h:33
struct caca caca_t
caca_canvas_t ** caca_cv
Definition: caca_common.h:31
struct caca_display caca_display_t
Definition: caca_common.h:27
caca_dither_t ** caca_dither
Definition: caca_common.h:32
struct caca_canvas caca_canvas_t
Definition: caca_common.h:25
static caca_dither_t * caca_dither
Definition: caca_gfx.c:34
Definition: caca_common.h:29