using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.AdvancedInstaller { public enum ReturnCodes : uint { [Description("Command executed successfully.")] NO_ERROR = 0, [Description("Exception occurs and no other error code is specified.")] UNSPECIFIED_ERROR = 0xE0010064, [Description("Invalid MSI identifier.")] ERROR_BAD_IDENTIFIER = 0xE0010065, [Description("Duplicated search signature.")] ERROR_DUPLICATED_SEARCH_SIGNATURE = 0xE0010066, [Description("Search signature was not found.")] ERROR_SEARCH_NOT_FOUND = 0xE0010067, [Description("File is missing.")] ERROR_FILE_NOT_FOUND = 0xE0010068, [Description("Command line is invalid.")] ERROR_MALFORMED_COMMAND_LINE = 0xE0010069, [Description("Command file format is invalid (possible unsupported encoding).")] ERROR_UNSUPPORTED_CMD_FILE_FORMAT = 0xE001006A, [Description("The date is invalid MS DOS date.")] ERROR_INVALID_MS_DOS_DATE = 0xE001006B, [Description("User does not have license to build the project and trial has expired.")] ERROR_NO_LICENSE = 0xE001006C, [Description("Unable to acquire a floating license (no slots or unable to contact the license server).")] ERROR_NO_FLOATING_LICENSE = 0xE001006D, } }