BOOL WslApiLoader::WslIsOptionalComponentInstalled()

in DistroLauncher/WslApiLoader.cpp [29:37]


BOOL WslApiLoader::WslIsOptionalComponentInstalled()
{
    return ((_wslApiDll != nullptr) && 
            (_isDistributionRegistered != nullptr) &&
            (_registerDistribution != nullptr) &&
            (_configureDistribution != nullptr) &&
            (_launchInteractive != nullptr) &&
            (_launch != nullptr));
}