wxWidgets/samples/dll
Vadim Zeitlin 61beda2a9e Update version to 3.2.4
Run ./misc/scripts/inc_release, bakefile and autoconf.
2023-10-10 16:02:59 +02:00
..
dll_vc8_my_dll.vcproj Update version to 3.2.0 and rebake and rerun autoconf 2022-06-21 00:54:26 +02:00
dll_vc8_sdk_exe.vcproj Update to bakefile 0.2.13 to fix DLL directory creation 2022-04-23 23:11:31 +02:00
dll_vc8_wx_exe.vcproj Update version to 3.2.0 and rebake and rerun autoconf 2022-06-21 00:54:26 +02:00
dll_vc9_my_dll.vcproj Update version to 3.2.0 and rebake and rerun autoconf 2022-06-21 00:54:26 +02:00
dll_vc9_sdk_exe.vcproj Update to bakefile 0.2.13 to fix DLL directory creation 2022-04-23 23:11:31 +02:00
dll_vc9_wx_exe.vcproj Update version to 3.2.0 and rebake and rerun autoconf 2022-06-21 00:54:26 +02:00
dll.bkl
makefile.gcc Update version to 3.2.0 and rebake and rerun autoconf 2022-06-21 00:54:26 +02:00
Makefile.in Update version to 3.2.4 2023-10-10 16:02:59 +02:00
makefile.unx Update to bakefile 0.2.13 to fix DLL directory creation 2022-04-23 23:11:31 +02:00
makefile.vc Update version to 3.2.0 and rebake and rerun autoconf 2022-06-21 00:54:26 +02:00
my_dll.cpp Remove BCC-specific hdrstop pragma from everywhere 2020-10-12 21:58:37 +02:00
my_dll.h
README.txt
sdk_exe.cpp
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).