source: roaraudio/include/libroar/vio.h @ 594:e3f79739b8cc

Last change on this file since 594:e3f79739b8cc was 594:e3f79739b8cc, checked in by phi, 16 years ago

added parameter inst to vio struct members

File size: 372 bytes
RevLine 
[588]1//auth.h:
2
3#ifndef _LIBROARVIO_H_
4#define _LIBROARVIO_H_
5
6#include "libroar.h"
7
[589]8struct roar_vio_calls {
[593]9 void * inst;
[594]10 ssize_t (*read) (int fd, void *buf, size_t count, inst);
11 ssize_t (*write)(int fd, void *buf, size_t count, inst);
12 off_t   (*lseek)(int fildes, off_t offset, int whence, inst);
[589]13};
14
[591]15int roar_vio_init_calls (struct roar_vio_calls * calls);
16
[588]17#endif
18
19//ll
Note: See TracBrowser for help on using the repository browser.