ホーム › System.SystemServices › SERVICE_NODE_TYPE
SERVICE_NODE_TYPE
列挙型メンバー 6
| 名前 | 10進 | 16進 |
|---|---|---|
| DriverType | 1 | 0x1 |
| FileSystemType | 2 | 0x2 |
| Win32ServiceOwnProcess | 16 | 0x10 |
| Win32ServiceShareProcess | 32 | 0x20 |
| AdapterType | 4 | 0x4 |
| RecognizerType | 8 | 0x8 |
各言語での定義
列挙メンバーの定義。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 Enumimport 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* = 8enum 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