Skip to content

Commit

Permalink
Update error constants
Browse files Browse the repository at this point in the history
  • Loading branch information
florelis committed Jul 28, 2022
1 parent 89a560d commit c052303
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/AppInstallerCLIE2ETests/Constants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,10 @@ public class ErrorCode
public const int ERROR_ARP_VERSION_VALIDATION_FAILED = unchecked((int)0x8A150058);
public const int ERROR_UNSUPPORTED_ARGUMENT = unchecked((int)0x8A150059);
public const int ERROR_BIND_WITH_EMBEDDED_NULL = unchecked((int)0x8A15005A);
public const int ERROR_INSTALL_LOCATION_REQUIRED = unchecked((int)0x8A15005B);
public const int ERROR_NESTEDINSTALLER_NOT_FOUND = unchecked((int)0x8A15005B);
public const int ERROR_EXTRACT_ARCHIVE_FAILED = unchecked((int)0x8A15005C);
public const int ERROR_NESTEDINSTALLER_INVALID_PATH = unchecked((int)0x8A15005D);
public const int ERROR_INSTALL_LOCATION_REQUIRED = unchecked((int)0x8A15005E);

public const int ERROR_INSTALL_PACKAGE_IN_USE = unchecked((int)0x8A150101);
public const int ERROR_INSTALL_INSTALL_IN_PROGRESS = unchecked((int)0x8A150102);
Expand Down

0 comments on commit c052303

Please sign in to comment.