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

ClockType

列挙型
基底型i4

メンバー 4

名前10進16進
plaTimeStamp00x0
plaPerformance10x1
plaSystem20x2
plaCycle30x3

各言語での定義

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

typedef enum ClockType : int {
    plaTimeStamp = 0,
    plaPerformance = 1,
    plaSystem = 2,
    plaCycle = 3
} ClockType;
public enum ClockType : int
{
    plaTimeStamp = 0,
    plaPerformance = 1,
    plaSystem = 2,
    plaCycle = 3,
}
Public Enum ClockType As Integer
    plaTimeStamp = 0
    plaPerformance = 1
    plaSystem = 2
    plaCycle = 3
End Enum
import enum

class ClockType(enum.IntEnum):
    plaTimeStamp = 0
    plaPerformance = 1
    plaSystem = 2
    plaCycle = 3
// ClockType
pub const plaTimeStamp: i32 = 0;
pub const plaPerformance: i32 = 1;
pub const plaSystem: i32 = 2;
pub const plaCycle: i32 = 3;
// ClockType
const (
	plaTimeStamp int32 = 0
	plaPerformance int32 = 1
	plaSystem int32 = 2
	plaCycle int32 = 3
)
const
  plaTimeStamp = 0;
  plaPerformance = 1;
  plaSystem = 2;
  plaCycle = 3;
// ClockType
pub const plaTimeStamp: i32 = 0;
pub const plaPerformance: i32 = 1;
pub const plaSystem: i32 = 2;
pub const plaCycle: i32 = 3;
const
  plaTimeStamp* = 0
  plaPerformance* = 1
  plaSystem* = 2
  plaCycle* = 3
enum ClockType : int {
    plaTimeStamp = 0,
    plaPerformance = 1,
    plaSystem = 2,
    plaCycle = 3,
}
#define global plaTimeStamp   0x0
#define global plaPerformance 0x1
#define global plaSystem      0x2
#define global plaCycle       0x3