Changeset 5288:1cb22eb99e5d in roaraudio for roard/streams.c


Ignore:
Timestamp:
11/22/11 13:19:23 (12 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

updated stream_vio_*() types to match roar_vio_*() types

File:
1 edited

Legend:

Unmodified
Added
Removed
  • roard/streams.c

    r5265 r5288  
    26012601} 
    26022602 
    2603 int     stream_vio_ctl  (int stream, int cmd,   void * data) { 
     2603int     stream_vio_ctl  (int stream, roar_vio_ctl_t cmd,   void * data) { 
    26042604 _CHECK_SID(stream); 
    26052605 
     
    27202720} 
    27212721 
    2722 int     stream_vio_s_ctl  (struct roar_stream_server * stream, int cmd,   void * data) { 
    2723  if ( stream == NULL ) 
    2724   return -1; 
     2722int     stream_vio_s_ctl  (struct roar_stream_server * stream, roar_vio_ctl_t cmd,   void * data) { 
     2723 if ( stream == NULL ) { 
     2724  roar_err_set(ROAR_ERROR_FAULT); 
     2725  return -1; 
     2726 } 
    27252727 
    27262728 return roar_vio_ctl(stream->viop, cmd, data); 
Note: See TracChangeset for help on using the changeset viewer.