Subversion Repositories shark

Rev

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

Rev Author Line No. Line
692 mauro 1
#ifndef __SNAPSHOT_H__
2
#define __SNAPSHOT_H__
3
 
693 giacomo 4
void* snapshot_getslot(int nbuff, int wx, int wy, int bytesperpixel);
5
void  snapshot_freeslot(int nbuff);
6
void  snapshot_grab(int nbuff);
7
int   snapshot_save_pgm(int nbuff, char *fname);
8
int   snapshot_save_ppm(int nbuff, char *fname);
692 mauro 9
 
10
#endif
11