I was able to get a DLL function to work using the following code:
[DllImport("NtDirect.dll")]
public extern static int Connected(int showMessage);
public static int _ATIConnected()
{
int ShwMsg = 0;
return Connected(ShwMsg);
}
The COM interface & sample code didn't work on my PC when I tried using VB6 or .NET

Comment