Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

NP_GetValue

« Gecko Plugin API Reference « Plug-in Side Plug-in API

Summary

Allows the browser to query the plug-in for information.

Syntax

#include <npapi.h>
 
NPError NP_GetValue(void *instance, 
                    NPPVariable variable, 
                    void *value);

Parameters

The function has the following parameters:

instance
Pointer to the current plug-in instance. instance parameter is NULL because no instance has been created.
variable
Plug-in information the call gets. Values:
  • NPPVpluginNameString: Gets the name of the plug-in
  • NPPVpluginDescriptionString: Gets the description string of the plug-in
value
Plug-in name, returned by the function.

Returns

  • If successful, the function returns NPERR_NO_ERROR.
  • If unsuccessful, the function returns an error code. For possible values, see Error Codes.

Description

None.

See Also

NPP_SetValue

Document Tags and Contributors

Tags: 
 Contributors to this page: teoli, Mgjbot, Nickolay, Pmash
 Last updated by: Mgjbot,