From ec1057ebb6b3d515bff058af2feebf2868aadd42 Mon Sep 17 00:00:00 2001 From: thexai <58434170+thexai@users.noreply.github.com> Date: Sun, 19 Jul 2026 15:19:40 +0200 Subject: [PATCH] gh-152433: Windows: ``_uuid`` module: improve UWP compatibility (#152793) --- Modules/_uuidmodule.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Modules/_uuidmodule.c b/Modules/_uuidmodule.c index c31a7e8fea56..3edc29a75b32 100644 --- a/Modules/_uuidmodule.c +++ b/Modules/_uuidmodule.c @@ -20,6 +20,9 @@ #ifdef MS_WINDOWS #include +#ifndef RPC_S_OK +#define RPC_S_OK 0L +#endif #endif #ifndef MS_WINDOWS -- 2.47.3