├── LICENSE ├── MsgBoxDLL ├── LaunchDLL.cpp ├── LaunchDLL.o ├── bin │ └── Release │ │ ├── MsgBoxDLL.dll │ │ ├── libMsgBoxDLL.a │ │ └── libMsgBoxDLL.def ├── main.cpp ├── main.h ├── main.o └── obj │ └── Release │ └── main.o ├── MsgBoxEXE ├── bin │ └── Release │ │ └── MsgBoxEXE.exe ├── main.cpp ├── main.o ├── obj │ └── Release │ │ ├── main.o │ │ └── resource.res ├── resource.h └── resource.rc ├── README.md ├── dll.png └── exe.PNG /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartblaze/MessageBoxTests/HEAD/LICENSE -------------------------------------------------------------------------------- /MsgBoxDLL/LaunchDLL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartblaze/MessageBoxTests/HEAD/MsgBoxDLL/LaunchDLL.cpp -------------------------------------------------------------------------------- /MsgBoxDLL/LaunchDLL.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartblaze/MessageBoxTests/HEAD/MsgBoxDLL/LaunchDLL.o -------------------------------------------------------------------------------- /MsgBoxDLL/bin/Release/MsgBoxDLL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartblaze/MessageBoxTests/HEAD/MsgBoxDLL/bin/Release/MsgBoxDLL.dll -------------------------------------------------------------------------------- /MsgBoxDLL/bin/Release/libMsgBoxDLL.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartblaze/MessageBoxTests/HEAD/MsgBoxDLL/bin/Release/libMsgBoxDLL.a -------------------------------------------------------------------------------- /MsgBoxDLL/bin/Release/libMsgBoxDLL.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | MsgBox @1 3 | -------------------------------------------------------------------------------- /MsgBoxDLL/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartblaze/MessageBoxTests/HEAD/MsgBoxDLL/main.cpp -------------------------------------------------------------------------------- /MsgBoxDLL/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartblaze/MessageBoxTests/HEAD/MsgBoxDLL/main.h -------------------------------------------------------------------------------- /MsgBoxDLL/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartblaze/MessageBoxTests/HEAD/MsgBoxDLL/main.o -------------------------------------------------------------------------------- /MsgBoxDLL/obj/Release/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartblaze/MessageBoxTests/HEAD/MsgBoxDLL/obj/Release/main.o -------------------------------------------------------------------------------- /MsgBoxEXE/bin/Release/MsgBoxEXE.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartblaze/MessageBoxTests/HEAD/MsgBoxEXE/bin/Release/MsgBoxEXE.exe -------------------------------------------------------------------------------- /MsgBoxEXE/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartblaze/MessageBoxTests/HEAD/MsgBoxEXE/main.cpp -------------------------------------------------------------------------------- /MsgBoxEXE/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartblaze/MessageBoxTests/HEAD/MsgBoxEXE/main.o -------------------------------------------------------------------------------- /MsgBoxEXE/obj/Release/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartblaze/MessageBoxTests/HEAD/MsgBoxEXE/obj/Release/main.o -------------------------------------------------------------------------------- /MsgBoxEXE/obj/Release/resource.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartblaze/MessageBoxTests/HEAD/MsgBoxEXE/obj/Release/resource.res -------------------------------------------------------------------------------- /MsgBoxEXE/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartblaze/MessageBoxTests/HEAD/MsgBoxEXE/resource.h -------------------------------------------------------------------------------- /MsgBoxEXE/resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartblaze/MessageBoxTests/HEAD/MsgBoxEXE/resource.rc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartblaze/MessageBoxTests/HEAD/README.md -------------------------------------------------------------------------------- /dll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartblaze/MessageBoxTests/HEAD/dll.png -------------------------------------------------------------------------------- /exe.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartblaze/MessageBoxTests/HEAD/exe.PNG --------------------------------------------------------------------------------