Files
WUIsBack/nsisplugin/MessageForHresult.c
Vichingo455 23ac8a27f0 Bump to 1.11
2025-03-23 12:49:51 +01:00

18 lines
308 B
C

#include <windows.h>
#include <nsis/pluginapi.h>
#include "../shared/HResult.h"
PLUGIN_METHOD(MessageForHresult) {
PLUGIN_INIT();
HRESULT hr = popint();
if (hr == 0) {
pushstring(L"Unknown error");
return;
}
LPWSTR message = GetMessageForHresult(hr);
pushstring(message);
LocalFree(message);
}