Squeak
  QotD    "To be or not to be" – Shakespeare
View this PageEdit this PageUploads to this PageHistory of this PageTop of the SwikiRecent ChangesSearch the SwikiHelp Guide
MobVM 'ioGetPluginProxy'
Last updated at 12:22 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 ;
}