How to use a DLL

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Ich

    How to use a DLL

    Can anyone tell me how to use a DLL in C++?

    Thanks,

    Ich (JJK)


  • red floyd

    #2
    Re: How to use a DLL

    Ich wrote:
    [color=blue]
    > Can anyone tell me how to use a DLL in C++?
    >
    > Thanks,
    >
    > Ich (JJK)
    >
    >[/color]

    I'm sure they could over on the microsoft newsgroups
    (news://news.microsoft.com/microsoft....io.development for example)

    Comment

    • Rolf Magnus

      #3
      Re: How to use a DLL

      Ich wrote:
      [color=blue]
      > Can anyone tell me how to use a DLL in C++?[/color]

      On which system? With what kind of network? Why would you want to
      directly use the networking hardware on data link level? Embedded
      software? Anyway, that might be better asked in a newsgroup about
      networking.

      Comment

      • Ralf

        #4
        Re: How to use a DLL

        DLL's are OS specific. I think, you should try it in a Windows developer
        newsgroup.

        Ralf

        Seminare zur Softwareentwicklung



        "Ich" <NOSPAM@TO.ME > schrieb im Newsbeitrag
        news:c1365f$hqb $1@news2.solcon .nl...[color=blue]
        > Can anyone tell me how to use a DLL in C++?
        >
        > Thanks,
        >
        > Ich (JJK)[/color]


        Comment

        • james

          #5
          Re: How to use a DLL

          Yes, Your post is at wrong place. But if you are running VC++ or BC++.
          Simplely You #include .h file in your implement file then link .lib then DLL
          will be linked at run time
          "Ich" <NOSPAM@TO.ME > ¦b¶l¥ó news:c1365f$hqb $1@news2.solcon .nl ¤¤¼¶¼g...[color=blue]
          > Can anyone tell me how to use a DLL in C++?
          >
          > Thanks,
          >
          > Ich (JJK)
          >
          >[/color]


          Comment

          • Jon Willeke

            #6
            Re: How to use a DLL

            Ich wrote:[color=blue]
            > Can anyone tell me how to use a DLL in C++?[/color]

            This article contains a decent survey of dynamic linking:

            Dynamic Libraries in C++
            Pete Becker
            <http://anubis.dkuug.dk/jtc1/sc22/wg21/docs/papers/2002/n1418.html>

            The specifics depend on the platform and the compiler. For example,
            these two articles describe the obstacles to sharing DLLs between
            Microsoft and Borland:

            Using Visual C++ DLLs in a C++Builder Project
            <http://www.bcbdev.com/articles/vcdll.htm>

            Creating DLLs in BCB that can be used from Visual C++
            <http://www.bcbdev.com/articles/bcbdll.htm>

            Comment

            • Ich

              #7
              Re: How to use a DLL

              Thanks erverybody

              "Ich" <NOSPAM@TO.ME > schreef in bericht news:c1365f$hqb $1@news2.solcon .nl...[color=blue]
              > Can anyone tell me how to use a DLL in C++?
              >
              > Thanks,
              >
              > Ich (JJK)
              >
              >[/color]


              Comment

              Working...