X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/5f6475c145b713efc0c3d8b482338438e927b763..eb3e358db83056e64e358360946c61990b8057f5:/src/msw/utilsgui.cpp

diff --git a/src/msw/utilsgui.cpp b/src/msw/utilsgui.cpp
index ee1e45a8f9..d1acea6ad5 100644
--- a/src/msw/utilsgui.cpp
+++ b/src/msw/utilsgui.cpp
@@ -460,6 +460,7 @@ void wxDrawLine(HDC hdc, int x1, int y1, int x2, int y2)
 
 extern bool wxEnableFileNameAutoComplete(HWND hwnd)
 {
+#if wxUSE_DYNLIB_CLASS
     typedef HRESULT (WINAPI *SHAutoComplete_t)(HWND, DWORD);
 
     static SHAutoComplete_t s_pfnSHAutoComplete = NULL;
@@ -494,5 +495,9 @@ extern bool wxEnableFileNameAutoComplete(HWND hwnd)
     }
 
     return true;
+#else
+    wxUnusedVar(hwnd);
+    return false;
+#endif // wxUSE_DYNLIB_CLASS/!wxUSE_DYNLIB_CLASS
 }