blob: 20673d00ff3dc84d1c687dbdfc0ced671b34cc3f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
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,
}
}
|