ホーム › System.RemoteDesktop › RDV_TASK_STATUS
RDV_TASK_STATUS
列挙型メンバー 9
| 名前 | 10進 | 16進 |
|---|---|---|
| RDV_TASK_STATUS_UNKNOWN | 0 | 0x0 |
| RDV_TASK_STATUS_SEARCHING | 1 | 0x1 |
| RDV_TASK_STATUS_DOWNLOADING | 2 | 0x2 |
| RDV_TASK_STATUS_APPLYING | 3 | 0x3 |
| RDV_TASK_STATUS_REBOOTING | 4 | 0x4 |
| RDV_TASK_STATUS_REBOOTED | 5 | 0x5 |
| RDV_TASK_STATUS_SUCCESS | 6 | 0x6 |
| RDV_TASK_STATUS_FAILED | 7 | 0x7 |
| RDV_TASK_STATUS_TIMEOUT | 8 | 0x8 |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum RDV_TASK_STATUS : int {
RDV_TASK_STATUS_UNKNOWN = 0,
RDV_TASK_STATUS_SEARCHING = 1,
RDV_TASK_STATUS_DOWNLOADING = 2,
RDV_TASK_STATUS_APPLYING = 3,
RDV_TASK_STATUS_REBOOTING = 4,
RDV_TASK_STATUS_REBOOTED = 5,
RDV_TASK_STATUS_SUCCESS = 6,
RDV_TASK_STATUS_FAILED = 7,
RDV_TASK_STATUS_TIMEOUT = 8
} RDV_TASK_STATUS;public enum RDV_TASK_STATUS : int
{
RDV_TASK_STATUS_UNKNOWN = 0,
RDV_TASK_STATUS_SEARCHING = 1,
RDV_TASK_STATUS_DOWNLOADING = 2,
RDV_TASK_STATUS_APPLYING = 3,
RDV_TASK_STATUS_REBOOTING = 4,
RDV_TASK_STATUS_REBOOTED = 5,
RDV_TASK_STATUS_SUCCESS = 6,
RDV_TASK_STATUS_FAILED = 7,
RDV_TASK_STATUS_TIMEOUT = 8,
}Public Enum RDV_TASK_STATUS As Integer
RDV_TASK_STATUS_UNKNOWN = 0
RDV_TASK_STATUS_SEARCHING = 1
RDV_TASK_STATUS_DOWNLOADING = 2
RDV_TASK_STATUS_APPLYING = 3
RDV_TASK_STATUS_REBOOTING = 4
RDV_TASK_STATUS_REBOOTED = 5
RDV_TASK_STATUS_SUCCESS = 6
RDV_TASK_STATUS_FAILED = 7
RDV_TASK_STATUS_TIMEOUT = 8
End Enumimport enum
class RDV_TASK_STATUS(enum.IntEnum):
RDV_TASK_STATUS_UNKNOWN = 0
RDV_TASK_STATUS_SEARCHING = 1
RDV_TASK_STATUS_DOWNLOADING = 2
RDV_TASK_STATUS_APPLYING = 3
RDV_TASK_STATUS_REBOOTING = 4
RDV_TASK_STATUS_REBOOTED = 5
RDV_TASK_STATUS_SUCCESS = 6
RDV_TASK_STATUS_FAILED = 7
RDV_TASK_STATUS_TIMEOUT = 8// RDV_TASK_STATUS
pub const RDV_TASK_STATUS_UNKNOWN: i32 = 0;
pub const RDV_TASK_STATUS_SEARCHING: i32 = 1;
pub const RDV_TASK_STATUS_DOWNLOADING: i32 = 2;
pub const RDV_TASK_STATUS_APPLYING: i32 = 3;
pub const RDV_TASK_STATUS_REBOOTING: i32 = 4;
pub const RDV_TASK_STATUS_REBOOTED: i32 = 5;
pub const RDV_TASK_STATUS_SUCCESS: i32 = 6;
pub const RDV_TASK_STATUS_FAILED: i32 = 7;
pub const RDV_TASK_STATUS_TIMEOUT: i32 = 8;// RDV_TASK_STATUS
const (
RDV_TASK_STATUS_UNKNOWN int32 = 0
RDV_TASK_STATUS_SEARCHING int32 = 1
RDV_TASK_STATUS_DOWNLOADING int32 = 2
RDV_TASK_STATUS_APPLYING int32 = 3
RDV_TASK_STATUS_REBOOTING int32 = 4
RDV_TASK_STATUS_REBOOTED int32 = 5
RDV_TASK_STATUS_SUCCESS int32 = 6
RDV_TASK_STATUS_FAILED int32 = 7
RDV_TASK_STATUS_TIMEOUT int32 = 8
)const
RDV_TASK_STATUS_UNKNOWN = 0;
RDV_TASK_STATUS_SEARCHING = 1;
RDV_TASK_STATUS_DOWNLOADING = 2;
RDV_TASK_STATUS_APPLYING = 3;
RDV_TASK_STATUS_REBOOTING = 4;
RDV_TASK_STATUS_REBOOTED = 5;
RDV_TASK_STATUS_SUCCESS = 6;
RDV_TASK_STATUS_FAILED = 7;
RDV_TASK_STATUS_TIMEOUT = 8;// RDV_TASK_STATUS
pub const RDV_TASK_STATUS_UNKNOWN: i32 = 0;
pub const RDV_TASK_STATUS_SEARCHING: i32 = 1;
pub const RDV_TASK_STATUS_DOWNLOADING: i32 = 2;
pub const RDV_TASK_STATUS_APPLYING: i32 = 3;
pub const RDV_TASK_STATUS_REBOOTING: i32 = 4;
pub const RDV_TASK_STATUS_REBOOTED: i32 = 5;
pub const RDV_TASK_STATUS_SUCCESS: i32 = 6;
pub const RDV_TASK_STATUS_FAILED: i32 = 7;
pub const RDV_TASK_STATUS_TIMEOUT: i32 = 8;const
RDV_TASK_STATUS_UNKNOWN* = 0
RDV_TASK_STATUS_SEARCHING* = 1
RDV_TASK_STATUS_DOWNLOADING* = 2
RDV_TASK_STATUS_APPLYING* = 3
RDV_TASK_STATUS_REBOOTING* = 4
RDV_TASK_STATUS_REBOOTED* = 5
RDV_TASK_STATUS_SUCCESS* = 6
RDV_TASK_STATUS_FAILED* = 7
RDV_TASK_STATUS_TIMEOUT* = 8enum RDV_TASK_STATUS : int {
RDV_TASK_STATUS_UNKNOWN = 0,
RDV_TASK_STATUS_SEARCHING = 1,
RDV_TASK_STATUS_DOWNLOADING = 2,
RDV_TASK_STATUS_APPLYING = 3,
RDV_TASK_STATUS_REBOOTING = 4,
RDV_TASK_STATUS_REBOOTED = 5,
RDV_TASK_STATUS_SUCCESS = 6,
RDV_TASK_STATUS_FAILED = 7,
RDV_TASK_STATUS_TIMEOUT = 8,
}#define global RDV_TASK_STATUS_UNKNOWN 0x0
#define global RDV_TASK_STATUS_SEARCHING 0x1
#define global RDV_TASK_STATUS_DOWNLOADING 0x2
#define global RDV_TASK_STATUS_APPLYING 0x3
#define global RDV_TASK_STATUS_REBOOTING 0x4
#define global RDV_TASK_STATUS_REBOOTED 0x5
#define global RDV_TASK_STATUS_SUCCESS 0x6
#define global RDV_TASK_STATUS_FAILED 0x7
#define global RDV_TASK_STATUS_TIMEOUT 0x8