vp_int_set
Method call snippet
vp_int_set(instance, attr, value);
Set the value of an integer attribute.
Parameters
These are the parameters that this method requires:
Parameter | Usage |
---|---|
VPInstance instance |
Pointer to the instance this method call is intended for |
vp_int_attribute_t attr |
Attribute to set value of (defined in VP.h) |
int value |
Value to set |
Returns
This method returns a return code integer, which indicates whether the call was successful or errored for any reason:
Return code | Cause |
---|---|
VP_RC_SUCCESS |
Successful call (for methods that have a registered callback, it only means the request has been sent) |
VP_RC_NO_SUCH_ATTRIBUTE |
Invalid attribute |
Behavior
- There is no special behavior for this method
Examples
void change_avatar(VPInstance sdk, int type)
{
vp_int_set(sdk, VP_MY_TYPE, type);
vp_state_change(sdk);
}
See also
vp_int()
vp_int_get()