wxWidgets/samples/dll
Vadim Zeitlin 59bd1178f1 Fix build with RTTI turned off using MSVC makefiles
Rebake these makefiles using fixed version of bakefile (pre-0.3.0).

See https://github.com/vslavik/bakefile/pull/85

Closes #17767.
2017-01-04 12:01:14 +01:00
..
dll_vc7_my_dll.vcproj Link with shlwapi.lib and version.lib under MSW 2015-10-07 18:56:33 +02:00
dll_vc7_sdk_exe.vcproj Convert really all CRLF files to use LF in the git repository. 2015-03-19 21:09:08 +01:00
dll_vc7_wx_exe.vcproj Link with shlwapi.lib and version.lib under MSW 2015-10-07 18:56:33 +02:00
dll_vc8_my_dll.vcproj Link with shlwapi.lib and version.lib under MSW 2015-10-07 18:56:33 +02:00
dll_vc8_sdk_exe.vcproj Convert really all CRLF files to use LF in the git repository. 2015-03-19 21:09:08 +01:00
dll_vc8_wx_exe.vcproj Link with shlwapi.lib and version.lib under MSW 2015-10-07 18:56:33 +02:00
dll_vc9_my_dll.vcproj Link with shlwapi.lib and version.lib under MSW 2015-10-07 18:56:33 +02:00
dll_vc9_sdk_exe.vcproj Convert really all CRLF files to use LF in the git repository. 2015-03-19 21:09:08 +01:00
dll_vc9_wx_exe.vcproj Link with shlwapi.lib and version.lib under MSW 2015-10-07 18:56:33 +02:00
dll.bkl Remove all lines containing cvs/svn "$Id$" keyword. 2013-07-26 16:02:46 +00:00
makefile.bcc Convert really all CRLF files to use LF in the git repository. 2015-03-19 21:09:08 +01:00
makefile.gcc Link with oleacc.lib when using MSW gcc makefiles 2017-01-04 11:50:18 +01:00
Makefile.in Update version to 3.1.1 2016-03-03 23:23:06 +01:00
makefile.unx Remove wxMGL port. 2012-01-15 14:46:41 +00:00
makefile.vc Fix build with RTTI turned off using MSVC makefiles 2017-01-04 12:01:14 +01:00
my_dll.cpp Use wx-prefixed macros throughout the repository. 2015-04-23 22:00:35 +04:00
my_dll.h Remove all lines containing cvs/svn "$Id$" keyword. 2013-07-26 16:02:46 +00:00
README.txt Added samples/dll for showing how to use wxWidgets to implement 2009-12-05 18:54:40 +00:00
sdk_exe.cpp Remove all lines containing cvs/svn "$Id$" keyword. 2013-07-26 16:02:46 +00:00
wx_exe.cpp Use wx-prefixed macros throughout the repository. 2015-04-23 22:00:35 +04:00

This Windows-specific sample demonstrates how to use wxWidgets-based UI from
within a foreign host application that may be written in any toolkit
(including wxWidgets).

For this to work, you have to overcome two obstacles:


(1) wx's event loop in the DLL must not conflict with the host app's loop
(2) if the host app is written in wx, its copy of wx must not conflict
    with the DLL's one


Number (1) is dealt with by running DLL's event loop in a thread of its own.
DLL's wx library will consider this thread to be the "main thread".

The simplest way to solve number (2) is to share the wxWidgets library between
the DLL and the host, in the form of wxWidgets DLLs build. But this requires
both the host and the DLL to be compiled against exactly same wx version,
which is often impractical.

So we do something else here: the DLL is compiled against *static* build of
wx. This way none of its symbols or variables will leak into the host app.
Win32 runtime conflicts are eliminated by using DLL's HINSTANCE instead of
host app's one and by using unique window class names (automatically done
since wx-2.9).