Index: /trunk/src/VBox/Additions/common/crOpenGL/load.c
===================================================================
--- /trunk/src/VBox/Additions/common/crOpenGL/load.c	(revision 68247)
+++ /trunk/src/VBox/Additions/common/crOpenGL/load.c	(revision 68248)
@@ -31,5 +31,4 @@
 #include <d3d9types.h>
 #include <D3dumddi.h>
-#include "../../WINNT/Graphics/Video/common/wddm/VBoxMPIf.h"
 #endif
 
@@ -784,24 +783,4 @@
     }
     else crWarning("GetRegionData failed, VisibleRegions update failed");
-}
-
-static HRGN stubMakeRegionFromRects(PVBOXVIDEOCM_CMD_RECTS pRegions, uint32_t start)
-{
-    HRGN hRgn, hTmpRgn;
-    uint32_t i;
-
-    if (pRegions->RectsInfo.cRects<=start)
-    {
-        return INVALID_HANDLE_VALUE;
-    }
-
-    hRgn = CreateRectRgn(0, 0, 0, 0);
-    for (i=start; i<pRegions->RectsInfo.cRects; ++i)
-    {
-        hTmpRgn = CreateRectRgnIndirect(&pRegions->RectsInfo.aRects[i]);
-        CombineRgn(hRgn, hRgn, hTmpRgn, RGN_OR);
-        DeleteObject(hTmpRgn);
-    }
-    return hRgn;
 }
 
