Subversion Repositories shark

Rev

Rev 182 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
170 giacomo 1
#ifndef __FG_H__
2
#define __FG_H__
3
 
177 giacomo 4
#define FG_MONO 0
5
#define FG_RGB24 1
267 giacomo 6
#define FG_YUYV 2
177 giacomo 7
 
182 giacomo 8
int FG_init(unsigned int period, unsigned int wcet, unsigned int width,
9
                unsigned int height, unsigned int color, unsigned int channel);
177 giacomo 10
void FG_start_grabbing(void);
170 giacomo 11
void FG_close(void);
12
void * FG_getbuffer(void);
175 giacomo 13
void FG_set_hook(void *funptr);
170 giacomo 14
 
15
#endif