DynamicLoad

Given a static function declaration, generate a loader with the same name in the current scope that loads the function dynamically from the given DLL.

  1. mixintemplate DynamicLoad(alias F, string DLL, string NAME = __traits(identifier, F))
    mixin template DynamicLoad (
    string DLL
    string NAME = __traits(identifier, F)
    ) {}
  2. mixintemplate DynamicLoad(string DLL, FUNCS...)

Members

Static functions

loader
std.traits.ReturnType!F loader(ARGS args)
Undocumented in source. Be warned that the author may not have intended to support it.

Meta