Search completed in 0.83 seconds.
11 results for "NPN_Write":
NPN_Write - Archive of obsolete content
ArchivePluginsReferenceNPN Write
syntax #include <npapi.h> int32 npn_write(npp instance, npstream* stream, int32 len, void* buf); parameters the function has the following parameters: instance pointer to the current plug-in instance.
... description npn_write() delivers a buffer from the stream to the instance.
...see "example of sending a stream" for an example that includes npn_write().
...*/ err = npn_write(instance, stream, mylength, mydata); /* delete the stream.
Streams - Plugins
PluginsGuideStreams
note: if you want to be sure that the npn_*stream functions are called in the order you want and behave the way you expect, combine npn_newstream, npn_write, and npn_destroy_stream in the same callback.
...the plug-in calls the methods npn_newstream, npn_write, and npn_destroystream to create a stream, push data into it, and delete it.
... the plug-in can use this stream object in subsequent npn_write calls to the browser.
...And 6 more matches
Index - Archive of obsolete content
ArchiveIndex
3674 npn_write api, gecko, npapi, plugins, reference pushes data into a stream produced by the plug-in and consumed by the browser.
Index of archived content - Archive of obsolete content
ArchiveIndex of archived content
eleaseobject npn_releasevariantvalue npn_reloadplugins npn_removeproperty npn_requestread npn_retainobject npn_setexception npn_setproperty npn_setvalue npn_setvalueforurl npn_status npn_utf8fromidentifier npn_useragent npn_version npn_write npobject npp nppvariable npp_destroy npp_destroystream npp_getvalue npp_handleevent npp_new npp_newstream npp_print npp_setvalue npp_setwindow npp_streamasfile npp_urlnotify npp_write npp_writeready ...
Browser-side plug-in API - Archive of obsolete content
ArchivePluginsReferenceBrowser-side
ticationinfo npn_geturl npn_geturlnotify npn_getvalue npn_getvalueforurl npn_invalidaterect npn_invalidateregion npn_memalloc npn_memflush npn_memfree npn_newstream npn_pluginthreadasynccall npn_poppopupsenabledstate npn_posturl npn_posturlnotify npn_pushpopupsenabledstate npn_reloadplugins npn_requestread npn_setvalue npn_setvalueforurl npn_status npn_useragent npn_version npn_write ...
NPN NewStream - Archive of obsolete content
ArchivePluginsReferenceNPN NewStream
the plug-in can use this object in subsequent calls to npn_write to write data into the stream.
NPStream - Archive of obsolete content
ArchivePluginsReferenceNPStream
the plug-in must pass a pointer to the npstream to all api calls that operate on the stream, such as npn_write and npn_destroystream.
NPAPI plugin reference - Archive of obsolete content
ArchivePluginsReference
npn_write pushes data into a stream produced by the plug-in and consumed by the browser.
Browser Side Plug-in API - Plugins
PluginsGuideBrowser Side Plug-in API
npn_write pushes data into a stream produced by the plug-in and consumed by the browser.
Plug-in Basics - Plugins
PluginsGuidePlug-in Basics
the names of all the browser functions in the api begin with npn_, for example, npn_write.
Gecko Plugin API Reference - Plugins
PluginsGuide
npn_write pushes data into a stream produced by the plug-in and consumed by the browser.