G
Guest
I have a Managed C++ class Library wrapper; this DLL will be called from
VB.NET project.
If a function parameter passed by reference, I cannot see this function from
VB.NET. Otherwise, it works great.
void ICCompress(int &iFileSize, int &iKeySize, BOOL &isKEYFRAME)
{
....
}
How can I make it work? Thanks.
VB.NET project.
If a function parameter passed by reference, I cannot see this function from
VB.NET. Otherwise, it works great.
void ICCompress(int &iFileSize, int &iKeySize, BOOL &isKEYFRAME)
{
....
}
How can I make it work? Thanks.