Win32 API 日本語リファレンス
ホームSystem.RealTimeCommunications › RTC_SECURITY_LEVEL

RTC_SECURITY_LEVEL

列挙型
基底型i4

メンバー 3

名前10進16進
RTCSECL_UNSUPPORTED10x1
RTCSECL_SUPPORTED20x2
RTCSECL_REQUIRED30x3

各言語での定義

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

typedef enum RTC_SECURITY_LEVEL : int {
    RTCSECL_UNSUPPORTED = 1,
    RTCSECL_SUPPORTED = 2,
    RTCSECL_REQUIRED = 3
} RTC_SECURITY_LEVEL;
public enum RTC_SECURITY_LEVEL : int
{
    RTCSECL_UNSUPPORTED = 1,
    RTCSECL_SUPPORTED = 2,
    RTCSECL_REQUIRED = 3,
}
Public Enum RTC_SECURITY_LEVEL As Integer
    RTCSECL_UNSUPPORTED = 1
    RTCSECL_SUPPORTED = 2
    RTCSECL_REQUIRED = 3
End Enum
import enum

class RTC_SECURITY_LEVEL(enum.IntEnum):
    RTCSECL_UNSUPPORTED = 1
    RTCSECL_SUPPORTED = 2
    RTCSECL_REQUIRED = 3
// RTC_SECURITY_LEVEL
pub const RTCSECL_UNSUPPORTED: i32 = 1;
pub const RTCSECL_SUPPORTED: i32 = 2;
pub const RTCSECL_REQUIRED: i32 = 3;
// RTC_SECURITY_LEVEL
const (
	RTCSECL_UNSUPPORTED int32 = 1
	RTCSECL_SUPPORTED int32 = 2
	RTCSECL_REQUIRED int32 = 3
)
const
  RTCSECL_UNSUPPORTED = 1;
  RTCSECL_SUPPORTED = 2;
  RTCSECL_REQUIRED = 3;
// RTC_SECURITY_LEVEL
pub const RTCSECL_UNSUPPORTED: i32 = 1;
pub const RTCSECL_SUPPORTED: i32 = 2;
pub const RTCSECL_REQUIRED: i32 = 3;
const
  RTCSECL_UNSUPPORTED* = 1
  RTCSECL_SUPPORTED* = 2
  RTCSECL_REQUIRED* = 3
enum RTC_SECURITY_LEVEL : int {
    RTCSECL_UNSUPPORTED = 1,
    RTCSECL_SUPPORTED = 2,
    RTCSECL_REQUIRED = 3,
}
#define global RTCSECL_UNSUPPORTED 0x1
#define global RTCSECL_SUPPORTED   0x2
#define global RTCSECL_REQUIRED    0x3