#include “BlackIceDEVMODE.h”
BOOL GetOCRDLLPath(BlackIceDEVMODE* pBlackIceDevMode, LPTSTR pValue, DWORD* pSize)
Description
Returns the path to the 32-bit or 64-bit OCR dll, depending on the current platform. The 32-bit BlackIceDEVMODE.dll will return the path to the 32-bit BiOCR.dll, the 64-bit BlackIceDEVMODE.dll will return the path to the 64-bit BiOCRx.dll.
If pValue is NULL and pSize points to a 0 value, the required buffer size will be returned in *pSize.
Parameters
BlackIceDEVMODE* pDevMode - pointer to the BlackIceDEVMODE structure.
LPTSTR pValue - buffer for the path
DWORD* pSize - pointer to variable that contains the length of pValue in bytes.
Return value
TRUE on success, FALSE otherwise.
Programming Notes
None
Code Example
None