Setting Library path for win32 console applications

后端 未结 4 1782
梦如初夏
梦如初夏 2021-01-03 10:55

I am getting \"dll not found:restarting the application may fix the problem\" error when i try to execute a simple \"HelloWorld\" win32 console application. I know the locat

相关标签:
4条回答
  • 2021-01-03 11:24

    From: http://msdn.microsoft.com/en-us/library/7d83bc18.aspx

    With both implicit and explicit linking, Windows first searches for "known DLLs", such as Kernel32.dll and User32.dll. Windows then searches for the DLLs in the following sequence:

    1. The directory where the executable module for the current process is located.

    2. The current directory.

    3. The Windows system directory. The GetSystemDirectory function retrieves the path of this directory.

    4. The Windows directory. The GetWindowsDirectory function retrieves the path of this directory.

    5. The directories listed in the PATH environment variable.

    0 讨论(0)
  • 2021-01-03 11:26

    To manually, permanently add your path to Windows PATH (permanently = until you remove it), right click My Computer>Properties>Advanced>Environment Variables>System Variables>Path>Edit>Variable Value, add a semicolon (which means "in addition to all before") and paste the full path of your dll.

    Windows will search the path every time it can't find something in the current directory.

    0 讨论(0)
  • 2021-01-03 11:27

    The documentation for LoadLibraryEx has some discussion on how Windows searches for your dll. You might try using the LOAD_WITH_ALTERED_SEARCH_PATH flag if you can construct a full path to your DLL or use the SetDllDirectory function to add a directory to the search path.

    0 讨论(0)
  • 2021-01-03 11:42

    DLL loading happens deep in the plumbing of windows.

    If the DLL is not found in the same directory as the application, the PATH is automatically scanned in order to find the directory.

    So, the simplest answer to your problem is to add the directory containing the DLL to your PATH. Depending on when the DLL needs to be loaded by your code, you may be able to (temporarily) modify the PATH from inside your "HelloWorld" application.

    0 讨论(0)
提交回复
热议问题