Changeset 5278:b3e0dd3f3141 in roaraudio for roard/container_framework.c


Ignore:
Timestamp:
11/21/11 00:42:20 (12 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

last parts of merging _nonblock into _ctl and fixed sizeof(cmd) of _ctls

File:
1 edited

Legend:

Unmodified
Added
Removed
  • roard/container_framework.c

    r5276 r5278  
    197197} 
    198198 
    199 off_t   cont_fw_lseek   (struct roar_vio_calls * vio, off_t offset, int whence); 
     199roar_off_t   cont_fw_lseek   (struct roar_vio_calls * vio, roar_off_t offset, int whence); 
    200200 
    201201int     cont_fw_sync    (struct roar_vio_calls * vio) { 
     
    233233} 
    234234 
    235 int     cont_fw_ctl     (struct roar_vio_calls * vio, int cmd, void * data); 
     235int     cont_fw_ctl     (struct roar_vio_calls * vio, roar_vio_ctl_t cmd, void * data); 
    236236 
    237237// VIO Parent: 
     
    260260} 
    261261 
    262 off_t   cont_pvio_lseek   (struct roar_vio_calls * vio, off_t offset, int whence) { 
     262roar_off_t   cont_pvio_lseek   (struct roar_vio_calls * vio, roar_off_t offset, int whence) { 
    263263 return roar_vio_lseek(&(((struct cont_fw_parent_inst*)(vio->inst))->stream.stream->vio), offset, whence); 
    264264} 
     
    268268} 
    269269 
    270 int     cont_pvio_ctl     (struct roar_vio_calls * vio, int cmd, void * data) { 
     270int     cont_pvio_ctl     (struct roar_vio_calls * vio, roar_vio_ctl_t cmd, void * data) { 
    271271 return roar_vio_ctl(&(((struct cont_fw_parent_inst*)(vio->inst))->stream.stream->vio), cmd, data); 
    272272} 
Note: See TracChangeset for help on using the changeset viewer.