Subversion Repositories shark

Rev

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

/*
 * Project: S.Ha.R.K.
 *
 * Coordinators:
 *   Giorgio Buttazzo    <giorgio@sssup.it>
 *   Paolo Gai           <pj@gandalf.sssup.it>
 *
 * Authors     :
 *   Giacomo Guidi       <giacomo@gandalf.sssup.it>
 *
 *
 * ReTiS Lab (Scuola Superiore S.Anna - Pisa - Italy)
 *
 * http://www.sssup.it
 * http://retis.sssup.it
 * http://shark.sssup.it
 */


/* Glue Layer Header Linux Frame Buffer 2.6 Driver*/

#ifndef __SHARK_FB26__
#define __SHARK_FB26__

/* Init the FB 2.6 Driver */
int FB26_init();

/* Open FB */
int FB26_open(int num);

/* Close the FB */
int FB26_close(int num);

/* Set mode */
int FB26_setmode(int num, unsigned char *modeopt);

#endif