lrc_save_dword

Parameterization ("save") Functions

Saves a dword integer value to a string parameter.

int lrc_save_dword( const char* param_name, DWORD val );
param_nameThe name of the string parameter in which to store the value.
val The value to be saved.

The lrc_save_dword function saves a double word 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

lrc Return Values

Parameterization

You cannot use standard parameterization for any arguments in this function.

Example

This example saves the Boolean value "true" to a string:

VARIANT_BOOL var = lrc_bool("true");
lrc_save_bool("param-name",var);