- Installation
- Administration
- Programmer's Guide
- Grammars
- MRCP Server
- FAQs
Sets various properties for a port or the entire client.
hport
Which port to apply the property to.
propertyname
Which property to modify. See Speech Port Properties for list of properties.
valuetype
The value type of the property being set. Legal values are:
PROP_EX_VALUE_TYPE_INT
PROP_EX_VALUE_TYPE_INT_PTR
PROP_EX_VALUE_TYPE_STRING
PROP_EX_VALUE_TYPE_FLOAT_PTR
Each property has a set of legal set of value types. See Speech Port Properties for value types available for each property.
pvalue
A pointer to the new value for propertyname. pvalue will be reinterpreted according to the value type provided.
target
The portion of the API that this property is set for. Legal values are:
PROP_EX_TARGET_PORT -- pvalue affects an entire speech port object
PROP_EX_TARGET_CLIENT -- pvalue is global, and affects all ports on the client.
LV_SUCCESS
No errors. Property was set to specified value
LV_INVALID_HPORT
The port is not valid (either CreateClient has not been called or DestroyClient has been called prior to this call).
LV_INVALID_PROPERTY_VALUE
The value is invalid for the designated property (e.g. out of range).
LV_INVALID_PROPERTY_TARGET
The property cannot be set for the specified target.
LV_INVALID_PROPERTY_VALUE_TYPE
The property's type is incompatible with the declared type.
LV_INVALID_PROPERTY
The property does not exist.
LV_EXCEPTION
An exception occured while processing the request.
In 10.2 and prior, due to a bug, setting PROP_EX_BUILTIN_GRAMMAR_LANGUAGE to PROP_EX_TARGET_CLIENT returns 0 if pvalue is NULL and 1 for success. This has been fixed for the next release.
The targets PROP_EX_TARGET_CHANNEL and PROP_EX_TARGET_GRAMMAR are deprecated