Changeset 3364:12ef15758cae in roaraudio


Ignore:
Timestamp:
02/08/10 17:01:37 (14 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

added roar_dl_errstr()

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • include/libroar/roardl.h

    r3363 r3364  
    117117int                      roar_dl_ra_init(struct roar_dl_lhandle * lhandle, const char * prefix); 
    118118 
     119char *                   roar_dl_errstr(struct roar_dl_lhandle * lhandle); 
     120 
    119121#endif 
    120122 
  • libroar/roardl.c

    r3361 r3364  
    164164} 
    165165 
     166char *                   roar_dl_errstr(struct roar_dl_lhandle * lhandle) { 
     167#if defined(ROAR_HAVE_LIBDL) 
     168 return dlerror(); 
     169#else 
     170 return NULL; 
     171#endif 
     172} 
     173 
    166174//ll 
Note: See TracChangeset for help on using the changeset viewer.