Subversion Repositories shark

Rev

Rev 693 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
692 mauro 1
#ifndef __SNAPSHOT_H__
2
#define __SNAPSHOT_H__
3
 
4
int** snapshot_getslot(int nbuff, int sx, int sy);
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);
9
 
10
#endif
11