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

Especifica el modo de inicio de un juego remoto.

## Sintaxis

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

### Constantes

| Constante | Valor | Descripción                                                                                                                                                                                                                                                                   |
| --------- | ----- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Immediate | 0     | Inicia el juego inmediatamente. Este es el modo predeterminado.                                                                                                                                                                                                               |
| Suspended | 1     | Inicia el juego en estado suspendido. El proceso del juego se crea pero no comienza a ejecutarse hasta que se llama a [WdResumeRemoteGame](/reference/remoting/functions/wdresumeremotegame). Esto resulta útil para asociar un depurador antes de que comience la ejecución. |

## Comentarios

Esta enumeración se usa en la estructura [WdLaunchOptions](/reference/remoting/structs/wdlaunchoptions) para controlar cómo [WdLaunchRemoteGame](/reference/remoting/functions/wdlaunchremotegame) inicia un juego en el dispositivo remoto.

## Requisitos

| Requisito                        | Valor                              |
| -------------------------------- | ---------------------------------- |
| **Encabezado**                   | WdRemoteIteration.h                |
| **Biblioteca**                   | wdremoteapi.lib                    |
| **Sistema operativo compatible** | Windows 11 y versiones posteriores |
| **Arquitecturas compatibles**    | x64, ARM64                         |

## Consulte también

* [WdLaunchRemoteGame](/reference/remoting/functions/wdlaunchremotegame)
* [WdResumeRemoteGame](/reference/remoting/functions/wdresumeremotegame)
* [WdLaunchOptions](/reference/remoting/structs/wdlaunchoptions)
* [API de iteración remota de XBOX PC](/reference/remoting/remoteiteration_members)


## Related topics

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