I wrote a group of functions in C++ and want to have access to them from my VB6 program.
Here's what I know:
* The functions along with their parameters are visible and work using the C++ Test container.

* The functions along with their parameters are visible from the VB6 Object
Here is how one Method from the Class AUTOACTX appears in the object Browser:
``````````
Function ADAcquireBegin(Online As Integer, FileName As String) As Long
Member of AUTOACTXLib.AutoACTX
`````````````

Question:
What declarations do I need to make in Visual Basic before I can use the function in Visual Basic?

Any help is appreciated.

Bob
[email protected]