So I have a COM library that uses 3 parameters which take in Uints. These ints are in C++ so it should be an unsigned Long in VB 6.0 but there is no ULONG in VB 6.0. How do I call the function and still get it to compile?
example code
myCOMObject.WaitForData(ID, Size, DataString, Waitresponse, 1)
ID, Size, and Wait Response are all supposed to be ULONGs. What should I use instead?
|