| 1 | # WslcGetContainerInitProcess |
| 2 | |
| 3 | ```c |
| 4 | STDAPI WslcGetContainerInitProcess(_In_ WslcContainer container, _Out_ WslcProcess* initProcess); |
| 5 | ``` |
| 6 | |
| 7 | | Parameter | Type | Direction | |
| 8 | |---|---|---| |
| 9 | | `container` | `WslcContainer` | in | |
| 10 | | `initProcess` | `WslcProcess*` | out | |
| 11 | |
| 12 | Return value: `HRESULT`. |
| 13 | |
| 14 | Example: |
| 15 | |
| 16 | ```c |
| 17 | WslcProcess initProcess = NULL; |
| 18 | HRESULT hr = WslcGetContainerInitProcess(container, &initProcess); |
| 19 | ``` |