Janitorial: Include statements should use <> instead of ""

Andrey Warkentin andyw at imsa.edu
Mon Sep 1 17:55:05 CDT 2003


Currently done: wine/controls/* and wine/dlls/gdi/* (with the exception 
of wine/dlls/gdi/tests/generated.c)

ChangeLog
      Include statements use <> instead of "" in files in wine/controls
and wine/dlls/gdi
-------------- next part --------------
? janitorial.diff
Index: controls/button.c
===================================================================
RCS file: /home/wine/wine/controls/button.c,v
retrieving revision 1.65
diff -u -r1.65 button.c
--- controls/button.c	8 May 2003 17:31:35 -0000	1.65
+++ controls/button.c	1 Sep 2003 22:40:48 -0000
@@ -22,12 +22,12 @@
 #include <string.h>
 #include <stdlib.h>
 
-#include "winbase.h"
-#include "windef.h"
-#include "wingdi.h"
-#include "wine/winuser16.h"
-#include "controls.h"
-#include "user.h"
+#include <winbase.h>
+#include <windef.h>
+#include <wingdi.h>
+#include <wine/winuser16.h>
+#include <controls.h>
+#include <user.h>
 
 /* GetWindowLong offsets for window extra information */
 #define STATE_GWL_OFFSET  0
Index: controls/combo.c
===================================================================
RCS file: /home/wine/wine/controls/combo.c,v
retrieving revision 1.98
diff -u -r1.98 combo.c
--- controls/combo.c	2 Jul 2003 04:37:26 -0000	1.98
+++ controls/combo.c	1 Sep 2003 22:40:49 -0000
@@ -22,17 +22,17 @@
 
 #include <string.h>
 
-#include "winbase.h"
-#include "windef.h"
-#include "wingdi.h"
-#include "winuser.h"
-#include "wine/winuser16.h"
-#include "wine/unicode.h"
-#include "message.h"
-#include "user.h"
-#include "win.h"
-#include "controls.h"
-#include "wine/debug.h"
+#include <winbase.h>
+#include <windef.h>
+#include <wingdi.h>
+#include <winuser.h>
+#include <wine/winuser16.h>
+#include <wine/unicode.h>
+#include <message.h>
+#include <user.h>
+#include <win.h>
+#include <controls.h>
+#include <wine/debug.h>
 
 WINE_DEFAULT_DEBUG_CHANNEL(combo);
 
Index: controls/desktop.c
===================================================================
RCS file: /home/wine/wine/controls/desktop.c,v
retrieving revision 1.29
diff -u -r1.29 desktop.c
--- controls/desktop.c	19 Apr 2003 21:27:19 -0000	1.29
+++ controls/desktop.c	1 Sep 2003 22:40:49 -0000
@@ -18,7 +18,7 @@
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
-#include "config.h"
+#include <config.h>
 
 #include <stdio.h>
 #include <string.h>
@@ -26,11 +26,11 @@
 # include <unistd.h>
 #endif
 
-#include "windef.h"
-#include "wingdi.h"
-#include "user.h"
-#include "controls.h"
-#include "wine/winuser16.h"
+#include <windef.h>
+#include <wingdi.h>
+#include <user.h>
+#include <controls.h>
+#include <wine/winuser16.h>
 
 static HBRUSH hbrushPattern;
 static HBITMAP hbitmapWallPaper;
Index: controls/edit.c
===================================================================
RCS file: /home/wine/wine/controls/edit.c,v
retrieving revision 1.118
diff -u -r1.118 edit.c
--- controls/edit.c	4 Jun 2003 20:29:06 -0000	1.118
+++ controls/edit.c	1 Sep 2003 22:40:51 -0000
@@ -37,22 +37,22 @@
  *
  */
 
-#include "config.h"
+#include <config.h>
 
 #include <string.h>
 #include <stdlib.h>
 
