Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C / C++ / MFC
  4. dll error

dll error

Scheduled Pinned Locked Moved C / C++ / MFC
helpdebuggingannouncement
5 Posts 5 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • T Offline
    T Offline
    tom groezer
    wrote on last edited by
    #1

    I'm starting a service that is dependent on a dll. On doing so I get the below error The procedure entry point XXXX could not be located in the dynamic link library LLLL.dll The service and other related binaries are the release binaries while the dll that is copied is a debug one. I have also copied all the debug dependent dlls in the folder without avail. Should the dll be also release to solve this problem.

    C I M 3 Replies Last reply
    0
    • T tom groezer

      I'm starting a service that is dependent on a dll. On doing so I get the below error The procedure entry point XXXX could not be located in the dynamic link library LLLL.dll The service and other related binaries are the release binaries while the dll that is copied is a debug one. I have also copied all the debug dependent dlls in the folder without avail. Should the dll be also release to solve this problem.

      C Offline
      C Offline
      Chris Losinger
      wrote on last edited by
      #2

      the only way a release build will fix it is if the release build exports different functions than the debug build does. that would be unusual, though not impossible. but, i'd look at the DLL and see if it's actually exporting the missing function or not, first.

      image processing toolkits | batch image processing

      1 Reply Last reply
      0
      • T tom groezer

        I'm starting a service that is dependent on a dll. On doing so I get the below error The procedure entry point XXXX could not be located in the dynamic link library LLLL.dll The service and other related binaries are the release binaries while the dll that is copied is a debug one. I have also copied all the debug dependent dlls in the folder without avail. Should the dll be also release to solve this problem.

        I Offline
        I Offline
        Iain Clarke Warrior Programmer
        wrote on last edited by
        #3

        Visual C 6 comes with a handy program called depends.exe. Use it and look at your executable, and it will look at dlls it depends on, and give you nice red exclamation makrs if there are problems. I'd be shocked if later versions didn't come with an equivalent tool. I'd be surprised if they didn't come with the *same* tool. It works rather well. Iain.

        L 1 Reply Last reply
        0
        • T tom groezer

          I'm starting a service that is dependent on a dll. On doing so I get the below error The procedure entry point XXXX could not be located in the dynamic link library LLLL.dll The service and other related binaries are the release binaries while the dll that is copied is a debug one. I have also copied all the debug dependent dlls in the folder without avail. Should the dll be also release to solve this problem.

          M Offline
          M Offline
          Mark Salsbery
          wrote on last edited by
          #4

          If your DLL is using the debug version(s) of MFC and/or the CRT while the other modules use the release version(s), you may have a problem there as well. Mark

          Mark Salsbery Microsoft MVP - Visual C++ :java:

          1 Reply Last reply
          0
          • I Iain Clarke Warrior Programmer

            Visual C 6 comes with a handy program called depends.exe. Use it and look at your executable, and it will look at dlls it depends on, and give you nice red exclamation makrs if there are problems. I'd be shocked if later versions didn't come with an equivalent tool. I'd be surprised if they didn't come with the *same* tool. It works rather well. Iain.

            L Offline
            L Offline
            led mike
            wrote on last edited by
            #5

            Iain Clarke wrote:

            I'd be shocked if later versions didn't come with an equivalent tool.

            Through 2005 it does. Although there is no Start menu entry for it and it's buried in folder structure under Program Files so using a Search is about the only way to find it. :-D

            led mike

            1 Reply Last reply
            0
            Reply
            • Reply as topic
            Log in to reply
            • Oldest to Newest
            • Newest to Oldest
            • Most Votes


            • Login

            • Don't have an account? Register

            • Login or register to search.
            • First post
              Last post
            0
            • Categories
            • Recent
            • Tags
            • Popular
            • World
            • Users
            • Groups