Go to most recent revision |
Blame |
Compare with Previous |
Last modification |
View Log
| RSS feed
#ifndef __SHARK_PWC26_H__
#define __SHARK_PWC26_H__
struct PWC26_DEVICE
{
void* private_data;
int width;
int height;
BYTE* imgptr;
};
void shark_PWC_init();
int shark_PWC_read(struct PWC26_DEVICE *pwc26);
int shark_PWC_open(struct PWC26_DEVICE *pwc26, int width, int height, int fps, int quality, int webcamnr);
void shark_PWC_close(struct PWC26_DEVICE *pwc26);
#endif