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

GLOBAL_FILTER

列挙型
基底型i4

メンバー 3

名前10進16進
GF_FRAGMENTS20x2
GF_STRONGHOST80x8
GF_FRAGCACHE90x9

各言語での定義

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

typedef enum GLOBAL_FILTER : int {
    GF_FRAGMENTS = 2,
    GF_STRONGHOST = 8,
    GF_FRAGCACHE = 9
} GLOBAL_FILTER;
public enum GLOBAL_FILTER : int
{
    GF_FRAGMENTS = 2,
    GF_STRONGHOST = 8,
    GF_FRAGCACHE = 9,
}
Public Enum GLOBAL_FILTER As Integer
    GF_FRAGMENTS = 2
    GF_STRONGHOST = 8
    GF_FRAGCACHE = 9
End Enum
import enum

class GLOBAL_FILTER(enum.IntEnum):
    GF_FRAGMENTS = 2
    GF_STRONGHOST = 8
    GF_FRAGCACHE = 9
// GLOBAL_FILTER
pub const GF_FRAGMENTS: i32 = 2;
pub const GF_STRONGHOST: i32 = 8;
pub const GF_FRAGCACHE: i32 = 9;
// GLOBAL_FILTER
const (
	GF_FRAGMENTS int32 = 2
	GF_STRONGHOST int32 = 8
	GF_FRAGCACHE int32 = 9
)
const
  GF_FRAGMENTS = 2;
  GF_STRONGHOST = 8;
  GF_FRAGCACHE = 9;
// GLOBAL_FILTER
pub const GF_FRAGMENTS: i32 = 2;
pub const GF_STRONGHOST: i32 = 8;
pub const GF_FRAGCACHE: i32 = 9;
const
  GF_FRAGMENTS* = 2
  GF_STRONGHOST* = 8
  GF_FRAGCACHE* = 9
enum GLOBAL_FILTER : int {
    GF_FRAGMENTS = 2,
    GF_STRONGHOST = 8,
    GF_FRAGCACHE = 9,
}
#define global GF_FRAGMENTS  0x2
#define global GF_STRONGHOST 0x8
#define global GF_FRAGCACHE  0x9