lookup
Function parameters
Parameters
- self:*DynLib
- T:type
- name:[:0]const u8
Cross-platform dynamic library loading and symbol lookup.
Types
- DynLib
- Cross-platform dynamic library loading and symbol lookup.
TODO fix comparisons of extern symbol pointers so we don't need this helper function.
Functions
- get_DYNAMIC
- TODO fix comparisons of extern symbol pointers so we don't need this helper function.
Source
Implementation
pub fn lookup(self: *DynLib, comptime T: type, name: [:0]const u8) ?T {
return self.inner.lookup(T, name);
}