Hello,
I have a serious issue with stoping and destroying camera in VS2010 (VC++, windows7 x64, compiled for WIN32). For details look below. Thank you for your advices.
CODE:
PCHAR serial = GetNUIDeviceSerial(0);
CLNUICamera cam = CreateNUICamera(serial);
StartNUICamera(cam);
Sleep(2000);
StopNUICamera(cam);
DestroyNUICamera(cam);
ERROR:
Im receiving following error:
[Frames below may be incorrect and/or missing, no symbols loaded for ntdll.dll]
NOTE:
In .NET variant (the same CLNUIDevice.dll is used) is everything working fine. The kinect is present, activated I can grab the frames, but I can not stop it (under VC++).