Win32 API 日本語リファレンス
ホームNetworkManagement.IpHelper › PFFRAMETYPE

PFFRAMETYPE

列挙型
基底型i4

メンバー 3

名前10進16進
PFFT_FILTER10x1
PFFT_FRAG20x2
PFFT_SPOOF30x3

各言語での定義

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

typedef enum PFFRAMETYPE : int {
    PFFT_FILTER = 1,
    PFFT_FRAG = 2,
    PFFT_SPOOF = 3
} PFFRAMETYPE;
public enum PFFRAMETYPE : int
{
    PFFT_FILTER = 1,
    PFFT_FRAG = 2,
    PFFT_SPOOF = 3,
}
Public Enum PFFRAMETYPE As Integer
    PFFT_FILTER = 1
    PFFT_FRAG = 2
    PFFT_SPOOF = 3
End Enum
import enum

class PFFRAMETYPE(enum.IntEnum):
    PFFT_FILTER = 1
    PFFT_FRAG = 2
    PFFT_SPOOF = 3
// PFFRAMETYPE
pub const PFFT_FILTER: i32 = 1;
pub const PFFT_FRAG: i32 = 2;
pub const PFFT_SPOOF: i32 = 3;
// PFFRAMETYPE
const (
	PFFT_FILTER int32 = 1
	PFFT_FRAG int32 = 2
	PFFT_SPOOF int32 = 3
)
const
  PFFT_FILTER = 1;
  PFFT_FRAG = 2;
  PFFT_SPOOF = 3;
// PFFRAMETYPE
pub const PFFT_FILTER: i32 = 1;
pub const PFFT_FRAG: i32 = 2;
pub const PFFT_SPOOF: i32 = 3;
const
  PFFT_FILTER* = 1
  PFFT_FRAG* = 2
  PFFT_SPOOF* = 3
enum PFFRAMETYPE : int {
    PFFT_FILTER = 1,
    PFFT_FRAG = 2,
    PFFT_SPOOF = 3,
}
#define global PFFT_FILTER 0x1
#define global PFFT_FRAG   0x2
#define global PFFT_SPOOF  0x3