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

OFFER_PRIORITY

列挙型
基底型i4

メンバー 4

名前10進16進
VmOfferPriorityVeryLow10x1
VmOfferPriorityLow20x2
VmOfferPriorityBelowNormal30x3
VmOfferPriorityNormal40x4

各言語での定義

列挙メンバーの定義。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 Enum
import 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* = 4
enum 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