wxwidgets/samples/dll
Vadim Zeitlin ee330d73a7 Rebake after the year change
The year is now included in the copyright string used in the makefiles
and so they need to be regenerated every time the year changes (which
happens surprisingly frequently).

It would be better to define a single variable with the year number to
avoid having to do this in the future.
2022-01-14 22:51:24 +01:00
..
dll.bkl Remove all lines containing cvs/svn "$Id$" keyword. 2013-07-26 16:02:46 +00:00
dll_vc8_my_dll.vcproj Use arch suffix consistently in all directories names 2021-08-26 23:12:40 +02:00
dll_vc8_sdk_exe.vcproj Use arch suffix consistently in all directories names 2021-08-26 23:12:40 +02:00
dll_vc8_wx_exe.vcproj Use arch suffix consistently in all directories names 2021-08-26 23:12:40 +02:00
dll_vc9_my_dll.vcproj Use arch suffix consistently in all directories names 2021-08-26 23:12:40 +02:00
dll_vc9_sdk_exe.vcproj Use arch suffix consistently in all directories names 2021-08-26 23:12:40 +02:00
dll_vc9_wx_exe.vcproj Use arch suffix consistently in all directories names 2021-08-26 23:12:40 +02:00
makefile.gcc Link with ws2_32.lib rather than obsolete wsock32.lib 2021-04-18 22:13:45 +02:00
Makefile.in Rebake after the year change 2022-01-14 22:51:24 +01:00
makefile.unx Rebake with bakefile 0.2.12 2020-05-02 17:02:36 +02:00
makefile.vc Use DPI aware manifests for MSVS 2022 too 2021-12-18 13:22:59 +01:00
my_dll.cpp Remove BCC-specific hdrstop pragma from everywhere 2020-10-12 21:58:37 +02: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 Fix some build warnings 2018-11-25 21:29:38 +01:00
wx_exe.cpp Remove BCC-specific hdrstop pragma from everywhere 2020-10-12 21:58:37 +02: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).