xxxxxxxxxx
struct ErrorInfo {
private:
char[32] _error;
char[96] _message;
public nothrow :
/**
Returns the string "Missing Symbol" to indicate a symbol load failure, and
the name of a library to indicate a library load failure.
*/
const(char)* error() const return { return _error.ptr; }
/**
Returns a symbol name for symbol load failures, and a system-specific error
message for library load failures.
*/
const(char)* message() const return { return _message.ptr; }
}