Hi
First a question. How handle the registration in VB6?
The following doasn't work:
---------------------------------------------------------------------
Private Declare Function xVideo_Register Lib "bassDShow.dll" (email As String, reg As String, ByVal Flags As Long) As Long
test = xVideo_Register("email-blablabla", "serial-blablabla", &H80000000)
test = xVideo_Register(StrConv("email-blablabla", vbUnicode), StrConv("serial-blablabla", vbUnicode), &H80000000)
test = xVideo_Register("email-blablabla", "serial-blablabla", 0)
----Alternative----
Private Declare Function xVideo_Register Lib "bassDShow.dll" (email As long, reg As long, ByVal Flags As Long) As Long
test = xVideo_Register(StrPtr(StrConv("email-blablabla", vbUnicode)), StrPtr(StrConv(""serial-blablabla", vbUnicode)), &H80000000)
test = xVideo_Register(StrPtr(StrConv("email-blablabla", vbUnicode)), StrPtr(StrConv(""serial-blablabla", vbUnicode)), 0)
test = xVideo_Register(StrPtr("email-blablabla"), StrPtr(""serial-blablabla"), &H80000000)
test = xVideo_Register(StrPtr("email-blablabla"), StrPtr(""serial-blablabla"), 0)
---------------------------------------------------------------------
And here a bug I reported month ago, but I will remember about that:
The generated picture from xVideo_ChannelGetBitmap is slided to the right.
Here the original video-frame:
https://rms-systems.homelinux.net/download/Transfer/video.jpgHere is the Bitmap Frame:
https://rms-systems.homelinux.net/download/Transfer/picture.jpgI hope you can see the problem.