mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-28 17:04:34 +00:00
10 lines
407 B
Odin
10 lines
407 B
Odin
/*
|
|
Cross-platform loading of shared libraries/DLLs and their symbols.
|
|
|
|
The behaviour of dynamically loaded libraries is specific to the target platform of the program.
|
|
For in depth detail on the underlying behaviour please refer to your target platform's documentation.
|
|
|
|
For a full example, see: [[ core/dynlib/example; https://github.com/odin-lang/Odin/tree/master/core/dynlib/example ]]
|
|
*/
|
|
package dynlib
|