Dimitrie O. Paun <dimi@intelliware.ca> told me, on wine-devel, that this is the correct way of having it. Gerald ChangeLog: #include <windows.h> instead of "windows.h". Index: License_En.c =================================================================== RCS file: /home/wine/wine/programs/clock/License_En.c,v retrieving revision 1.2 diff -u -3 -p -r1.2 License_En.c --- License_En.c 10 Mar 2002 00:21:18 -0000 1.2 +++ License_En.c 5 Jun 2003 20:23:45 -0000 @@ -1,4 +1,4 @@ -#include "windows.h" +#include <windows.h> #include "license.h" static CHAR LicenseCaption_En[] = "LICENSE"; Index: language.c =================================================================== RCS file: /home/wine/wine/programs/clock/language.c,v retrieving revision 1.10 diff -u -3 -p -r1.10 language.c --- language.c 2 Jul 2002 02:09:39 -0000 1.10 +++ language.c 5 Jun 2003 20:23:45 -0000 @@ -20,7 +20,7 @@ */ #include <stdio.h> -#include "windows.h" +#include <windows.h> #include "main.h" #include "language.h" #include "winnls.h" Index: license.c =================================================================== RCS file: /home/wine/wine/programs/clock/license.c,v retrieving revision 1.3 diff -u -3 -p -r1.3 license.c --- license.c 10 Mar 2002 00:21:18 -0000 1.3 +++ license.c 5 Jun 2003 20:23:45 -0000 @@ -19,7 +19,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) Index: main.c =================================================================== RCS file: /home/wine/wine/programs/clock/main.c,v retrieving revision 1.14 diff -u -3 -p -r1.14 main.c --- main.c 31 May 2002 23:40:58 -0000 1.14 +++ main.c 5 Jun 2003 20:23:46 -0000 @@ -26,7 +26,7 @@ #include "config.h" #include <stdio.h> -#include "windows.h" +#include <windows.h> #include "main.h" #include "license.h" #include "language.h" Index: winclock.c =================================================================== RCS file: /home/wine/wine/programs/clock/winclock.c,v retrieving revision 1.4 diff -u -3 -p -r1.4 winclock.c --- winclock.c 31 May 2002 23:40:58 -0000 1.4 +++ winclock.c 5 Jun 2003 20:23:46 -0000 @@ -27,8 +27,8 @@ #include <math.h> #include <stdlib.h> #include <string.h> +#include <windows.h> #include "winclock.h" -#include "windows.h" #include "main.h" #include "winnls.h"