| 489 | } |
| 490 | |
| 491 | static XnBool xnVersionGetNext(XnChar* strCurrent, XnChar** pstrNext) |
| 492 | { |
| 493 | XnChar* strPoint = strchr(strCurrent, '.'); |
| 494 | if (strPoint == NULL) |
| 495 | { |
| 496 | return FALSE; |
| 497 | } |
| 498 | |
| 499 | *strPoint = '\0'; |
| 500 | *pstrNext = strPoint + 1; |
| 501 | |
| 502 | return TRUE; |
| 503 | } |
| 504 | |
| 505 | XnBool xnReadVersionFromString(const XnChar* strVersion, XnVersion* pVersion) |
| 506 | { |
no outgoing calls
no test coverage detected