| 158 | } |
| 159 | |
| 160 | XN_C_API XnStatus xnProfilingInitFromINI(const XnChar* cpINIFileName, const XnChar* cpSectionName) |
| 161 | { |
| 162 | XnStatus nRetVal = XN_STATUS_OK; |
| 163 | |
| 164 | XnUInt32 nProfilingInterval = 0; |
| 165 | xnOSReadIntFromINI(cpINIFileName, cpSectionName, "ProfilingInterval", &nProfilingInterval); |
| 166 | |
| 167 | nRetVal = xnProfilingInit(nProfilingInterval); |
| 168 | XN_IS_STATUS_OK(nRetVal); |
| 169 | |
| 170 | return XN_STATUS_OK; |
| 171 | } |
| 172 | |
| 173 | XN_C_API XnStatus xnProfilingShutdown() |
| 174 | { |
nothing calls this directly
no test coverage detected