Changeset 3298:ef0b3c01be23 in roaraudio


Ignore:
Timestamp:
02/02/10 20:20:19 (14 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

start of roar_dl_open()

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libroar/roardl.c

    r3297 r3298  
    4848 
    4949struct roar_dl_lhandle * roar_dl_open(const char * filename, int flags, int ra_init) { 
    50  return NULL; 
     50 struct roar_dl_lhandle * ret = NULL; 
     51 
     52 if ( ret == NULL ) 
     53  return NULL; 
     54 
     55 if ( ra_init ) { 
     56  roar_dl_ra_init(ret, NULL); 
     57 } 
     58 
     59 return ret; 
    5160} 
    5261 
Note: See TracChangeset for help on using the changeset viewer.