Changeset 2353:c085b03ad123 in roaraudio


Ignore:
Timestamp:
08/14/09 20:12:37 (15 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

added prototypes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libroarsndio/midi.c

    r2352 r2353  
    3434#include "libroarsndio.h" 
    3535 
     36struct mio_hdl * mio_open   (const char * name, unsigned mode, int nbio_flag); 
     37void             mio_close  (struct mio_hdl * hdl); 
     38size_t           mio_write  (struct mio_hdl * hdl, const void * addr, size_t nbytes); 
     39size_t           mio_read   (struct mio_hdl * hdl, void * addr, size_t nbytes); 
     40int              mio_nfds   (struct mio_hdl * hdl); 
     41int              mio_pollfd (struct mio_hdl * hdl, struct pollfd * pfd, int events); 
     42int              mio_revents(struct mio_hdl * hdl, struct pollfd * pfd); 
     43int              mio_eof    (struct mio_hdl * hdl); 
     44 
    3645//ll 
Note: See TracChangeset for help on using the changeset viewer.