Added samples/dll for showing how to use wxWidgets to implement

a DLL that is used from another application written with a different
toolkit (or different wx version).

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62784 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2009-12-05 18:54:40 +00:00
parent da00cef2d8
commit 61aba4609a
31 changed files with 6080 additions and 66 deletions

View File

@@ -37,7 +37,7 @@ MAKEARGS = LINK_DLL_FLAGS="$(LINK_DLL_FLAGS)" \
### Targets: ###
all: access animate artprov aui calendar caret clipboard collpane combo config console controls dataview dialogs dialup display dnd docview dragimag drawing erase event except exec font grid help htlbox html image internat ipc joytest keyboard layout listctrl mdi mediaplayer menu minimal nativdlg notebook oleauto opengl ownerdrw popup power printing propgrid regtest render ribbon richtext sashtest scroll shaped sockets sound splash splitter statbar stc svg taborder taskbar text thread toolbar treectrl typetest validate vscroll widgets wizard wrapsizer xrc
all: access animate artprov aui calendar caret clipboard collpane combo config console controls dataview dialogs dialup display dll dnd docview dragimag drawing erase event except exec font grid help htlbox html image internat ipc joytest keyboard layout listctrl mdi mediaplayer menu minimal nativdlg notebook oleauto opengl ownerdrw popup power printing propgrid regtest render ribbon richtext sashtest scroll shaped sockets sound splash splitter statbar stc svg taborder taskbar text thread toolbar treectrl typetest validate vscroll widgets wizard wrapsizer xrc
clean:
-if exist .\*.o del .\*.o
@@ -58,6 +58,7 @@ clean:
$(MAKE) -C dialogs -f makefile.gcc $(MAKEARGS) clean
$(MAKE) -C dialup -f makefile.gcc $(MAKEARGS) clean
$(MAKE) -C display -f makefile.gcc $(MAKEARGS) clean
$(MAKE) -C dll -f makefile.gcc $(MAKEARGS) clean
$(MAKE) -C dnd -f makefile.gcc $(MAKEARGS) clean
$(MAKE) -C docview -f makefile.gcc $(MAKEARGS) clean
$(MAKE) -C dragimag -f makefile.gcc $(MAKEARGS) clean
@@ -168,6 +169,9 @@ dialup:
display:
$(MAKE) -C display -f makefile.gcc $(MAKEARGS) all
dll:
$(MAKE) -C dll -f makefile.gcc $(MAKEARGS) all
dnd:
$(MAKE) -C dnd -f makefile.gcc $(MAKEARGS) all
@@ -352,7 +356,7 @@ memcheck:
$(MAKE) -C memcheck -f makefile.gcc $(MAKEARGS) all
.PHONY: all clean access animate artprov aui calendar caret clipboard collpane combo \
config console controls dataview dialogs dialup display dnd docview dragimag \
config console controls dataview dialogs dialup display dll dnd docview dragimag \
drawing erase event except exec font grid help htlbox html image internat ipc joytest \
keyboard layout listctrl mdi mediaplayer menu minimal nativdlg notebook oleauto \
opengl ownerdrw popup power printing propgrid regtest render ribbon richtext \