Subversion Repositories shark

Rev

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

Rev Author Line No. Line
1049 mauro 1
#ifndef __SHARK_PWC26_H__
2
#define __SHARK_PWC26_H__
3
 
4
struct PWC26_DEVICE
5
{
6
        void* private_data;
7
        int width;
8
        int height;
9
        BYTE* imgptr;
10
};
11
 
12
void shark_PWC_init();
13
int shark_PWC_read(struct PWC26_DEVICE *pwc26);
14
int shark_PWC_open(struct PWC26_DEVICE *pwc26, int width, int height, int fps, int quality, int webcamnr);
15
void shark_PWC_close(struct PWC26_DEVICE *pwc26);
16
 
17
#endif