Win32 API 日本語リファレンス
ホームSecurity.LicenseProtection › LicenseProtectionStatus

LicenseProtectionStatus

列挙型
基底型i4

メンバー 5

名前10進16進
Success00x0
LicenseKeyNotFound10x1
LicenseKeyUnprotected20x2
LicenseKeyCorrupted30x3
LicenseKeyAlreadyExists40x4

各言語での定義

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