Ejemplo n.º 1
0
NPError NPN_GetURL(NPP instance, const char *url, const char *target)
{
  NPError rv = CallNPN_GetURLProc(NPNFuncs.geturl, instance, url, target);
  if(rv!=0)
	  abort();
  return rv;
}
Ejemplo n.º 2
0
NPError NPN_GetURL(NPP instance, const char* url,
                             const char* target)
{
	return CallNPN_GetURLProc(gNPNFuncs.geturl, instance, url, target);
}
void
plugin_get_url (NPP instance, const char *url, const char *target)
{
  CallNPN_GetURLProc (mozilla_funcs.geturl, instance, url, target);
}
Ejemplo n.º 4
0
NPError
NPN_GetURL(NPP instance, const char* url, const char* window)
{
    return CallNPN_GetURLProc(gNetscapeFuncs.geturl, instance, url, window);
}