Subversion Repositories shark

Compare Revisions

Ignore whitespace Rev 692 → Rev 693

/shark/trunk/ports/snapshot/include/snapshot.h
1,11 → 1,11
#ifndef __SNAPSHOT_H__
#define __SNAPSHOT_H__
 
int** snapshot_getslot(int nbuff, int sx, int sy);
void snapshot_freeslot(int nbuff);
void snapshot_grab(int nbuff);
int snapshot_save_pgm(int nbuff, char *fname);
int snapshot_save_ppm(int nbuff, char *fname);
void* snapshot_getslot(int nbuff, int wx, int wy, int bytesperpixel);
void snapshot_freeslot(int nbuff);
void snapshot_grab(int nbuff);
int snapshot_save_pgm(int nbuff, char *fname);
int snapshot_save_ppm(int nbuff, char *fname);
 
#endif