Results 1 to 3 of 3

Thread: Linking *.lib files

  1. #1

    Linking *.lib files

    Ik have 2 *.lib that I want to link inside my excutable. Does anyone know how? Googled and searched the help but couldn`t find any good information about it :?

  2. #2

    Linking *.lib files

    You need to create DLL code or compile OBJ files, and link those, and even delphi only links BCB / delphi compiled obj files, and not microsoft's format, no idea about freepascal tho.
    This is my game project - Top Down City:
    http://www.pascalgamedevelopment.com...y-Topic-Reboot

    My OpenAL audio wrapper with Intelligent Source Manager to use unlimited:
    http://www.pascalgamedevelopment.com...source+manager

  3. #3

    Linking *.lib files

    speaking of this, I have an opposite problem....have a library in Delphi which is intended to be used also by C(++)....and I cannot generate a .lib file....found implib file from Digital Mars which generates a .lib file out of the compiled .dll, however evidently it is OMF format and not COFF format MS uses....then found some russian tool which was supposed to transform it to COFF format, however MS C++ compiler doesn't want to link with this converted .lib file, saying it has unresolved external references....I guess I'll have to go the LoadLibrary/GetProcAddress way....

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •