├── .editorconfig ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE.txt ├── LICENSE_DE.txt ├── README.md ├── dub.sdl ├── example ├── dub.sdl ├── foo │ ├── dub.sdl │ └── source │ │ └── foo.d └── source │ ├── app.d │ └── foo_binding.d └── source └── dynamic.d /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-ludwig/dynamic/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-ludwig/dynamic/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-ludwig/dynamic/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-ludwig/dynamic/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /LICENSE_DE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-ludwig/dynamic/HEAD/LICENSE_DE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-ludwig/dynamic/HEAD/README.md -------------------------------------------------------------------------------- /dub.sdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-ludwig/dynamic/HEAD/dub.sdl -------------------------------------------------------------------------------- /example/dub.sdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-ludwig/dynamic/HEAD/example/dub.sdl -------------------------------------------------------------------------------- /example/foo/dub.sdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-ludwig/dynamic/HEAD/example/foo/dub.sdl -------------------------------------------------------------------------------- /example/foo/source/foo.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-ludwig/dynamic/HEAD/example/foo/source/foo.d -------------------------------------------------------------------------------- /example/source/app.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-ludwig/dynamic/HEAD/example/source/app.d -------------------------------------------------------------------------------- /example/source/foo_binding.d: -------------------------------------------------------------------------------- 1 | module foo_binding; 2 | 3 | extern(C) void foo(); 4 | -------------------------------------------------------------------------------- /source/dynamic.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-ludwig/dynamic/HEAD/source/dynamic.d --------------------------------------------------------------------------------