Win32 API 日本語リファレンス
ホームMedia.DirectShow.Tv › LicenseEventBlockReason

LicenseEventBlockReason

列挙型
基底型i4

メンバー 5

名前10進16進
LIC_BadLicense00x0
LIC_NeedIndiv10x1
LIC_Expired20x2
LIC_NeedActivation30x3
LIC_ExtenderBlocked40x4

各言語での定義

列挙メンバーの定義。HSP タブは #define global(値は16進)。

typedef enum LicenseEventBlockReason : int {
    LIC_BadLicense = 0,
    LIC_NeedIndiv = 1,
    LIC_Expired = 2,
    LIC_NeedActivation = 3,
    LIC_ExtenderBlocked = 4
} LicenseEventBlockReason;
public enum LicenseEventBlockReason : int
{
    LIC_BadLicense = 0,
    LIC_NeedIndiv = 1,
    LIC_Expired = 2,
    LIC_NeedActivation = 3,
    LIC_ExtenderBlocked = 4,
}
Public Enum LicenseEventBlockReason As Integer
    LIC_BadLicense = 0
    LIC_NeedIndiv = 1
    LIC_Expired = 2
    LIC_NeedActivation = 3
    LIC_ExtenderBlocked = 4
End Enum
import enum

class LicenseEventBlockReason(enum.IntEnum):
    LIC_BadLicense = 0
    LIC_NeedIndiv = 1
    LIC_Expired = 2
    LIC_NeedActivation = 3
    LIC_ExtenderBlocked = 4
// LicenseEventBlockReason
pub const LIC_BadLicense: i32 = 0;
pub const LIC_NeedIndiv: i32 = 1;
pub const LIC_Expired: i32 = 2;
pub const LIC_NeedActivation: i32 = 3;
pub const LIC_ExtenderBlocked: i32 = 4;
// LicenseEventBlockReason
const (
	LIC_BadLicense int32 = 0
	LIC_NeedIndiv int32 = 1
	LIC_Expired int32 = 2
	LIC_NeedActivation int32 = 3
	LIC_ExtenderBlocked int32 = 4
)
const
  LIC_BadLicense = 0;
  LIC_NeedIndiv = 1;
  LIC_Expired = 2;
  LIC_NeedActivation = 3;
  LIC_ExtenderBlocked = 4;
// LicenseEventBlockReason
pub const LIC_BadLicense: i32 = 0;
pub const LIC_NeedIndiv: i32 = 1;
pub const LIC_Expired: i32 = 2;
pub const LIC_NeedActivation: i32 = 3;
pub const LIC_ExtenderBlocked: i32 = 4;
const
  LIC_BadLicense* = 0
  LIC_NeedIndiv* = 1
  LIC_Expired* = 2
  LIC_NeedActivation* = 3
  LIC_ExtenderBlocked* = 4
enum LicenseEventBlockReason : int {
    LIC_BadLicense = 0,
    LIC_NeedIndiv = 1,
    LIC_Expired = 2,
    LIC_NeedActivation = 3,
    LIC_ExtenderBlocked = 4,
}
#define global LIC_BadLicense      0x0
#define global LIC_NeedIndiv       0x1
#define global LIC_Expired         0x2
#define global LIC_NeedActivation  0x3
#define global LIC_ExtenderBlocked 0x4