RĂ©mi Assailly remi.assailly@free.fr writes:
Changelog:
- get rid of dce.h
--- dlls/x11drv/winpos.c 2004-12-09 19:10:35.000000000 +0100 +++ dlls/x11drv/winpos.c 2004-12-11 19:46:03.000000000 +0100 @@ -40,7 +40,6 @@ #include "x11drv.h" #include "win.h" #include "winpos.h" -#include "dce.h" #include "cursoricon.h" #include "nonclient.h"
@@ -49,6 +48,8 @@
WINE_DEFAULT_DEBUG_CHANNEL(x11drv);
+extern BOOL DCE_InvalidateDCE( HWND, const RECT* );
The goal of the header files cleanup is not to mechanically remove the #includes by duplicating the definitions, if we wanted to do that it would have been done long ago. The real goal is to get rid of the inter-dll dependencies, the global headers are really just a symptom of the problem.