CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Aug 1999
    Location
    US, Florida
    Posts
    817

    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....


  2. #2
    Join Date
    Apr 1999
    Location
    Netherlands
    Posts
    181

    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 :-)

  3. #3
    Join Date
    Dec 1999
    Location
    Slovakia
    Posts
    26

    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
  •  





Click Here to Expand Forum to Full Width

Featured