I encountered the same problem and I managed to fix it. The core of the problem is that the Handle is supposed to be 64-bit integer, but the LabView code uses 32-bits. In order to fix it you need to change each VI at three places:
1. at input labeled Handle - change representation to I64
2. Handle Out - change representation to I64
3. in the Call Library Function Node->Configure->Parameters->Handle change Data type to Signed 64-bit integer.
possibly you need to check the code if the 64-bit integer is not converted to 32-bits.