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

RM_APP_TYPE

列挙型
基底型i4

メンバー 7

名前10進16進
RmUnknownApp00x0
RmMainWindow10x1
RmOtherWindow20x2
RmService30x3
RmExplorer40x4
RmConsole50x5
RmCritical10000x3E8

各言語での定義

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

typedef enum RM_APP_TYPE : int {
    RmUnknownApp = 0,
    RmMainWindow = 1,
    RmOtherWindow = 2,
    RmService = 3,
    RmExplorer = 4,
    RmConsole = 5,
    RmCritical = 1000
} RM_APP_TYPE;
public enum RM_APP_TYPE : int
{
    RmUnknownApp = 0,
    RmMainWindow = 1,
    RmOtherWindow = 2,
    RmService = 3,
    RmExplorer = 4,
    RmConsole = 5,
    RmCritical = 1000,
}
Public Enum RM_APP_TYPE As Integer
    RmUnknownApp = 0
    RmMainWindow = 1
    RmOtherWindow = 2
    RmService = 3
    RmExplorer = 4
    RmConsole = 5
    RmCritical = 1000
End Enum
import enum

class RM_APP_TYPE(enum.IntEnum):
    RmUnknownApp = 0
    RmMainWindow = 1
    RmOtherWindow = 2
    RmService = 3
    RmExplorer = 4
    RmConsole = 5
    RmCritical = 1000
// RM_APP_TYPE
pub const RmUnknownApp: i32 = 0;
pub const RmMainWindow: i32 = 1;
pub const RmOtherWindow: i32 = 2;
pub const RmService: i32 = 3;
pub const RmExplorer: i32 = 4;
pub const RmConsole: i32 = 5;
pub const RmCritical: i32 = 1000;
// RM_APP_TYPE
const (
	RmUnknownApp int32 = 0
	RmMainWindow int32 = 1
	RmOtherWindow int32 = 2
	RmService int32 = 3
	RmExplorer int32 = 4
	RmConsole int32 = 5
	RmCritical int32 = 1000
)
const
  RmUnknownApp = 0;
  RmMainWindow = 1;
  RmOtherWindow = 2;
  RmService = 3;
  RmExplorer = 4;
  RmConsole = 5;
  RmCritical = 1000;
// RM_APP_TYPE
pub const RmUnknownApp: i32 = 0;
pub const RmMainWindow: i32 = 1;
pub const RmOtherWindow: i32 = 2;
pub const RmService: i32 = 3;
pub const RmExplorer: i32 = 4;
pub const RmConsole: i32 = 5;
pub const RmCritical: i32 = 1000;
const
  RmUnknownApp* = 0
  RmMainWindow* = 1
  RmOtherWindow* = 2
  RmService* = 3
  RmExplorer* = 4
  RmConsole* = 5
  RmCritical* = 1000
enum RM_APP_TYPE : int {
    RmUnknownApp = 0,
    RmMainWindow = 1,
    RmOtherWindow = 2,
    RmService = 3,
    RmExplorer = 4,
    RmConsole = 5,
    RmCritical = 1000,
}
#define global RmUnknownApp  0x0
#define global RmMainWindow  0x1
#define global RmOtherWindow 0x2
#define global RmService     0x3
#define global RmExplorer    0x4
#define global RmConsole     0x5
#define global RmCritical    0x3E8