source: libcaca/trunk/src/caca_internals.h @ 193

Last change on this file since 193 was 193, checked in by Sam Hocevar, 19 years ago
  • src/blit.c: + Added caca_set_dithering() (unused yet). + Added random dithering.
  • src/caca.h: + Renamed legacy EE_* enums to CACA_*.
  • examples/demo.c examples/caca.txt: + Added a default sprite for libcaca.
  • Property svn:keywords set to Id
File size: 1.2 KB
Line 
1/*
2 *   libcaca       ASCII-Art library
3 *   Copyright (c) 2002, 2003 Sam Hocevar <sam@zoy.org>
4 *                 All Rights Reserved
5 *
6 *   $Id: caca_internals.h 193 2003-11-16 15:20:17Z sam $
7 *
8 *   This library is free software; you can redistribute it and/or
9 *   modify it under the terms of the GNU Lesser General Public
10 *   License as published by the Free Software Foundation; either
11 *   version 2 of the License, or (at your option) any later version.
12 *
13 *   This library is distributed in the hope that it will be useful,
14 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
15 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 *   Lesser General Public License for more details.
17 *
18 *   You should have received a copy of the GNU Lesser General Public
19 *   License along with this library; if not, write to the Free Software
20 *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
21 *   02111-1307  USA
22 */
23
24#ifndef __CACA_INTERNALS_H__
25#define __CACA_INTERNALS_H__
26
27#if defined(USE_NCURSES)
28extern int _caca_attr[];
29#endif
30
31#if defined(USE_CONIO)
32extern char *_caca_screen;
33#endif
34
35extern char *_caca_empty_line;
36extern char *_caca_scratch_line;
37
38#endif /* __CACA_INTERNALS_H__ */
Note: See TracBrowser for help on using the repository browser.