-#include "winbase.h"
-#include "winnt.h"
-#include "wownt32.h"
-#include "win.h"
-#include "wine/winbase16.h"
-#include "wine/winuser16.h"
-#include "wine/unicode.h"
-#include "controls.h"
-#include "local.h"
-#include "user.h"
-#include "wine/debug.h"
+#include <winbase.h>
+#include <winnt.h>
+#include <wownt32.h>
+#include <win.h>
+#include <wine/winbase16.h>
+#include <wine/winuser16.h>
+#include <wine/unicode.h>
+#include <controls.h>
+#include <local.h>
+#include <user.h>
+#include <wine/debug.h>
 
 WINE_DEFAULT_DEBUG_CHANNEL(edit);
 WINE_DECLARE_DEBUG_CHANNEL(combo);
Index: controls/icontitle.c
===================================================================
RCS file: /home/wine/wine/controls/icontitle.c,v
retrieving revision 1.27
diff -u -r1.27 icontitle.c
--- controls/icontitle.c	22 Nov 2002 04:47:11 -0000	1.27
+++ controls/icontitle.c	1 Sep 2003 22:40:51 -0000
@@ -18,7 +18,7 @@
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
-#include "config.h"
+#include <config.h>
 
 #include <stdio.h>
 #include <string.h>
@@ -26,14 +26,14 @@
 # include <unistd.h>
 #endif
 
-#include "windef.h"
-#include "winbase.h"
-#include "wingdi.h"
-#include "winuser.h"
-#include "wine/winuser16.h"
-#include "wine/unicode.h"
-#include "controls.h"
-#include "win.h"
+#include <windef.h>
+#include <winbase.h>
+#include <wingdi.h>
+#include <winuser.h>
+#include <wine/winuser16.h>
+#include <wine/unicode.h>
+#include <controls.h>
+#include <win.h>
 
 static BOOL bMultiLineTitle;
 static HFONT hIconTitleFont;
Index: controls/listbox.c
===================================================================
RCS file: /home/wine/wine/controls/listbox.c,v
retrieving revision 1.94
diff -u -r1.94 listbox.c
--- controls/listbox.c	4 Jun 2003 20:21:45 -0000	1.94
+++ controls/listbox.c	1 Sep 2003 22:40:52 -0000
@@ -21,19 +21,19 @@
 #include <string.h>
 #include <stdlib.h>
 #include <stdio.h>
-#include "windef.h"
-#include "wingdi.h"
-#include "wine/winuser16.h"
-#include "wine/winbase16.h"
-#include "wownt32.h"
-#include "wine/unicode.h"
-#include "winuser.h"
-#include "winerror.h"
-#include "message.h"
-#include "user.h"
-#include "controls.h"
-#include "wine/debug.h"
-#include "win.h"
+#include <windef.h>
+#include <wingdi.h>
+#include <wine/winuser16.h>
+#include <wine/winbase16.h>
+#include <wownt32.h>
+#include <wine/unicode.h>
+#include <winuser.h>
+#include <winerror.h>
+#include <message.h>
+#include <user.h>
+#include <controls.h>
+#include <wine/debug.h>
+#include <win.h>
 
 WINE_DEFAULT_DEBUG_CHANNEL(listbox);
 WINE_DECLARE_DEBUG_CHANNEL(combo);
Index: controls/menu.c
===================================================================
RCS file: /home/wine/wine/controls/menu.c,v
retrieving revision 1.165
diff -u -r1.165 menu.c
--- controls/menu.c	20 Aug 2003 18:22:32 -0000	1.165
+++ controls/menu.c	1 Sep 2003 22:40:54 -0000
@@ -26,28 +26,28 @@
  * This is probably not the meaning this style has in MS-Windows.
  */
 
-#include "config.h"
-#include "wine/port.h"
+#include <config.h>
+#include <wine/port.h>
 
 #include <assert.h>
 #include <ctype.h>
 #include <stdlib.h>
 #include <string.h>
 
-#include "windef.h"
-#include "winbase.h"
-#include "wingdi.h"
-#include "winnls.h"
-#include "wine/winbase16.h"
-#include "wine/winuser16.h"
-#include "wownt32.h"
-#include "wine/server.h"
-#include "wine/unicode.h"
-#include "win.h"
-#include "controls.h"
-#include "nonclient.h"
-#include "user.h"
-#include "wine/debug.h"
+#include <windef.h>
+#include <winbase.h>
+#include <wingdi.h>
+#include <winnls.h>
+#include <wine/winbase16.h>
+#include <wine/winuser16.h>
+#include <wownt32.h>
+#include <wine/server.h>
+#include <wine/unicode.h>
+#include <win.h>
+#include <controls.h>
+#include <nonclient.h>
+#include <user.h>
+#include <wine/debug.h>
 
 WINE_DEFAULT_DEBUG_CHANNEL(menu);
 WINE_DECLARE_DEBUG_CHANNEL(accel);
