> ## 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

Specifies the launch mode for a remote game.

## Syntax

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

### Constants

| Constant  | Value | Description                                                                                                                                                                                                                                             |
| --------- | ----- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Immediate | 0     | Launch the game immediately. This is the default mode.                                                                                                                                                                                                  |
| Suspended | 1     | Launch the game in a suspended state. The game process is created but does not begin executing until [WdResumeRemoteGame](/reference/remoting/functions/wdresumeremotegame) is called. This is useful for attaching a debugger before execution begins. |

## Remarks

This enumeration is used in the [WdLaunchOptions](/reference/remoting/structs/wdlaunchoptions) structure to control how [WdLaunchRemoteGame](/reference/remoting/functions/wdlaunchremotegame) starts a game on the remote device.

## Requirements

| Requirement                 | Value                |
| --------------------------- | -------------------- |
| **Header**                  | WdRemoteIteration.h  |
| **Library**                 | wdremoteapi.lib      |
| **Supported OS**            | Windows 11 and later |
| **Supported architectures** | x64, ARM64           |

## See also

* [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](/reference/remoting/structs/wdlaunchoptions.md)
- [WdLaunchRemoteGame](/reference/remoting/functions/wdlaunchremotegame.md)
- [WdResumeRemoteGame](/reference/remoting/functions/wdresumeremotegame.md)
- [XBOX PC Remote Iteration API](/reference/remoting/remoteiteration_members.md)
- [Title launches](/services/playfab/pricing/title-launches.md)
