lrc_save_uint
| Parameterization ("save") Functions |
Saves an unsigned integer value to a string parameter.
int lrc_save_uint( const char* param_name, unsigned int val );
int lrc_save_unsigned_int( const char* param_name, unsigned int val );
int lrc_save_uint_by_ref( const char* param_name, unsigned int *val );
| param_name | The name of the string parameter in which to store the value. |
| val | The value to be saved. |
The lrc_save_uint function saves an unsigned integer to a string parameter.
The lrc_save_uint_by_ref function saves the unsigned integer value 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
Parameterization
You cannot use standard parameterization for any arguments in this function.
Example
This example saves the value 3,650,000,000 unsigned integer to a parameter:
unsigned int iVal;
iVal = lrc_uint("3650000000");
lrc_save_uint("integer-param",iVal );
Action.c(5): Notify: Saving Parameter "integer-param = 3650000000"