Index: controls/scroll.c
===================================================================
RCS file: /home/wine/wine/controls/scroll.c,v
retrieving revision 1.67
diff -u -r1.67 scroll.c
--- controls/scroll.c	11 Aug 2003 18:43:08 -0000	1.67
+++ controls/scroll.c	1 Sep 2003 22:40:55 -0000
@@ -19,14 +19,14 @@
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
-#include "windef.h"
-#include "wingdi.h"
-#include "wine/winuser16.h"
-#include "controls.h"
-#include "win.h"
-#include "wine/debug.h"
-#include "user.h"
-#include "message.h"
+#include <windef.h>
+#include <wingdi.h>
+#include <wine/winuser16.h>
+#include <controls.h>
+#include <win.h>
+#include <wine/debug.h>
+#include <user.h>
+#include <message.h>
 
 WINE_DEFAULT_DEBUG_CHANNEL(scroll);
 
Index: controls/static.c
===================================================================
RCS file: /home/wine/wine/controls/static.c,v
retrieving revision 1.43
diff -u -r1.43 static.c
--- controls/static.c	23 Aug 2003 00:46:34 -0000	1.43
+++ controls/static.c	1 Sep 2003 22:40:55 -0000
@@ -18,14 +18,14 @@
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
-#include "windef.h"
-#include "wingdi.h"
-#include "wine/winuser16.h"
-#include "wownt32.h"
-#include "cursoricon.h"
-#include "controls.h"
-#include "user.h"
-#include "wine/debug.h"
+#include <windef.h>
+#include <wingdi.h>
+#include <wine/winuser16.h>
+#include <wownt32.h>
+#include <cursoricon.h>
+#include <controls.h>
+#include <user.h>
+#include <wine/debug.h>
 
 WINE_DEFAULT_DEBUG_CHANNEL(static);
 
Index: controls/uitools.c
===================================================================
RCS file: /home/wine/wine/controls/uitools.c,v
retrieving revision 1.31
diff -u -r1.31 uitools.c
--- controls/uitools.c	8 Jan 2003 21:09:28 -0000	1.31
+++ controls/uitools.c	1 Sep 2003 22:40:56 -0000
@@ -19,12 +19,12 @@
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
-#include "windef.h"
-#include "wingdi.h"
-#include "wine/winuser16.h"
-#include "winuser.h"
-#include "user.h"
-#include "wine/debug.h"
+#include <windef.h>
+#include <wingdi.h>
+#include <wine/winuser16.h>
+#include <winuser.h>
+#include <user.h>
+#include <wine/debug.h>
 
 WINE_DEFAULT_DEBUG_CHANNEL(graphics);
 
Index: dlls/gdi/bidi.c
===================================================================
RCS file: /home/wine/wine/dlls/gdi/bidi.c,v
retrieving revision 1.1
diff -u -r1.1 bidi.c
--- dlls/gdi/bidi.c	27 Jun 2003 20:47:16 -0000	1.1
+++ dlls/gdi/bidi.c	1 Sep 2003 22:40:56 -0000
@@ -19,16 +19,16 @@
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
-#include "config.h"
+#include <config.h>
 
 #ifdef HAVE_UNICODE_UBIDI_H
 #include <unicode/ubidi.h>
 #endif
 
-#include "winbase.h"
-#include "wingdi.h"
-#include "wine/debug.h"
-#include "gdi.h"
+#include <winbase.h>
+#include <wingdi.h>
+#include <wine/debug.h>
+#include <gdi.h>
 
 WINE_DEFAULT_DEBUG_CHANNEL(bidi);
 
