Win32 API 日本語リファレンス
ホームStorage.FileSystem › TRANSACTION_OUTCOME

TRANSACTION_OUTCOME

列挙型
基底型i4

メンバー 3

名前10進16進
TransactionOutcomeUndetermined10x1
TransactionOutcomeCommitted20x2
TransactionOutcomeAborted30x3

各言語での定義

列挙メンバーの定義。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 Enum
import 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* = 3
enum TRANSACTION_OUTCOME : int {
    TransactionOutcomeUndetermined = 1,
    TransactionOutcomeCommitted = 2,
    TransactionOutcomeAborted = 3,
}
#define global TransactionOutcomeUndetermined 0x1
#define global TransactionOutcomeCommitted    0x2
#define global TransactionOutcomeAborted      0x3