|
![]() |
![]() |
version 2003
PA_SetBlobParameter (params; index; blob; blobSize)
Parameter | Type | Description | |
params | PA_PluginParameters | → | Parameters received in PluginMain |
index | short | → | Index of the parameter in params |
blob | void* | → | Pointer to the new BLOB data |
blobSize | long | → | BLOB size in bytes |
Description
The routine
PA_SetBlobParameter
sets the value of the
index
parameter in
params
to
blob
.
Pass a pointer to the data buffer in
blob
and its size in bytes in
blobSize
.
Note that
blob
is duplicated in the parameter, so
blob
still belongs to the plug-in after the call.
The previous data in the parameter is disposed.
See
Create a new plug-in
for a description of parameter accessors.
NOTE
: