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/commdlg.h b/include/commdlg.h
index 3ef3a27..045a55c 100644
--- a/include/commdlg.h
+++ b/include/commdlg.h
@@ -25,8 +25,8 @@
extern "C" {
#endif
-#include "prsht.h"
-#include "pshpack1.h"
+#include <prsht.h>
+#include <pshpack1.h>
#ifndef SNDMSG
#ifdef __cplusplus
@@ -686,7 +686,7 @@
void COMDLG32_SetCommDlgExtendedError(DWORD err);
-#include "poppack.h"
+#include <poppack.h>
#ifdef __cplusplus
}