共用方式為


Windows 用來找出 DLL 的搜尋路徑

使用明確和隱含連結,Windows 首先會搜尋「已知的 DLL」,例如 Kernel32.dll 和 User32.dll。 接著 Windows 會依照下列順序搜尋 DLL:

  1. 目前處理序之可執行模組的所在目錄。

  2. 目前的目錄。

  3. Windows 系統目錄。 GetSystemDirectory 函式擷取這個目錄的路徑。

  4. Windows 目錄。 GetWindowsDirectory 函式擷取這個目錄的路徑。

  5. 列於 PATH 環境變數的目錄。

    注意事項注意事項

    不會用到 LIBPATH 環境變數。

您想要怎麼做?

請參閱

概念

在 Visual C++ Dll