com fails

gui
qtkite 2 years ago
parent d361ef7dee
commit fe47653a3c

@ -6,6 +6,7 @@
namespace wmic namespace wmic
{ {
helper::helper(std::string wnamespace, std::string wclass, std::string wmethod) helper::helper(std::string wnamespace, std::string wclass, std::string wmethod)
{ {
// Initialize // Initialize
@ -29,7 +30,7 @@ namespace wmic
if (FAILED(hres)) if (FAILED(hres))
{ {
last_error = 1; last_error = ERR_COM_FAIL;
return; return;
} }
@ -62,7 +63,7 @@ namespace wmic
if (FAILED(hres)) if (FAILED(hres))
{ {
last_error = 3; last_error = ERR_COM_SEC_FAIL;
CoUninitialize(); CoUninitialize();
return; return;
} }

@ -12,6 +12,9 @@
namespace wmic namespace wmic
{ {
constexpr int ERR_COM_FAIL = 1;
constexpr int ERR_COM_SEC_FAIL = 2;
enum class variant_type : int enum class variant_type : int
{ {
t_bool, t_bool,

Loading…
Cancel
Save