lrc_save_BYTE

Parameterization ("save") Functions

Saves a BYTE value to a string parameter.

int lrc_save_BYTE( const char* param_name, BYTE val );
int lrc_save_BYTE_by_ref( const char* param_name, BYTE *val );
param_name The parameter to store the byte value.
valThe value to be saved.

The lrc_save_BYTE function saves a byte to a string parameter.

The lrc_save_BYTE_by_reffunction saves the byte pointed to by "val" to a string parameter.

VuGen generates these functions as commented-out calls. 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);