This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Title: An exhaustive enum of all Windows System Error Codes | |
// Source: https://msdn.microsoft.com/en-us/library/windows/desktop/ms681381.aspx | |
// Description: Error codes are a means to provide information to outside systems on why a program terminated. This list | |
// need not be included in its entirety. It is meant to aid in conforming to the existing error code usage. | |
// See this link form more information on usage. https://msdn.microsoft.com/en-us/library/system.environment.exitcode.aspx | |
// Note: Internet error codes are excluded from this list. See here: https://msdn.microsoft.com/en-us/library/windows/desktop/aa385465.aspx | |
// Updated: 2016/10/31 | |
namespace Core | |
{ |