Subversion Repositories shark

Rev

Rev 471 | Rev 529 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
471 giacomo 1
/*
2
 * Project: S.Ha.R.K.
3
 *
4
 * Coordinators:
5
 *   Giorgio Buttazzo    <giorgio@sssup.it>
6
 *   Paolo Gai           <pj@gandalf.sssup.it>
7
 *
8
 * Authors     :
9
 *   Giacomo Guidi       <giacomo@gandalf.sssup.it>
10
 *
11
 *
12
 * ReTiS Lab (Scuola Superiore S.Anna - Pisa - Italy)
13
 *
14
 * http://www.sssup.it
15
 * http://retis.sssup.it
16
 * http://shark.sssup.it
17
 */
18
 
19
/* Glue Layer Header Linux Frame Buffer 2.6 Driver*/
20
 
21
#ifndef __SHARK_FB26__
22
#define __SHARK_FB26__
23
 
24
/* Init the FB 2.6 Driver */
484 giacomo 25
int FB26_init();
471 giacomo 26
 
484 giacomo 27
/* Open FB */
471 giacomo 28
int FB26_open(int num);
29
 
30
/* Close the FB */
31
int FB26_close(int num);
32
 
484 giacomo 33
/* Set mode */
34
int FB26_setmode(int num, unsigned char *modeopt);
35
 
471 giacomo 36
#endif
37