ホーム › System.RestartManager › RM_APP_TYPE
RM_APP_TYPE
列挙型メンバー 7
| 名前 | 10進 | 16進 |
|---|---|---|
| RmUnknownApp | 0 | 0x0 |
| RmMainWindow | 1 | 0x1 |
| RmOtherWindow | 2 | 0x2 |
| RmService | 3 | 0x3 |
| RmExplorer | 4 | 0x4 |
| RmConsole | 5 | 0x5 |
| RmCritical | 1000 | 0x3E8 |
各言語での定義
列挙メンバーの定義。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 Enumimport 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* = 1000enum 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