Changeset 3650:448f40383c9a in roaraudio for libroaresd


Ignore:
Timestamp:
03/15/10 04:35:38 (14 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

implemented dummy functions for functions not implemented in upstream

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libroaresd/esdctl.c

    r3535 r3650  
    278278 
    279279/* retrieve all information from server, and update until unsubsribed or closed */ 
    280 esd_info_t *esd_subscribe_all_info( int esd ); 
     280esd_info_t *esd_subscribe_all_info( int esd ) { 
     281 return NULL; // Not yet implemented in upstream esd 
     282} 
    281283 
    282284/* call to update the info structure with new information, and call callbacks */ 
    283285esd_info_t *esd_update_info( int esd, esd_info_t *info, 
    284                              esd_update_info_callbacks_t *callbacks ); 
    285 esd_info_t *esd_unsubscribe_info( int esd ); 
     286                             esd_update_info_callbacks_t *callbacks ) { 
     287 return NULL; // Not yet implemented in upstream esd 
     288} 
     289 
     290esd_info_t *esd_unsubscribe_info( int esd ) { 
     291 return NULL; // Not yet implemented in upstream esd 
     292} 
    286293 
    287294/* release all memory allocated for the esd info structure */ 
Note: See TracChangeset for help on using the changeset viewer.