File: pantalla.h

package info (click to toggle)
gbatnav 1.0.4cvs20051004-6
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye
  • size: 4,700 kB
  • sloc: ansic: 14,118; sh: 11,667; makefile: 643; yacc: 288; xml: 42; sed: 16
file content (45 lines) | stat: -rw-r--r-- 691 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*	$Id: pantalla.h,v 1.2 2005/06/24 05:16:01 jlanawalt Exp $	*/

/* 
	Includes de pantalla
	Funcion que chequea el port y esas cosas
	Function that checks port and those things (?)
	Functions of screen handling and others


*/


#ifndef  __BN_PANTALLA__
# define __BN_PANTALLA__

# ifdef __cplusplus
extern "C" {
# endif /*__cplusplus*/



void 
textfill(gint, gchar *, ... );

/* Draw in my (left) screen */
void 
pmicell(cairo_t *cr,int x,int y,int color);

/* Draw in enemy (right) screen */
void 
ptucell(cairo_t *cr,int x,int y,int color);

void 
foot_right( char* text );

void 
foot_left( char* text );


   
# ifdef __cplusplus
}
# endif /*__cplusplus*/

# endif /*__BN_PANTALLA__*/