v/vlib/dl
jeffmikels a60b381d5e
docs: adding skeleton README.md files for all vlib modules (#13034)
2022-01-05 18:06:08 +02:00
..
README.md docs: adding skeleton README.md files for all vlib modules (#13034) 2022-01-05 18:06:08 +02:00
dl.v docs: adding skeleton README.md files for all vlib modules (#13034) 2022-01-05 18:06:08 +02:00
dl_nix.c.v docs: adding skeleton README.md files for all vlib modules (#13034) 2022-01-05 18:06:08 +02:00
dl_test.v all: unify const names to snake_case 2020-05-22 17:36:09 +02:00
dl_windows.c.v docs: adding skeleton README.md files for all vlib modules (#13034) 2022-01-05 18:06:08 +02:00

README.md

Description:

dl can be used to Dynamically Load a library during runtime. It is a thin wrapper over LoadLibrary on Windows, and dlopen on Unix.

Using it, you can implement a plugin system for your application.