> ## Documentation Index
> Fetch the complete documentation index at: https://devdocs.xbox.com/llms.txt
> Use this file to discover all available pages before exploring further.

# WdLaunchMode

> WdLaunchMode

# WdLaunchMode

リモート ゲームの起動モードを指定します。

## 構文

```cpp theme={null}
enum class WdLaunchMode : uint32_t
{
    Immediate = 0,
    Suspended = 1
};
```

### 定数

| 定数        | 値 | 説明                                                                                                                                                      |
| --------- | - | ------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Immediate | 0 | ゲームを直ちに起動します。これが既定のモードです。                                                                                                                               |
| Suspended | 1 | ゲームを中断状態で起動します。ゲーム プロセスは作成されますが、[WdResumeRemoteGame](/reference/remoting/functions/wdresumeremotegame) が呼び出されるまで実行を開始しません。実行が開始する前にデバッガーをアタッチする場合に便利です。 |

## 解説

この列挙型は、[WdLaunchOptions](/reference/remoting/structs/wdlaunchoptions) 構造体で、[WdLaunchRemoteGame](/reference/remoting/functions/wdlaunchremotegame) がリモート デバイス上でゲームをどのように起動するかを制御するために使用されます。

## 要件

| 要件                   | 値                   |
| -------------------- | ------------------- |
| **ヘッダー**             | WdRemoteIteration.h |
| **ライブラリ**            | wdremoteapi.lib     |
| **サポートされている OS**     | Windows 11 以降       |
| **サポートされているアーキテクチャ** | x64、ARM64           |

## 関連項目

* [WdLaunchRemoteGame](/reference/remoting/functions/wdlaunchremotegame)
* [WdResumeRemoteGame](/reference/remoting/functions/wdresumeremotegame)
* [WdLaunchOptions](/reference/remoting/structs/wdlaunchoptions)
* [XBOX PC Remote Iteration API](/reference/remoting/remoteiteration_members)


## Related topics

- [WdLaunchOptions](/ja-jp/reference/remoting/structs/wdlaunchoptions.md)
- [WdLaunchRemoteGame](/ja-jp/reference/remoting/functions/wdlaunchremotegame.md)
- [WdResumeRemoteGame](/ja-jp/reference/remoting/functions/wdresumeremotegame.md)
- [XBOX PC Remote Iteration API](/ja-jp/reference/remoting/remoteiteration_members.md)
- [XBOX PC Remote (wdRemote.exe)](/ja-jp/tools/tools-pc/commandlinetools/gr-wdRemote.md)
