Hi all,
I am trying to access a DLL but am puzzled about how to access the functions within the DLL.
I am able to access DLL's in general using
But i'm not sure how to access this particular DLL's functions due to the following:
a typical function within this DLL would be
int ffdopn( file **fptr, char *filename, int mode, int *status)
The problem is i'm not sure how to access the double pointer **fptr or if its even possible within VB.NET as i know pointers in general are not used within VB.NET
Thanks for the help,
agiltinan
I am trying to access a DLL but am puzzled about how to access the functions within the DLL.
I am able to access DLL's in general using
Declare Function ... Lib ...(ByRef Var1, ...) as Int.
But i'm not sure how to access this particular DLL's functions due to the following:
a typical function within this DLL would be
int ffdopn( file **fptr, char *filename, int mode, int *status)
The problem is i'm not sure how to access the double pointer **fptr or if its even possible within VB.NET as i know pointers in general are not used within VB.NET
Thanks for the help,
agiltinan