]> git.saurik.com Git - wxWidgets.git/commitdiff
Emphasize that wxUSE_DYNLIB_CLASS shouldn't be disabled in wxMSW.
authorVadim Zeitlin <vadim@wxwidgets.org>
Tue, 16 Nov 2010 22:38:44 +0000 (22:38 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Tue, 16 Nov 2010 22:38:44 +0000 (22:38 +0000)
Mention in the setup.h comment that wxDynamicLibrary is used in a lot of
places internally and disabling it can result in a loss of a lot of important
functionality.

See #12664.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@66174 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/msw/setup0.h

index 6eb47ced8f525f689b57c75c9bc01e737299654f..de0741498c730f7e312ce903bd350228a09fb699 100644 (file)
 #define wxUSE_DIALUP_MANAGER   1
 
 // Compile in classes for run-time DLL loading and function calling.
 #define wxUSE_DIALUP_MANAGER   1
 
 // Compile in classes for run-time DLL loading and function calling.
-// Required by wxUSE_DIALUP_MANAGER.
-//
-// This setting is for Win32 only
+// Required by wxUSE_DIALUP_MANAGER and used by many other wxMSW classes so
+// disabling it can result in a loss of a lot of functionality, don't do it
+// unless you really know what you are doing.
 //
 // Default is 1.
 //
 //
 // Default is 1.
 //
-// Recommended setting: 1
+// Recommended setting: 1 (you should never disable this for wxMSW).
 #define wxUSE_DYNLIB_CLASS    1
 
 // experimental, don't use for now
 #define wxUSE_DYNLIB_CLASS    1
 
 // experimental, don't use for now