ホーム › System.Memory › OFFER_PRIORITY
OFFER_PRIORITY
列挙型メンバー 4
| 名前 | 10進 | 16進 |
|---|---|---|
| VmOfferPriorityVeryLow | 1 | 0x1 |
| VmOfferPriorityLow | 2 | 0x2 |
| VmOfferPriorityBelowNormal | 3 | 0x3 |
| VmOfferPriorityNormal | 4 | 0x4 |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum OFFER_PRIORITY : int {
VmOfferPriorityVeryLow = 1,
VmOfferPriorityLow = 2,
VmOfferPriorityBelowNormal = 3,
VmOfferPriorityNormal = 4
} OFFER_PRIORITY;public enum OFFER_PRIORITY : int
{
VmOfferPriorityVeryLow = 1,
VmOfferPriorityLow = 2,
VmOfferPriorityBelowNormal = 3,
VmOfferPriorityNormal = 4,
}Public Enum OFFER_PRIORITY As Integer
VmOfferPriorityVeryLow = 1
VmOfferPriorityLow = 2
VmOfferPriorityBelowNormal = 3
VmOfferPriorityNormal = 4
End Enumimport enum
class OFFER_PRIORITY(enum.IntEnum):
VmOfferPriorityVeryLow = 1
VmOfferPriorityLow = 2
VmOfferPriorityBelowNormal = 3
VmOfferPriorityNormal = 4// OFFER_PRIORITY
pub const VmOfferPriorityVeryLow: i32 = 1;
pub const VmOfferPriorityLow: i32 = 2;
pub const VmOfferPriorityBelowNormal: i32 = 3;
pub const VmOfferPriorityNormal: i32 = 4;// OFFER_PRIORITY
const (
VmOfferPriorityVeryLow int32 = 1
VmOfferPriorityLow int32 = 2
VmOfferPriorityBelowNormal int32 = 3
VmOfferPriorityNormal int32 = 4
)const
VmOfferPriorityVeryLow = 1;
VmOfferPriorityLow = 2;
VmOfferPriorityBelowNormal = 3;
VmOfferPriorityNormal = 4;// OFFER_PRIORITY
pub const VmOfferPriorityVeryLow: i32 = 1;
pub const VmOfferPriorityLow: i32 = 2;
pub const VmOfferPriorityBelowNormal: i32 = 3;
pub const VmOfferPriorityNormal: i32 = 4;const
VmOfferPriorityVeryLow* = 1
VmOfferPriorityLow* = 2
VmOfferPriorityBelowNormal* = 3
VmOfferPriorityNormal* = 4enum OFFER_PRIORITY : int {
VmOfferPriorityVeryLow = 1,
VmOfferPriorityLow = 2,
VmOfferPriorityBelowNormal = 3,
VmOfferPriorityNormal = 4,
}#define global VmOfferPriorityVeryLow 0x1
#define global VmOfferPriorityLow 0x2
#define global VmOfferPriorityBelowNormal 0x3
#define global VmOfferPriorityNormal 0x4