Index: dlls/gdi/bidi16.c
===================================================================
RCS file: /home/wine/wine/dlls/gdi/bidi16.c,v
retrieving revision 1.6
diff -u -r1.6 bidi16.c
--- dlls/gdi/bidi16.c	16 Aug 2002 00:42:06 -0000	1.6
+++ dlls/gdi/bidi16.c	1 Sep 2003 22:40:56 -0000
@@ -19,9 +19,9 @@
  * NOTE: Right now, most of these functions do nothing.
  */
 
-#include "windef.h"
-#include "wine/wingdi16.h"
-#include "wine/debug.h"
+#include <windef.h>
+#include <wine/wingdi16.h>
+#include <wine/debug.h>
 
 WINE_DEFAULT_DEBUG_CHANNEL(gdi);
 
Index: dlls/gdi/driver.c
===================================================================
RCS file: /home/wine/wine/dlls/gdi/driver.c,v
retrieving revision 1.26
diff -u -r1.26 driver.c
--- dlls/gdi/driver.c	12 Aug 2003 23:50:55 -0000	1.26
+++ dlls/gdi/driver.c	1 Sep 2003 22:40:56 -0000
@@ -18,16 +18,16 @@
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
-#include "config.h"
-#include "wine/port.h"
+#include <config.h>
+#include <wine/port.h>
 
 #include <string.h>
-#include "winbase.h"
-#include "winreg.h"
+#include <winbase.h>
+#include <winreg.h>
 
-#include "gdi.h"
-#include "wine/unicode.h"
-#include "wine/debug.h"
+#include <gdi.h>
+#include <wine/unicode.h>
+#include <wine/debug.h>
 
 WINE_DEFAULT_DEBUG_CHANNEL(driver);
 
Index: dlls/gdi/freetype.c
===================================================================
RCS file: /home/wine/wine/dlls/gdi/freetype.c,v
retrieving revision 1.33
diff -u -r1.33 freetype.c
--- dlls/gdi/freetype.c	23 Jun 2003 20:51:06 -0000	1.33
+++ dlls/gdi/freetype.c	1 Sep 2003 22:40:57 -0000
@@ -21,16 +21,16 @@
  */
 
 
-#include "config.h"
+#include <config.h>
 
-#include "windef.h"
-#include "winerror.h"
-#include "winreg.h"
-#include "wingdi.h"
-#include "wine/unicode.h"
-#include "wine/port.h"
-#include "wine/debug.h"
-#include "gdi.h"
+#include <windef.h>
+#include <winerror.h>
+#include <winreg.h>
+#include <wingdi.h>
+#include <wine/unicode.h>
+#include <wine/port.h>
+#include <wine/debug.h>
+#include <gdi.h>
 
 #include <stdlib.h>
 #include <sys/stat.h>
Index: dlls/gdi/gdi16.c
===================================================================
RCS file: /home/wine/wine/dlls/gdi/gdi16.c,v
retrieving revision 1.11
diff -u -r1.11 gdi16.c
--- dlls/gdi/gdi16.c	27 Feb 2003 21:09:46 -0000	1.11
+++ dlls/gdi/gdi16.c	1 Sep 2003 22:40:58 -0000
@@ -18,12 +18,12 @@
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
-#include "winbase.h"
-#include "wingdi.h"
-#include "wownt32.h"
-#include "wine/wingdi16.h"
-#include "gdi.h"
-#include "wine/debug.h"
+#include <winbase.h>
+#include <wingdi.h>
+#include <wownt32.h>
+#include <wine/wingdi16.h>
+#include <gdi.h>
+#include <wine/debug.h>
 
 WINE_DEFAULT_DEBUG_CHANNEL(gdi);
 
Index: dlls/gdi/gdi_main.c
===================================================================
RCS file: /home/wine/wine/dlls/gdi/gdi_main.c,v
retrieving revision 1.15
diff -u -r1.15 gdi_main.c
--- dlls/gdi/gdi_main.c	30 Jun 2003 20:53:49 -0000	1.15
+++ dlls/gdi/gdi_main.c	1 Sep 2003 22:40:58 -0000
@@ -19,12 +19,12 @@
  */
 
 #include <string.h>
-#include "windef.h"
-#include "wingdi.h"
-#include "wine/winbase16.h"
+#include <windef.h>
+#include <wingdi.h>
+#include <wine/winbase16.h>
 
