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/storage.h b/include/storage.h
index ade3fd1..175fc07 100644
--- a/include/storage.h
+++ b/include/storage.h
@@ -21,6 +21,6 @@
 
 /* "storage.h" is obsolete, you should include "objbase.h" instead */
 
-#include "objbase.h"
+#include <objbase.h>
 
 #endif