Changeset 5389:8a35a90b976f in roaraudio


Ignore:
Timestamp:
01/17/12 12:56:33 (12 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

disable some not-yet-ready-for-release stuff

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • include/libroar/plugincontainer.h

    r5381 r5389  
    4141struct roar_plugincontainer; 
    4242 
     43#if 0 
    4344struct roar_plugincontainer * roar_plugincontainer_new(struct roar_dl_librarypara * default_para); 
     45#endif 
    4446struct roar_plugincontainer * roar_plugincontainer_new_simple(const char * appname, const char * abiversion); 
    4547 
     
    5456// plugin loading and unloading: 
    5557int roar_plugincontainer_load(struct roar_plugincontainer * cont, const char * name, struct roar_dl_librarypara * para); 
     58#if 0 
    5659int roar_plugincontainer_unload(struct roar_plugincontainer * cont, const char * name); 
    5760int roar_plugincontainer_unload_lhandle(struct roar_plugincontainer * cont, struct roar_dl_lhandle * lhandle); 
     61#endif 
    5862 
    5963// appsched: 
  • libroar/plugincontainer.c

    r5381 r5389  
    5858} 
    5959 
    60 struct roar_plugincontainer * roar_plugincontainer_new(struct roar_dl_librarypara * default_para) { 
     60static struct roar_plugincontainer * roar_plugincontainer_new(struct roar_dl_librarypara * default_para) { 
    6161 struct roar_plugincontainer * ret = _new_init(); 
    6262 int err; 
     
    190190} 
    191191 
     192#if 0 
    192193int roar_plugincontainer_unload(struct roar_plugincontainer * cont, const char * name) { 
    193194 // get b name, then call roar_plugincontainer_unload_lhandle(). 
     
    226227 return -1; 
    227228} 
     229#endif 
    228230 
    229231// appsched: 
Note: See TracChangeset for help on using the changeset viewer.