c++ Programming Glossary: penum
How to get a list of video capture devices (web cameras) on windows? (C++) http://stackoverflow.com/questions/4286223/how-to-get-a-list-of-video-capture-devices-web-cameras-on-windows-c HRESULT EnumerateDevices REFGUID category IEnumMoniker ppEnum Create the System Device Enumerator. ICreateDevEnum pDevEnum.. the category. hr pDevEnum CreateClassEnumerator category ppEnum 0 if hr S_FALSE hr VFW_E_NOT_FOUND The category is empty. Treat.. return hr void DisplayDeviceInformation IEnumMoniker pEnum IMoniker pMoniker NULL while pEnum Next 1 pMoniker NULL S_OK..
|