IltmmCapture::get_CaptureStillDelay Example for C++
// Having an IltmmCapture Interface, pCap:
long lTime;
// Get the still delay time
pCap->get_CaptureStillDelay(&lTime);
// do something with it
If( lTime < 1000 )
{
pCap->put_CaptureStillDelay(1000);
}