Ejemplo n.º 1
0
void NPN_GetStringIdentifiers(const NPUTF8 **names, int32_t count, NPIdentifier *identifiers)
{
    char msg[1024];
    sprintf(msg, "NPN_GetStringIdentifiers");
    logger->logMessage(msg);

    NPNFuncs.getstringidentifiers(names, count, identifiers);

    sprintf(msg, "--Return.");
    logger->logMessage(msg);
}
Ejemplo n.º 2
0
void NPN_GetStringIdentifiers(const NPUTF8 **names, int32_t nameCount,
                              NPIdentifier *identifiers)
{
  return NPNFuncs.getstringidentifiers(names, nameCount, identifiers);
}