source: roaraudio/include/libroar/vio.h @ 591:14183a05ee44

Last change on this file since 591:14183a05ee44 was 591:14183a05ee44, checked in by phi, 16 years ago

added roar_vio_init_calls()

File size: 340 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
14int roar_vio_init_calls (struct roar_vio_calls * calls);
15
16#endif
17
18//ll
Note: See TracBrowser for help on using the repository browser.