| 3214 | } |
| 3215 | |
| 3216 | XN_C_API XnStatus xnSetStringProperty(XnNodeHandle hInstance, const XnChar* strName, const XnChar* strValue) |
| 3217 | { |
| 3218 | XN_VALIDATE_INPUT_PTR(hInstance); |
| 3219 | XN_VALIDATE_CHANGES_ALLOWED(hInstance); |
| 3220 | XnProductionNodeInterfaceContainer* pInterface = hInstance->pModuleInstance->pLoaded->pInterface; |
| 3221 | XnModuleNodeHandle hModuleNode = hInstance->pModuleInstance->hNode; |
| 3222 | XN_VALIDATE_FUNC_PTR(pInterface->ProductionNode.SetStringProperty); |
| 3223 | return pInterface->ProductionNode.SetStringProperty(hModuleNode, strName, strValue); |
| 3224 | } |
| 3225 | |
| 3226 | XN_C_API XnStatus xnSetGeneralProperty(XnNodeHandle hInstance, const XnChar* strName, XnUInt32 nBufferSize, const void* pBuffer) |
| 3227 | { |
no test coverage detected