Hi,
I'm porting some VB code to VC++. Need help, hope this is simple.
I have a generic file class in VB. It has a function that takes as one of it
param's a object, specifically a class object...
MyClass
MyCallBackFunc()
...
End Function
Call MyFunc( Me)

MyFileClass
MyFunc(obj as Object)
obj.MyCallBackFunc
End Function

Problem: I can't seem to find the proper way to declare the prototypes or
write the proper code for these functions in VC++. Could someone please
help?

Steve Palmer