Commit 56da0c33 authored by Vincent Béron's avatar Vincent Béron Committed by Alexandre Julliard

Use #include "foo.h" for including Windows headers in dlls/, use

#include <bar.h> for including Windows headers in include/.
parent b1d96713
...@@ -24,10 +24,10 @@ ...@@ -24,10 +24,10 @@
#include <stdarg.h> #include <stdarg.h>
#include <windef.h> #include "windef.h"
#include <winbase.h> #include "winbase.h"
#include <winuser.h> #include "winuser.h"
#include <usp10.h> #include "usp10.h"
#include "wine/debug.h" #include "wine/debug.h"
......
...@@ -23,11 +23,11 @@ ...@@ -23,11 +23,11 @@
#include <stdarg.h> #include <stdarg.h>
#include "windef.h" #include <windef.h>
#include "winbase.h" #include <winbase.h>
#include "mmsystem.h" #include <mmsystem.h>
#include "mmreg.h" #include <mmreg.h>
#include "msacm.h" #include <msacm.h>
/*********************************************************************** /***********************************************************************
* Types * Types
......
...@@ -24,7 +24,7 @@ extern "C" { ...@@ -24,7 +24,7 @@ extern "C" {
#endif #endif
#ifndef _MSI_NO_CRYPTO #ifndef _MSI_NO_CRYPTO
#include "wincrypt.h" #include <wincrypt.h>
#endif #endif
typedef unsigned long MSIHANDLE; typedef unsigned long MSIHANDLE;
......
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/ */
#include "msxmldid.h" #include <msxmldid.h>
import "unknwn.idl"; import "unknwn.idl";
import "wtypes.idl"; import "wtypes.idl";
......
...@@ -16,8 +16,8 @@ ...@@ -16,8 +16,8 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/ */
#include "msxml2did.h" #include <msxml2did.h>
#include "olectl.h" #include <olectl.h>
import "unknwn.idl"; import "unknwn.idl";
import "objidl.idl"; import "objidl.idl";
......
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
extern "C" { extern "C" {
#endif #endif
#include "sql.h" #include <sql.h>
/* flags for Installer function requests */ /* flags for Installer function requests */
#define ODBC_INSTALL_INQUIRY 1 #define ODBC_INSTALL_INQUIRY 1
......
...@@ -18,10 +18,10 @@ ...@@ -18,10 +18,10 @@
import "objidl.idl"; import "objidl.idl";
#include "devenum.idl" #include <devenum.idl>
#include "axcore.idl" #include <axcore.idl>
#include "axextend.idl" #include <axextend.idl>
#include "dyngraph.idl" #include <dyngraph.idl>
...@@ -16,8 +16,8 @@ ...@@ -16,8 +16,8 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/ */
#include "xmldomdid.h" #include <xmldomdid.h>
#include "idispids.h" #include <idispids.h>
import "ocidl.idl"; import "ocidl.idl";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment