delegate = pointer to function?

  • Thread starter Thread starter Ken Kast
  • Start date Start date
K

Ken Kast

I've got an externally-defined method in a dll. The .h files for the dll
has something like

typedef int func (...);

int f (func* x);

Is this the right conversion:

Public Delegate func(...) as Integer
Declare Function f Lib "dll" (ByVal x as func) as Integer

Ken
 
Back
Top