This commit is contained in:
Vichingo455
2025-03-23 15:26:15 +01:00
parent cacf40b6cd
commit ad8366918e
72 changed files with 10255 additions and 2 deletions

11
launcher/Log.c Normal file
View File

@@ -0,0 +1,11 @@
#include "WULog.h"
#include "MsgBox.h"
void LaunchLog(int nCmdShow) {
HRESULT hr = ViewWindowsUpdateLog(nCmdShow);
if (!SUCCEEDED(hr)) {
MsgBox(NULL, GetMessageForHresult(hr), NULL, MB_OK);
}
PostQuitMessage(hr);
}