Changeset 589:2187e8d9f212 in roaraudio


Ignore:
Timestamp:
08/19/08 17:23:58 (16 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

added roar_vio_calls struct

File:
1 edited

Legend:

Unmodified
Added
Removed
  • include/libroar/vio.h

    r588 r589  
    66#include "libroar.h" 
    77 
     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 
    814#endif 
    915 
Note: See TracChangeset for help on using the changeset viewer.