April 10, 2019 5:41 AM, "Nikolay Sivov" nsivov@codeweavers.com wrote:
@@ -414,6 +420,54 @@ DECLARE_INTERFACE_(IDebugDataSpaces, IUnknown) }; #undef INTERFACE
+#define INTERFACE IDebugDataSpaces2 +DECLARE_INTERFACE_(IDebugDataSpaces2, IUnknown)
Shouldn't that be:
DECLARE_INTERFACE_(IDebugDataSpaces2, IDebugDataSpaces)
? Or is MS's header like that? I guess it'd only matter in C++ anyway.
There are two others where the base appears to be wrong (IDebugSystemObjects2, IDebugSystemObjects3).
Chip