[PSDK] Avoid CO_E_NOTINITIALIZED macro redefinition warning (#7649)

Addendum to commit 0e88f0485c
This commit is contained in:
Whindmar Saksit
2025-01-21 19:15:09 +01:00
committed by GitHub
parent c8b2c4c94d
commit 357505e752

View File

@@ -8,7 +8,9 @@
#else
#define IUnknown void
#if !defined(NT_BUILD_ENVIRONMENT) && !defined(WINNT)
#define CO_E_NOTINITIALIZED 0x800401F0L
#ifndef CO_E_NOTINITIALIZED /* Avoid conflict warning with _HRESULT_TYPEDEF_(0x800401F0L) in winerror.h */
#define CO_E_NOTINITIALIZED 0x800401F0L
#endif
#endif
#endif