|
-
December 29th, 1999, 03:35 AM
#1
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....
-
December 29th, 1999, 04:34 AM
#2
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 :-)
-
December 29th, 1999, 04:43 AM
#3
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]
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|