You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
doesn't check the return code. Failures will slide by undetected and calls to other APIs will fail (and likely crash) e.g. if the MSIX packages aren't registered WinRT activations will fail due to E_CLASSDB_NOT_REGISTERED. This needs to be something like
int hr = MddBootstrap.Initialize(8, "preview");
if (hr < 0)
…error…