From c6220c2b47dd463f1cfa90db8c77d0389e5fff9e Mon Sep 17 00:00:00 2001 From: Vincent Rabaud Date: Mon, 8 Dec 2025 08:53:54 +0100 Subject: [PATCH] Add missing combaseapi.h include. This is needed for CoCreateGuid. --- modules/core/src/system.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/core/src/system.cpp b/modules/core/src/system.cpp index 98971d57eb..ef9facd4f1 100644 --- a/modules/core/src/system.cpp +++ b/modules/core/src/system.cpp @@ -178,6 +178,7 @@ const uint64_t AT_HWCAP = NT_GNU_HWCAP; #define _WIN32_WINNT 0x0400 // http://msdn.microsoft.com/en-us/library/ms686857(VS.85).aspx #endif #include +#include #if (_WIN32_WINNT >= 0x0602) #include #endif