-#include "gdi.h"
-#include "winbase.h"
+#include <gdi.h>
+#include <winbase.h>
 
 /***********************************************************************
  *           GDI initialisation routine
Index: dlls/gdi/printdrv.c
===================================================================
RCS file: /home/wine/wine/dlls/gdi/printdrv.c,v
retrieving revision 1.33
diff -u -r1.33 printdrv.c
--- dlls/gdi/printdrv.c	13 May 2003 00:45:44 -0000	1.33
+++ dlls/gdi/printdrv.c	1 Sep 2003 22:40:58 -0000
@@ -21,8 +21,8 @@
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
-#include "config.h"
-#include "wine/port.h"
+#include <config.h>
+#include <wine/port.h>
 
 #include <stdio.h>
 #include <signal.h>
@@ -37,18 +37,18 @@
 # include <unistd.h>
 #endif
 #include <fcntl.h>
-#include "winbase.h"
-#include "winuser.h"
-#include "wine/winbase16.h"
-#include "wine/wingdi16.h"
-#include "winspool.h"
-#include "winerror.h"
-#include "winreg.h"
-#include "wownt32.h"
-#include "wine/debug.h"
-#include "gdi.h"
-#include "heap.h"
-#include "file.h"
+#include <winbase.h>
+#include <winuser.h>
+#include <wine/winbase16.h>
+#include <wine/wingdi16.h>
+#include <winspool.h>
+#include <winerror.h>
+#include <winreg.h>
+#include <wownt32.h>
+#include <wine/debug.h>
+#include <gdi.h>
+#include <heap.h>
+#include <file.h>
 
 WINE_DEFAULT_DEBUG_CHANNEL(print);
 
Index: dlls/gdi/version.rc
===================================================================
RCS file: /home/wine/wine/dlls/gdi/version.rc,v
retrieving revision 1.2
diff -u -r1.2 version.rc
--- dlls/gdi/version.rc	9 Mar 2002 23:33:03 -0000	1.2
+++ dlls/gdi/version.rc	1 Sep 2003 22:40:58 -0000
@@ -20,4 +20,4 @@
 #define WINE_FILEDESCRIPTION_STR "Wine core dll"
 #define WINE_FILENAME_STR "gdi32.dll"
 
-#include "wine/wine_common_ver.rc"
+#include <wine/wine_common_ver.rc>
Index: dlls/gdi/version16.rc
===================================================================
RCS file: /home/wine/wine/dlls/gdi/version16.rc,v
retrieving revision 1.2
diff -u -r1.2 version16.rc
--- dlls/gdi/version16.rc	9 Mar 2002 23:33:03 -0000	1.2
+++ dlls/gdi/version16.rc	1 Sep 2003 22:40:58 -0000
@@ -20,4 +20,4 @@
 #define WINE_FILEDESCRIPTION_STR "Wine core dll"
 #define WINE_FILENAME_STR "gdi.exe"
 
-#include "wine/wine_common_ver.rc"
+#include <wine/wine_common_ver.rc>
Index: dlls/gdi/wing.c
===================================================================
RCS file: /home/wine/wine/dlls/gdi/wing.c,v
retrieving revision 1.11
diff -u -r1.11 wing.c
--- dlls/gdi/wing.c	21 Nov 2002 21:50:05 -0000	1.11
+++ dlls/gdi/wing.c	1 Sep 2003 22:40:59 -0000
@@ -18,14 +18,14 @@
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
-#include "config.h"
+#include <config.h>
 
-#include "wine/winuser16.h"
-#include "bitmap.h"
-#include "wine/debug.h"
-#include "palette.h"
-#include "windef.h"
-#include "wownt32.h"
+#include <wine/winuser16.h>
+#include <bitmap.h>
+#include <wine/debug.h>
+#include <palette.h>
+#include <windef.h>
+#include <wownt32.h>
 
 WINE_DEFAULT_DEBUG_CHANNEL(wing);
 
Index: dlls/gdi/enhmfdrv/bitblt.c
===================================================================
RCS file: /home/wine/wine/dlls/gdi/enhmfdrv/bitblt.c,v
retrieving revision 1.2
diff -u -r1.2 bitblt.c
--- dlls/gdi/enhmfdrv/bitblt.c	19 May 2003 18:49:52 -0000	1.2
+++ dlls/gdi/enhmfdrv/bitblt.c	1 Sep 2003 22:40:59 -0000
@@ -20,11 +20,11 @@
 
 #include <string.h>
 
-#include "windef.h"
-#include "wingdi.h"
-#include "gdi.h"
+#include <windef.h>
+#include <wingdi.h>
+#include <gdi.h>
 #include "enhmetafiledrv.h"
-#include "wine/debug.h"
+#include <wine/debug.h>
 
 WINE_DEFAULT_DEBUG_CHANNEL(enhmetafile);
 
Index: dlls/gdi/enhmfdrv/dc.c
===================================================================
RCS file: /home/wine/wine/dlls/gdi/enhmfdrv/dc.c,v
retrieving revision 1.7
diff -u -r1.7 dc.c
--- dlls/gdi/enhmfdrv/dc.c	19 May 2003 21:51:44 -0000	1.7
+++ dlls/gdi/enhmfdrv/dc.c	1 Sep 2003 22:40:59 -0000
@@ -18,8 +18,8 @@
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
-#include "enhmfdrv/enhmetafiledrv.h"
-#include "wine/debug.h"
+#include "enhmetafiledrv.h"
+#include <wine/debug.h>
 
 WINE_DEFAULT_DEBUG_CHANNEL(enhmetafile);
 
Index: dlls/gdi/enhmfdrv/enhmetafiledrv.h
===================================================================
RCS file: /home/wine/wine/dlls/gdi/enhmfdrv/enhmetafiledrv.h,v
retrieving revision 1.11
diff -u -r1.11 enhmetafiledrv.h
--- dlls/gdi/enhmfdrv/enhmetafiledrv.h	23 Jun 2003 19:46:56 -0000	1.11
+++ dlls/gdi/enhmfdrv/enhmetafiledrv.h	1 Sep 2003 22:40:59 -0000
@@ -21,9 +21,9 @@
 #ifndef __WINE_ENHMETAFILEDRV_H
 #define __WINE_ENHMETAFILEDRV_H
 
-#include "windef.h"
-#include "wingdi.h"
-#include "gdi.h"
+#include <windef.h>
+#include <wingdi.h>
+#include <gdi.h>
 
 /* Enhanced Metafile driver physical DC */
 
