Use angle brackets (<>) rather than quotes ("") for the include
directives in our .h files. This should avoid some potentially nasty
surprises for Winelib apps.
diff --git a/include/shellapi.h b/include/shellapi.h
index 1644a6b..86afc6a 100644
--- a/include/shellapi.h
+++ b/include/shellapi.h
@@ -19,13 +19,13 @@
#ifndef __WINE_SHELLAPI_H
#define __WINE_SHELLAPI_H
-#include "windef.h"
+#include <windef.h>
#ifdef __cplusplus
extern "C" {
#endif /* defined(__cplusplus) */
-#include "pshpack1.h"
+#include <pshpack1.h>
DECLARE_HANDLE(HDROP);
@@ -289,6 +289,6 @@
} /* extern "C" */
#endif /* defined(__cplusplus) */
-#include "poppack.h"
+#include <poppack.h>
#endif /* __WINE_SHELLAPI_H */