Type Definition dynlib::VoidPtr [] [src]

type VoidPtr = *const c_void;

Untyped Pointer to a Function.

An untyped pointer returned from an attempt to load a function. The developer will have to use unsafe{ mem::transmute(VoidPtr)} to recover the typing, and make this location executable.