gfx.bindings.core

Undocumented in source.

Members

Aliases

SharedLib
alias SharedLib = void*

A handle to a shared library

SharedSym
alias SharedSym = void*

A handle to a shared library symbol

SymbolLoader
alias SymbolLoader = SharedSym delegate(in string name)

Generic Dynamic lib symbol loader. Symbols loaded with such loader must be cast to the appropriate function type.

Classes

SharedLibLoader
class SharedLibLoader

Utility that open a shared library and load symbols from it.

Functions

closeSharedLib
void closeSharedLib(SharedLib lib)

Close a shared library

closeSharedLib
void closeSharedLib(SharedLib lib)
Undocumented in source. Be warned that the author may not have intended to support it.
closeSharedLib
void closeSharedLib(SharedLib lib)
Undocumented in source. Be warned that the author may not have intended to support it.
loadSharedSym
SharedSym loadSharedSym(SharedLib lib, string name)

Load a symbol from a shared library. Return null in case of failure.

loadSharedSym
SharedSym loadSharedSym(SharedLib lib, string name)
Undocumented in source. Be warned that the author may not have intended to support it.
loadSharedSym
SharedSym loadSharedSym(SharedLib lib, string name)
Undocumented in source. Be warned that the author may not have intended to support it.
openSharedLib
SharedLib openSharedLib(string name)

Opens a shared library. Return null in case of failure.

openSharedLib
SharedLib openSharedLib(string name)
Undocumented in source. Be warned that the author may not have intended to support it.
openSharedLib
SharedLib openSharedLib(string name)
Undocumented in source. Be warned that the author may not have intended to support it.

Meta