ItalaApiC  1.3.3
Functions

Functions

ITALA_API_C ItalaError NODE_StringSetValue (H_NODE hNode, const char *pValue)
 
ITALA_API_C ItalaError NODE_StringGetValue (H_NODE hNode, char *value, size_t *pSize)
 
ITALA_API_C ItalaError NODE_StringGetMaxLength (H_NODE hNode, int64_t *pMaxLength)
 

Detailed Description

All the methods related to nodes managed by GenApi.

Function Documentation

◆ NODE_StringSetValue()

ITALA_API_C ItalaError NODE_StringSetValue ( H_NODE  hNode,
const char *  pValue 
)

Set the value of the node in a string Node.

Parameters
[in]hNodeHandle to Node instance, should be a string node.
[out]pValueValue to set to the Node.
Returns
ItalaError the error code; return ItalaErrorSuccess (0) if no errors occures.

◆ NODE_StringGetValue()

ITALA_API_C ItalaError NODE_StringGetValue ( H_NODE  hNode,
char *  value,
size_t *  pSize 
)

Get the value of the node in a string Node.

Parameters
[in]hNodeHandle to Node instance, should be a string node.
[out]valueValue of the Node.
[in,out]pSizeMaximum element of the array in input, number of element filled in output.
Returns
ItalaError the error code; return ItalaErrorSuccess (0) if no errors occures.

◆ NODE_StringGetMaxLength()

ITALA_API_C ItalaError NODE_StringGetMaxLength ( H_NODE  hNode,
int64_t *  pMaxLength 
)

Get the string maximum length of a string Node.

Parameters
[in]hNodeHandle to Node instance, should be a string node.
[out]pMaxLengthMaximum length of the Node value.
Returns
ItalaError the error code; return ItalaErrorSuccess (0) if no errors occures.