├── README.md ├── dlopen_c_example ├── Makefile ├── dlopen.c ├── testlib1.c └── testlib2.c └── dlopen_cpp_example ├── Makefile ├── bar.cc ├── baz.cc ├── dlopen.cc ├── foo.cc └── plugin.h /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgrantham/dynamic-libraries-in-c-and-cpp-article/HEAD/README.md -------------------------------------------------------------------------------- /dlopen_c_example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgrantham/dynamic-libraries-in-c-and-cpp-article/HEAD/dlopen_c_example/Makefile -------------------------------------------------------------------------------- /dlopen_c_example/dlopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgrantham/dynamic-libraries-in-c-and-cpp-article/HEAD/dlopen_c_example/dlopen.c -------------------------------------------------------------------------------- /dlopen_c_example/testlib1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgrantham/dynamic-libraries-in-c-and-cpp-article/HEAD/dlopen_c_example/testlib1.c -------------------------------------------------------------------------------- /dlopen_c_example/testlib2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgrantham/dynamic-libraries-in-c-and-cpp-article/HEAD/dlopen_c_example/testlib2.c -------------------------------------------------------------------------------- /dlopen_cpp_example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgrantham/dynamic-libraries-in-c-and-cpp-article/HEAD/dlopen_cpp_example/Makefile -------------------------------------------------------------------------------- /dlopen_cpp_example/bar.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgrantham/dynamic-libraries-in-c-and-cpp-article/HEAD/dlopen_cpp_example/bar.cc -------------------------------------------------------------------------------- /dlopen_cpp_example/baz.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgrantham/dynamic-libraries-in-c-and-cpp-article/HEAD/dlopen_cpp_example/baz.cc -------------------------------------------------------------------------------- /dlopen_cpp_example/dlopen.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgrantham/dynamic-libraries-in-c-and-cpp-article/HEAD/dlopen_cpp_example/dlopen.cc -------------------------------------------------------------------------------- /dlopen_cpp_example/foo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgrantham/dynamic-libraries-in-c-and-cpp-article/HEAD/dlopen_cpp_example/foo.cc -------------------------------------------------------------------------------- /dlopen_cpp_example/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgrantham/dynamic-libraries-in-c-and-cpp-article/HEAD/dlopen_cpp_example/plugin.h --------------------------------------------------------------------------------