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