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

SERVICE_NODE_TYPE

列挙型
基底型i4

メンバー 6

名前10進16進
DriverType10x1
FileSystemType20x2
Win32ServiceOwnProcess160x10
Win32ServiceShareProcess320x20
AdapterType40x4
RecognizerType80x8

各言語での定義

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

typedef enum SERVICE_NODE_TYPE : int {
    DriverType = 1,
    FileSystemType = 2,
    Win32ServiceOwnProcess = 16,
    Win32ServiceShareProcess = 32,
    AdapterType = 4,
    RecognizerType = 8
} SERVICE_NODE_TYPE;
public enum SERVICE_NODE_TYPE : int
{
    DriverType = 1,
    FileSystemType = 2,
    Win32ServiceOwnProcess = 16,
    Win32ServiceShareProcess = 32,
    AdapterType = 4,
    RecognizerType = 8,
}
Public Enum SERVICE_NODE_TYPE As Integer
    DriverType = 1
    FileSystemType = 2
    Win32ServiceOwnProcess = 16
    Win32ServiceShareProcess = 32
    AdapterType = 4
    RecognizerType = 8
End Enum
import enum

class SERVICE_NODE_TYPE(enum.IntEnum):
    DriverType = 1
    FileSystemType = 2
    Win32ServiceOwnProcess = 16
    Win32ServiceShareProcess = 32
    AdapterType = 4
    RecognizerType = 8
// SERVICE_NODE_TYPE
pub const DriverType: i32 = 1;
pub const FileSystemType: i32 = 2;
pub const Win32ServiceOwnProcess: i32 = 16;
pub const Win32ServiceShareProcess: i32 = 32;
pub const AdapterType: i32 = 4;
pub const RecognizerType: i32 = 8;
// SERVICE_NODE_TYPE
const (
	DriverType int32 = 1
	FileSystemType int32 = 2
	Win32ServiceOwnProcess int32 = 16
	Win32ServiceShareProcess int32 = 32
	AdapterType int32 = 4
	RecognizerType int32 = 8
)
const
  DriverType = 1;
  FileSystemType = 2;
  Win32ServiceOwnProcess = 16;
  Win32ServiceShareProcess = 32;
  AdapterType = 4;
  RecognizerType = 8;
// SERVICE_NODE_TYPE
pub const DriverType: i32 = 1;
pub const FileSystemType: i32 = 2;
pub const Win32ServiceOwnProcess: i32 = 16;
pub const Win32ServiceShareProcess: i32 = 32;
pub const AdapterType: i32 = 4;
pub const RecognizerType: i32 = 8;
const
  DriverType* = 1
  FileSystemType* = 2
  Win32ServiceOwnProcess* = 16
  Win32ServiceShareProcess* = 32
  AdapterType* = 4
  RecognizerType* = 8
enum SERVICE_NODE_TYPE : int {
    DriverType = 1,
    FileSystemType = 2,
    Win32ServiceOwnProcess = 16,
    Win32ServiceShareProcess = 32,
    AdapterType = 4,
    RecognizerType = 8,
}
#define global DriverType               0x1
#define global FileSystemType           0x2
#define global Win32ServiceOwnProcess   0x10
#define global Win32ServiceShareProcess 0x20
#define global AdapterType              0x4
#define global RecognizerType           0x8