ホーム › System.UpdateAgent › OperationResultCode
OperationResultCode
列挙型メンバー 6
| 名前 | 10進 | 16進 |
|---|---|---|
| orcNotStarted | 0 | 0x0 |
| orcInProgress | 1 | 0x1 |
| orcSucceeded | 2 | 0x2 |
| orcSucceededWithErrors | 3 | 0x3 |
| orcFailed | 4 | 0x4 |
| orcAborted | 5 | 0x5 |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum OperationResultCode : int {
orcNotStarted = 0,
orcInProgress = 1,
orcSucceeded = 2,
orcSucceededWithErrors = 3,
orcFailed = 4,
orcAborted = 5
} OperationResultCode;public enum OperationResultCode : int
{
orcNotStarted = 0,
orcInProgress = 1,
orcSucceeded = 2,
orcSucceededWithErrors = 3,
orcFailed = 4,
orcAborted = 5,
}Public Enum OperationResultCode As Integer
orcNotStarted = 0
orcInProgress = 1
orcSucceeded = 2
orcSucceededWithErrors = 3
orcFailed = 4
orcAborted = 5
End Enumimport enum
class OperationResultCode(enum.IntEnum):
orcNotStarted = 0
orcInProgress = 1
orcSucceeded = 2
orcSucceededWithErrors = 3
orcFailed = 4
orcAborted = 5// OperationResultCode
pub const orcNotStarted: i32 = 0;
pub const orcInProgress: i32 = 1;
pub const orcSucceeded: i32 = 2;
pub const orcSucceededWithErrors: i32 = 3;
pub const orcFailed: i32 = 4;
pub const orcAborted: i32 = 5;// OperationResultCode
const (
orcNotStarted int32 = 0
orcInProgress int32 = 1
orcSucceeded int32 = 2
orcSucceededWithErrors int32 = 3
orcFailed int32 = 4
orcAborted int32 = 5
)const
orcNotStarted = 0;
orcInProgress = 1;
orcSucceeded = 2;
orcSucceededWithErrors = 3;
orcFailed = 4;
orcAborted = 5;// OperationResultCode
pub const orcNotStarted: i32 = 0;
pub const orcInProgress: i32 = 1;
pub const orcSucceeded: i32 = 2;
pub const orcSucceededWithErrors: i32 = 3;
pub const orcFailed: i32 = 4;
pub const orcAborted: i32 = 5;const
orcNotStarted* = 0
orcInProgress* = 1
orcSucceeded* = 2
orcSucceededWithErrors* = 3
orcFailed* = 4
orcAborted* = 5enum OperationResultCode : int {
orcNotStarted = 0,
orcInProgress = 1,
orcSucceeded = 2,
orcSucceededWithErrors = 3,
orcFailed = 4,
orcAborted = 5,
}#define global orcNotStarted 0x0
#define global orcInProgress 0x1
#define global orcSucceeded 0x2
#define global orcSucceededWithErrors 0x3
#define global orcFailed 0x4
#define global orcAborted 0x5