Device discovery: LoadImageFromAccessPathW

In the device discovery API there’s a method called LoadImageFromAccessPathW documented. However, this method seems to be missing from the iCVCDriver header file. Is this method available?

Hi @Tomes!

Actually, the LoadImageFromAccessPathW shouldn’t even appear in the documentation - thanks a lot for pointing this out! LoadImageFromAccessPathW will be called by the CVCImg.dll function LoadImageFile (and LoadImageFileW) when passing an access path as the ‘file name’. In principle, it would of course be possible to call it directly with the signature indicated in the documentation, but we wanted LoadImageFile to continue to be the only location that actually loads images and opens devices and I’d recommend passing the access token to LoadImageFile.

Aha, I had a feeling it would be something like this. :slight_smile:
Thanks for the information.