ホーム › 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 | 割り当てられた時間内にタスクが完了しませんでした。 |
公式ドキュメント
IRDVTaskPluginNotifySink::OnTaskStateChange メソッドで使用され、タスクの状態を示します。
出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
各言語での定義
列挙メンバーの定義。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