get-last-error
An error wrapper over Win32 API errors.
Examples
A Win32Error can be constructed from an arbitrary DWORD:
use Win32Error;
let err = new;
println!; // prints "The operation completed successfully."
The Win32Error::get_last_error retrieves the last error code for the current thread:
use Win32Error;
use ;
License
Licensed under MIT license (LICENSE or http://opensource.org/licenses/MIT)