class cpp.Lib
Available on cpp
Class Fields
static function getProcAddress(lib:String, prim:String):Dynamic
Load and return a Cpp primitive from a DLL library.
static function haxeToNeko(v:Dynamic):Dynamic
This function is used to make porting from neko to cpp easy. It does not need to do anything because the c-code can work with any Dynamic
static function load(lib:String, prim:String, nargs:Int):Dynamic
Load and return a Cpp primitive from a DLL library.
static function loadLazy(lib:String, prim:String, nargs:Int):Dynamic
Tries to load, and always returns a valid function, but the function may throw if called.
static function nekoToHaxe(v:Dynamic):Dynamic
This function is used to make porting from neko to cpp easy. It does not need to do anything because the c-code can work with any Dynamic