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/dmusbuff.h b/include/dmusbuff.h
index 1298cfe..6008fdc 100644
--- a/include/dmusbuff.h
+++ b/include/dmusbuff.h
@@ -20,7 +20,7 @@
#ifndef __WINE_DMUSIC_BUFFER_H
#define __WINE_DMUSIC_BUFFER_H
-#include "pshpack4.h"
+#include <pshpack4.h>
/*****************************************************************************
* Definitions
@@ -40,6 +40,6 @@
DWORD dwFlags;
} DMUS_EVENTHEADER, *LPDMUS_EVENTHEADER;
-#include "poppack.h"
+#include <poppack.h>
#endif /* __WINE_DMUSIC_BUFFER_H */