Index: dlls/gdi/enhmfdrv/graphics.c
===================================================================
RCS file: /home/wine/wine/dlls/gdi/enhmfdrv/graphics.c,v
retrieving revision 1.7
diff -u -r1.7 graphics.c
--- dlls/gdi/enhmfdrv/graphics.c	19 May 2003 18:48:37 -0000	1.7
+++ dlls/gdi/enhmfdrv/graphics.c	1 Sep 2003 22:40:59 -0000
@@ -18,15 +18,15 @@
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
-#include "config.h"
-#include "wine/port.h"
+#include <config.h>
+#include <wine/port.h>
 
 #include <stdlib.h>
 #include <string.h>
 
-#include "gdi.h"
-#include "enhmfdrv/enhmetafiledrv.h"
-#include "wine/debug.h"
+#include <gdi.h>
+#include "enhmetafiledrv.h"
+#include <wine/debug.h>
 
 WINE_DEFAULT_DEBUG_CHANNEL(enhmetafile);
 
Index: dlls/gdi/enhmfdrv/init.c
===================================================================
RCS file: /home/wine/wine/dlls/gdi/enhmfdrv/init.c,v
retrieving revision 1.19
diff -u -r1.19 init.c
--- dlls/gdi/enhmfdrv/init.c	23 Jun 2003 19:46:56 -0000	1.19
+++ dlls/gdi/enhmfdrv/init.c	1 Sep 2003 22:40:59 -0000
@@ -20,11 +20,11 @@
 
 #include <string.h>
 
-#include "windef.h"
-#include "wingdi.h"
-#include "gdi.h"
-#include "enhmfdrv/enhmetafiledrv.h"
-#include "wine/debug.h"
+#include <windef.h>
+#include <wingdi.h>
+#include <gdi.h>
+#include "enhmetafiledrv.h"
+#include <wine/debug.h>
 
 WINE_DEFAULT_DEBUG_CHANNEL(enhmetafile);
 
