Win32 API 日本語リファレンス
ホームSystem.UpdateAgent › OperationResultCode

OperationResultCode

列挙型
基底型i4

メンバー 6

名前10進16進
orcNotStarted00x0
orcInProgress10x1
orcSucceeded20x2
orcSucceededWithErrors30x3
orcFailed40x4
orcAborted50x5

各言語での定義

列挙メンバーの定義。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 Enum
import 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* = 5
enum 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