#include "windows.h" versus #include <windows.h>

Gerald Pfeifer pfeifer at dbai.tuwien.ac.at
Wed Jun 18 08:13:24 CDT 2003


On Fri, 6 Jun 2003, Alexandre Julliard wrote:
> There's no reason to change it everywhere, it only needs to be fixed
> in exported header files.

Well, but if two of the .c files in programs/notepad use <windows.h>,
while the other two use "windows.h", that certainly is confusing.

And it _had_ confused me while debugging a problem there, so I'd really
appreciate you considering at least the following unification.

Thanks,
Gerald

ChangeLog:
#include <windows.h> instead of "windows.h".

Index: License_En.c
===================================================================
RCS file: /home/wine/wine/programs/notepad/License_En.c,v
retrieving revision 1.3
diff -u -3 -p -r1.3 License_En.c
--- License_En.c	10 Mar 2002 00:21:18 -0000	1.3
+++ License_En.c	18 Jun 2003 13:09:41 -0000
@@ -1,4 +1,4 @@
-#include "windows.h"
+#include <windows.h>
 #include "license.h"

 static CHAR LicenseCaption_En[] = "LICENSE";
Index: license.c
===================================================================
RCS file: /home/wine/wine/programs/notepad/license.c,v
retrieving revision 1.5
diff -u -3 -p -r1.5 license.c
--- license.c	10 Mar 2002 00:21:18 -0000	1.5
+++ license.c	18 Jun 2003 13:09:41 -0000
@@ -18,7 +18,7 @@
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */

-#include "windows.h"
+#include <windows.h>
 #include "license.h"

 VOID WineLicense(HWND Wnd)



More information about the wine-patches mailing list