I have this DLL and i want to use it in my program, but how do I get APIs from it???
What are exact steps please, I'm not that good with all that API stuff....
Re: I have this DLL and i want to use it in my program, but how do I get APIs from it???
Check documentation that ships with the dll.
It's impossible to find out the function and it's parameters from the dll.
Crazy D @ Work :-)
Re: I have this DLL and i want to use it in my program, but how do I get APIs from it???
Correct VB syntax for calling non-com DLL is like that:
Declare Function GetWindowsDirectory Lib "kernel32" Alias "GetWindowsDirectoryA" (byval lpBuffer as string, byval nSize as Long) as Long
IF you don't have documentaiton for that DLL you
can find basic information regarding your
functions inside DLL if you right-click on DLL
and click QuickView but you still need to know
parameters and so on.
[ufo]