From 4ac5f9c262f9c4845abe6972b9025ca454b977a4 Mon Sep 17 00:00:00 2001 From: Danilo Borges Santos Date: Mon, 2 Dec 2024 17:36:44 -0300 Subject: [PATCH] Renomeia itens em HResult --- includes/csharp/exception.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/csharp/exception.hpp b/includes/csharp/exception.hpp index e71d136..f6e08a0 100644 --- a/includes/csharp/exception.hpp +++ b/includes/csharp/exception.hpp @@ -9,8 +9,8 @@ namespace csharp { struct HResults { - inline static constexpr size_t S_OK = 0x00000000; - inline static constexpr size_t S_FALSE = 0x1; + inline static constexpr size_t HR_S_OK = 0x00000000; + inline static constexpr size_t HR_S_FALSE = 0x1; inline static constexpr size_t COR_E_ABANDONEDMUTEX = 0x8013152D; inline static constexpr size_t COR_E_AMBIGUOUSIMPLEMENTATION = 0x8013106A; inline static constexpr size_t COR_E_AMBIGUOUSMATCH = 0x8000211D;