Rev 182 |
Blame |
Compare with Previous |
Last modification |
View Log
| RSS feed
#ifndef __FG_H__
#define __FG_H__
#define FG_MONO 0
#define FG_RGB24 1
#define FG_YUYV 2
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