ホーム › Security.LicenseProtection › LicenseProtectionStatus
LicenseProtectionStatus
列挙型メンバー 5
| 名前 | 10進 | 16進 |
|---|---|---|
| Success | 0 | 0x0 |
| LicenseKeyNotFound | 1 | 0x1 |
| LicenseKeyUnprotected | 2 | 0x2 |
| LicenseKeyCorrupted | 3 | 0x3 |
| LicenseKeyAlreadyExists | 4 | 0x4 |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum LicenseProtectionStatus : int {
Success = 0,
LicenseKeyNotFound = 1,
LicenseKeyUnprotected = 2,
LicenseKeyCorrupted = 3,
LicenseKeyAlreadyExists = 4
} LicenseProtectionStatus;public enum LicenseProtectionStatus : int
{
Success = 0,
LicenseKeyNotFound = 1,
LicenseKeyUnprotected = 2,
LicenseKeyCorrupted = 3,
LicenseKeyAlreadyExists = 4,
}Public Enum LicenseProtectionStatus As Integer
Success = 0
LicenseKeyNotFound = 1
LicenseKeyUnprotected = 2
LicenseKeyCorrupted = 3
LicenseKeyAlreadyExists = 4
End Enumimport enum
class LicenseProtectionStatus(enum.IntEnum):
Success = 0
LicenseKeyNotFound = 1
LicenseKeyUnprotected = 2
LicenseKeyCorrupted = 3
LicenseKeyAlreadyExists = 4// LicenseProtectionStatus
pub const Success: i32 = 0;
pub const LicenseKeyNotFound: i32 = 1;
pub const LicenseKeyUnprotected: i32 = 2;
pub const LicenseKeyCorrupted: i32 = 3;
pub const LicenseKeyAlreadyExists: i32 = 4;// LicenseProtectionStatus
const (
Success int32 = 0
LicenseKeyNotFound int32 = 1
LicenseKeyUnprotected int32 = 2
LicenseKeyCorrupted int32 = 3
LicenseKeyAlreadyExists int32 = 4
)const
Success = 0;
LicenseKeyNotFound = 1;
LicenseKeyUnprotected = 2;
LicenseKeyCorrupted = 3;
LicenseKeyAlreadyExists = 4;// LicenseProtectionStatus
pub const Success: i32 = 0;
pub const LicenseKeyNotFound: i32 = 1;
pub const LicenseKeyUnprotected: i32 = 2;
pub const LicenseKeyCorrupted: i32 = 3;
pub const LicenseKeyAlreadyExists: i32 = 4;const
Success* = 0
LicenseKeyNotFound* = 1
LicenseKeyUnprotected* = 2
LicenseKeyCorrupted* = 3
LicenseKeyAlreadyExists* = 4enum LicenseProtectionStatus : int {
Success = 0,
LicenseKeyNotFound = 1,
LicenseKeyUnprotected = 2,
LicenseKeyCorrupted = 3,
LicenseKeyAlreadyExists = 4,
}#define global Success 0x0
#define global LicenseKeyNotFound 0x1
#define global LicenseKeyUnprotected 0x2
#define global LicenseKeyCorrupted 0x3
#define global LicenseKeyAlreadyExists 0x4