wxWidgets/samples/dll
Vadim Zeitlin b02dd12239 Use /bin/echo for creation of Mac OS X PkgInfo files.
The built-in of /bin/sh doesn't handle "-n" option that we use (at least not
under OS X 10.6), so we were getting "-n APPL????" in the generated files.
Fix this by using /bin/echo which does support this option.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70744 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2012-02-28 22:48:39 +00:00
..
dll_my_dll.dsp Rebake from clean wx tree. 2010-01-04 00:45:45 +00:00
dll_sdk_exe.dsp Rebake from clean wx tree. 2010-01-04 00:45:45 +00:00
dll_vc7_my_dll.vcproj Rebake everything using bakefile 0.2.9. 2011-02-03 15:02:45 +00:00
dll_vc7_sdk_exe.vcproj Rebake everything using bakefile 0.2.9. 2011-02-03 15:02:45 +00:00
dll_vc7_wx_exe.vcproj Rebake everything using bakefile 0.2.9. 2011-02-03 15:02:45 +00:00
dll_vc8_my_dll.vcproj Rebake all project files to reflect MSVC deprecation warnings defines. 2012-02-07 21:38:09 +00:00
dll_vc8_sdk_exe.vcproj Rebake all project files to reflect MSVC deprecation warnings defines. 2012-02-07 21:38:09 +00:00
dll_vc8_wx_exe.vcproj Rebake all project files to reflect MSVC deprecation warnings defines. 2012-02-07 21:38:09 +00:00
dll_vc9_my_dll.vcproj Rebake all project files to reflect MSVC deprecation warnings defines. 2012-02-07 21:38:09 +00:00
dll_vc9_sdk_exe.vcproj Rebake all project files to reflect MSVC deprecation warnings defines. 2012-02-07 21:38:09 +00:00
dll_vc9_wx_exe.vcproj Rebake all project files to reflect MSVC deprecation warnings defines. 2012-02-07 21:38:09 +00:00
dll_wx_exe.dsp Rebake from clean wx tree. 2010-01-04 00:45:45 +00:00
dll.bkl Explicitly link the SDK application example with user32.lib. 2009-12-09 13:31:46 +00:00
makefile.bcc Always link with expat in monolithic build. 2011-12-25 13:28:01 +00:00
makefile.gcc Always link with expat in monolithic build. 2011-12-25 13:28:01 +00:00
Makefile.in Use /bin/echo for creation of Mac OS X PkgInfo files. 2012-02-28 22:48:39 +00:00
makefile.unx Remove wxMGL port. 2012-01-15 14:46:41 +00:00
makefile.vc Avoid CRT deprecation warnings for MSVC build using makefiles too. 2012-02-07 21:38:31 +00:00
makefile.wat Always link with expat in monolithic build. 2011-12-25 13:28:01 +00:00
my_dll.cpp Move wxThreadEvent into wxBase. 2011-06-28 17:24:37 +00:00
my_dll.h Use __declspec(dllexport) instead of WXEXPORT in dll sample header. 2009-12-07 16:27:14 +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 Add a very simple example of a Win32 application using wx DLL. 2009-12-07 16:27:23 +00:00
wx_exe.cpp Check in samples/dll for WXUSINGDLL. 2010-04-30 16:46:22 +00: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).