| 1 | # WslcGetMissingComponents |
| 2 | |
| 3 | ```c |
| 4 | STDAPI WslcGetMissingComponents(_Out_ WslcComponentFlags* missingComponents); |
| 5 | ``` |
| 6 | |
| 7 | | Parameter | Type | Direction | |
| 8 | |---|---|---| |
| 9 | | `missingComponents` | `WslcComponentFlags*` | out | |
| 10 | |
| 11 | Return value: `HRESULT`. |
| 12 | |
| 13 | Example: |
| 14 | |
| 15 | ```c |
| 16 | WslcComponentFlags missingComponents = WSLC_COMPONENT_FLAG_NONE; |
| 17 | HRESULT hr = WslcGetMissingComponents(&missingComponents); |
| 18 | ``` |