source: roaraudio/include/libroar/vio.h @ 589:2187e8d9f212

Last change on this file since 589:2187e8d9f212 was 589:2187e8d9f212, checked in by phi, 16 years ago

added roar_vio_calls struct

File size: 282 bytes
Line 
1//auth.h:
2
3#ifndef _LIBROARVIO_H_
4#define _LIBROARVIO_H_
5
6#include "libroar.h"
7
8struct roar_vio_calls {
9 ssize_t (*read) (int fd, void *buf, size_t count);
10 ssize_t (*write)(int fd, void *buf, size_t count);
11 off_t   (*lseek)(int fildes, off_t offset, int whence);
12};
13
14#endif
15
16//ll
Note: See TracBrowser for help on using the repository browser.