mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-21 01:51:29 -07:00
15 lines
373 B
C#
15 lines
373 B
C#
namespace Bloxstrap.Enums
|
|
{
|
|
// https://learn.microsoft.com/en-us/windows/win32/msi/error-codes
|
|
// https://i-logic.com/serial/errorcodes.htm
|
|
// just the ones that we're interested in
|
|
|
|
public enum ErrorCode
|
|
{
|
|
ERROR_SUCCESS = 0,
|
|
ERROR_INSTALL_USEREXIT = 1602,
|
|
ERROR_INSTALL_FAILURE = 1603,
|
|
ERROR_CANCELLED = 1223
|
|
}
|
|
}
|