Browse
 
Tools
Rss Categories

LVInterpretation_Create

Reference Number: AA-00888 Views: 7267 0 Rating/ Voters

Returns an empty Interpretation object.

Functions

  • H_SI LVInterpretation_Create(void)

Parameters

None.

Return Values

NULL

Always returns NULL

Remarks

Use of this function is not recommended, since it always returns a NULL pointer. Instead use LV_SRE_CreateInterpretation  to get an interpretation object after a decode and assign it directly to a H_SI object.

Example


// Open the port and do a decode
// ...
// When the decode is finished, grab an interpretation object

H_SI SemanticInterpretation = LVInterpretation_Create();
SemanticInterpretation = LV_SRE_CreateInterpretation(hport, voicechannel,
index);

// Start using the interpretation data.
// ...
// Remember to release the element


LVInterpretation_Release(SemanticInterpretation);

See Also