0 branches
Tree
Top files
Clone with HTTPS:
README.md
doc: update trim_doc_node_description, make module readmes more uniform (#20792)
2 years ago
351 bytes
dl.v
fmt: remove the prefixed module name of const names, that are in the same module (related #22183) (#22185)
1 year ago
1.17 KB
dl_nix.c.v
all: replace `int` with `i32` in `fn C.name(x int) int` declarations (#26522)
last Feb 7
1.2 KB
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.
Note We highly recommend using
dl.loaderinstead ofdldirectly. It provides a more user-friendly API in the V way.