Subversion Repositories shark

Rev

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

#ifndef __FG_H__
#define __FG_H__

#define FG_MONO 0
#define FG_RGB24 1

int FG_init(unsigned int period, unsigned int wcet, unsigned int width,
                unsigned int height, unsigned int color, unsigned int channel);
void FG_start_grabbing(void);
void FG_close(void);
void * FG_getbuffer(void);
void FG_set_hook(void *funptr);

#endif