lrc_save_BSTR
| Parameterization ("save") Functions |
Saves a BSTR value to a string parameter.
int lrc_save_BSTR( const char* param_name, BSTR val );
| param_name | The name of the string parameter in which to store the value. |
| val | The value to be saved. |
The lrc_save_BSTR function saves a BSTR value to a string parameter.
VuGen generates this function as a commented-out call. To use the parameter, change the recorded param_name argument to a meaningful name and uncomment the call.
Return Values
Parameterization
You cannot use standard parameterization for any arguments in this function.
Example
This example saves a BSTR to a string:
BSTR var = lrc_BSTR("ABRACADABRA");
lrc_save_BSTR("param-name",var);

