ホーム › Storage.FileSystem › TRANSACTION_OUTCOME
TRANSACTION_OUTCOME
列挙型メンバー 3
| 名前 | 10進 | 16進 |
|---|---|---|
| TransactionOutcomeUndetermined | 1 | 0x1 |
| TransactionOutcomeCommitted | 2 | 0x2 |
| TransactionOutcomeAborted | 3 | 0x3 |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum TRANSACTION_OUTCOME : int {
TransactionOutcomeUndetermined = 1,
TransactionOutcomeCommitted = 2,
TransactionOutcomeAborted = 3
} TRANSACTION_OUTCOME;public enum TRANSACTION_OUTCOME : int
{
TransactionOutcomeUndetermined = 1,
TransactionOutcomeCommitted = 2,
TransactionOutcomeAborted = 3,
}Public Enum TRANSACTION_OUTCOME As Integer
TransactionOutcomeUndetermined = 1
TransactionOutcomeCommitted = 2
TransactionOutcomeAborted = 3
End Enumimport enum
class TRANSACTION_OUTCOME(enum.IntEnum):
TransactionOutcomeUndetermined = 1
TransactionOutcomeCommitted = 2
TransactionOutcomeAborted = 3// TRANSACTION_OUTCOME
pub const TransactionOutcomeUndetermined: i32 = 1;
pub const TransactionOutcomeCommitted: i32 = 2;
pub const TransactionOutcomeAborted: i32 = 3;// TRANSACTION_OUTCOME
const (
TransactionOutcomeUndetermined int32 = 1
TransactionOutcomeCommitted int32 = 2
TransactionOutcomeAborted int32 = 3
)const
TransactionOutcomeUndetermined = 1;
TransactionOutcomeCommitted = 2;
TransactionOutcomeAborted = 3;// TRANSACTION_OUTCOME
pub const TransactionOutcomeUndetermined: i32 = 1;
pub const TransactionOutcomeCommitted: i32 = 2;
pub const TransactionOutcomeAborted: i32 = 3;const
TransactionOutcomeUndetermined* = 1
TransactionOutcomeCommitted* = 2
TransactionOutcomeAborted* = 3enum TRANSACTION_OUTCOME : int {
TransactionOutcomeUndetermined = 1,
TransactionOutcomeCommitted = 2,
TransactionOutcomeAborted = 3,
}#define global TransactionOutcomeUndetermined 0x1
#define global TransactionOutcomeCommitted 0x2
#define global TransactionOutcomeAborted 0x3