links to this page:
PluginProxy Implementation
Swiki Page List
MobVM/SmallSqueak Page Cluster
ioGetPluginProxy
Last updated at 12:12 am UTC on 17 January 2006
From sqNamedPrims.c :
void* ioGetPluginProxy(char *pluginName)
{
ModuleEntry thisEntry ;
thisEntry = findOrLoadModule(pluginName, 0) ;
if(NULL != thisEntry)
return thisEntry->proxy ;
else
return NULL ;
}