ホーム › System.Performance › ClockType
ClockType
列挙型メンバー 4
| 名前 | 10進 | 16進 |
|---|---|---|
| plaTimeStamp | 0 | 0x0 |
| plaPerformance | 1 | 0x1 |
| plaSystem | 2 | 0x2 |
| plaCycle | 3 | 0x3 |
各言語での定義
列挙メンバーの定義。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 Enumimport 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* = 3enum 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