mek_controlyea there is away to do that but u must first know the function and paramters of dll file so if any one could explain these things it will be easy to interface with labview
Functions and parameters can be found in the C++ code.
These are from the C# code:
[DllImport("mpusbapi.dll")]
static extern int _MPUSBGetDeviceCount(string pVID_PID);
[DllImport("mpusbapi.dll")]
static extern int _MPUSBOpen(int iInstance, string pVID_PID, string pEP, int dwDir, int dwReserved);
[DllImport("mpusbapi.dll")]
static extern int _MPUSBRead(int iHandle, byte[] pData, int dwLen, ref int pLength, int dwMilliseconds);
[DllImport("mpusbapi.dll")]
static extern int _MPUSBWrite(int iHandle, byte[] pData, int dwLen, ref int pLength, int dwMilliseconds);
[DllImport("mpusbapi.dll")]
static extern int _MPUSBReadInt(int iHandle, byte[] pData, int dwLen, ref int pLength, int dwMilliseconds);
[DllImport("mpusbapi.dll")]
static extern Boolean _MPUSBClose(int iHandle);