From 0bdac8c0f9fa32fd2426ec3f346dc061fef81822 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Vincent=20B=C3=A9ron?= Date: Mon, 21 Mar 2005 10:52:26 +0000 Subject: [PATCH] Use "" for Windows includes in dlls, instead of <>. --- dlls/ntdll/loader.c | 4 ++-- dlls/riched20/editor.c | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/dlls/ntdll/loader.c b/dlls/ntdll/loader.c index 07f0a972c7c..0884d75e0e1 100644 --- a/dlls/ntdll/loader.c +++ b/dlls/ntdll/loader.c @@ -187,7 +187,7 @@ static void stub_entry_point( const char *dll, const char *name, ... ) } -#include +#include "pshpack1.h" struct stub { BYTE popl_eax; /* popl %eax */ @@ -199,7 +199,7 @@ struct stub BYTE jmp; /* jmp stub_entry_point */ DWORD entry; }; -#include +#include "poppack.h" /************************************************************************* * allocate_stub diff --git a/dlls/riched20/editor.c b/dlls/riched20/editor.c index 4c20b7b065f..18726dd5881 100644 --- a/dlls/riched20/editor.c +++ b/dlls/riched20/editor.c @@ -203,11 +203,11 @@ */ #include "editor.h" -#include -#include -#include +#include "ole2.h" +#include "richole.h" +#include "winreg.h" #define NO_SHLWAPI_STREAM -#include +#include "shlwapi.h" #include "rtf.h" -- 2.11.4.GIT