Index: dlls/gdi/enhmfdrv/mapping.c
===================================================================
RCS file: /home/wine/wine/dlls/gdi/enhmfdrv/mapping.c,v
retrieving revision 1.4
diff -u -r1.4 mapping.c
--- dlls/gdi/enhmfdrv/mapping.c	23 Jun 2003 19:46:56 -0000	1.4
+++ dlls/gdi/enhmfdrv/mapping.c	1 Sep 2003 22:40:59 -0000
@@ -18,7 +18,7 @@
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
-#include "enhmfdrv/enhmetafiledrv.h"
+#include "enhmetafiledrv.h"
 
 INT EMFDRV_SetMapMode( PHYSDEV dev, INT mode )
 {
Index: dlls/gdi/enhmfdrv/objects.c
===================================================================
RCS file: /home/wine/wine/dlls/gdi/enhmfdrv/objects.c,v
retrieving revision 1.7
diff -u -r1.7 objects.c
--- dlls/gdi/enhmfdrv/objects.c	21 May 2003 18:28:49 -0000	1.7
+++ dlls/gdi/enhmfdrv/objects.c	1 Sep 2003 22:40:59 -0000
@@ -22,9 +22,9 @@
 #include <stdio.h>
 #include <string.h>
 
-#include "bitmap.h"
-#include "enhmfdrv/enhmetafiledrv.h"
-#include "wine/debug.h"
+#include <bitmap.h>
+#include "enhmetafiledrv.h"
+#include <wine/debug.h>
 
 WINE_DEFAULT_DEBUG_CHANNEL(enhmetafile);
 
Index: dlls/gdi/mfdrv/bitblt.c
===================================================================
RCS file: /home/wine/wine/dlls/gdi/mfdrv/bitblt.c,v
retrieving revision 1.5
diff -u -r1.5 bitblt.c
--- dlls/gdi/mfdrv/bitblt.c	28 Aug 2002 00:55:52 -0000	1.5
+++ dlls/gdi/mfdrv/bitblt.c	1 Sep 2003 22:40:59 -0000
@@ -20,10 +20,10 @@
 
 #include <string.h>
 
-#include "gdi.h"
-#include "mfdrv/metafiledrv.h"
-#include "wine/debug.h"
-#include "bitmap.h"
+#include <gdi.h>
+#include "metafiledrv.h"
+#include <wine/debug.h>
+#include <bitmap.h>
 
 WINE_DEFAULT_DEBUG_CHANNEL(metafile);
 
Index: dlls/gdi/mfdrv/dc.c
===================================================================
RCS file: /home/wine/wine/dlls/gdi/mfdrv/dc.c,v
retrieving revision 1.4
diff -u -r1.4 dc.c
--- dlls/gdi/mfdrv/dc.c	30 Aug 2003 00:13:34 -0000	1.4
+++ dlls/gdi/mfdrv/dc.c	1 Sep 2003 22:40:59 -0000
@@ -18,7 +18,7 @@
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
-#include "mfdrv/metafiledrv.h"
+#include "metafiledrv.h"
 
 INT MFDRV_SaveDC( PHYSDEV dev )
 {
Index: dlls/gdi/mfdrv/graphics.c
===================================================================
RCS file: /home/wine/wine/dlls/gdi/mfdrv/graphics.c,v
retrieving revision 1.7
diff -u -r1.7 graphics.c
--- dlls/gdi/mfdrv/graphics.c	12 May 2003 03:27:24 -0000	1.7
+++ dlls/gdi/mfdrv/graphics.c	1 Sep 2003 22:41:00 -0000
@@ -21,9 +21,9 @@
 #include <stdlib.h>
 #include <string.h>
 
-#include "gdi.h"
-#include "mfdrv/metafiledrv.h"
-#include "wine/debug.h"
+#include <gdi.h>
+#include "metafiledrv.h"
+#include <wine/debug.h>
 
 WINE_DEFAULT_DEBUG_CHANNEL(metafile);
 
Index: dlls/gdi/mfdrv/init.c
===================================================================
RCS file: /home/wine/wine/dlls/gdi/mfdrv/init.c,v
retrieving revision 1.22
diff -u -r1.22 init.c
--- dlls/gdi/mfdrv/init.c	30 Aug 2003 00:15:12 -0000	1.22
+++ dlls/gdi/mfdrv/init.c	1 Sep 2003 22:41:00 -0000
@@ -18,12 +18,12 @@
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
-#include "windef.h"
-#include "wine/winbase16.h"
-#include "gdi.h"
-#include "wownt32.h"
-#include "mfdrv/metafiledrv.h"
-#include "wine/debug.h"
+#include <windef.h>
+#include <wine/winbase16.h>
+#include <gdi.h>
+#include <wownt32.h>
+#include "metafiledrv.h"
+#include <wine/debug.h>
 
 WINE_DEFAULT_DEBUG_CHANNEL(metafile);
 
Index: dlls/gdi/mfdrv/mapping.c
===================================================================
RCS file: /home/wine/wine/dlls/gdi/mfdrv/mapping.c,v
retrieving revision 1.3
diff -u -r1.3 mapping.c
--- dlls/gdi/mfdrv/mapping.c	17 Aug 2002 18:32:12 -0000	1.3
+++ dlls/gdi/mfdrv/mapping.c	1 Sep 2003 22:41:00 -0000
@@ -18,8 +18,8 @@
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
-#include "gdi.h"
-#include "mfdrv/metafiledrv.h"
+#include <gdi.h>
+#include "metafiledrv.h"
 
 
 /***********************************************************************
Index: dlls/gdi/mfdrv/metafiledrv.h
===================================================================
RCS file: /home/wine/wine/dlls/gdi/mfdrv/metafiledrv.h,v
retrieving revision 1.9
diff -u -r1.9 metafiledrv.h
--- dlls/gdi/mfdrv/metafiledrv.h	30 Aug 2003 00:15:12 -0000	1.9
+++ dlls/gdi/mfdrv/metafiledrv.h	1 Sep 2003 22:41:00 -0000
@@ -21,9 +21,9 @@
 #ifndef __WINE_METAFILEDRV_H
 #define __WINE_METAFILEDRV_H
 
-#include "windef.h"
-#include "wingdi.h"
-#include "gdi.h"
+#include <windef.h>
+#include <wingdi.h>
+#include <gdi.h>
 
 /* Metafile driver physical DC */
 
Index: dlls/gdi/mfdrv/objects.c
===================================================================
RCS file: /home/wine/wine/dlls/gdi/mfdrv/objects.c,v
retrieving revision 1.8
diff -u -r1.8 objects.c
--- dlls/gdi/mfdrv/objects.c	30 Aug 2003 00:15:12 -0000	1.8
+++ dlls/gdi/mfdrv/objects.c	1 Sep 2003 22:41:00 -0000
@@ -22,10 +22,10 @@
 #include <stdio.h>
 #include <string.h>
 
-#include "bitmap.h"
-#include "wownt32.h"
-#include "mfdrv/metafiledrv.h"
-#include "wine/debug.h"
+#include <bitmap.h>
+#include <wownt32.h>
+#include "metafiledrv.h"
+#include <wine/debug.h>
 
 WINE_DEFAULT_DEBUG_CHANNEL(metafile);
 
Index: dlls/gdi/mfdrv/text.c
===================================================================
RCS file: /home/wine/wine/dlls/gdi/mfdrv/text.c,v
retrieving revision 1.6
diff -u -r1.6 text.c
--- dlls/gdi/mfdrv/text.c	17 Aug 2002 00:25:44 -0000	1.6
+++ dlls/gdi/mfdrv/text.c	1 Sep 2003 22:41:00 -0000
@@ -20,9 +20,9 @@
 
 #include <string.h>
 
-#include "windef.h"
-#include "mfdrv/metafiledrv.h"
-#include "wine/debug.h"
+#include <windef.h>
+#include "metafiledrv.h"
+#include <wine/debug.h>
 
 WINE_DEFAULT_DEBUG_CHANNEL(metafile);
 


More information about the wine-patches mailing list