diff loader/wine/windef.h @ 24422:c98c9e7f3bd0

Remove leading underscores from multiple inclusion guards, leading underscores are reserved in the C standard.
author diego
date Thu, 13 Sep 2007 08:50:21 +0000
parents 251338cf2f58
children 2c8cdb9123b8
line wrap: on
line diff
--- a/loader/wine/windef.h	Thu Sep 13 00:17:52 2007 +0000
+++ b/loader/wine/windef.h	Thu Sep 13 08:50:21 2007 +0000
@@ -9,8 +9,8 @@
  *
  */
 
-#ifndef __WINE_WINDEF_H
-#define __WINE_WINDEF_H
+#ifndef WINE_WINDEF_H
+#define WINE_WINDEF_H
 
 # include "config.h"
 
@@ -339,8 +339,8 @@
  * 16 bit windows code.
  */
 
-#ifndef __WINE_WINDEF16_H
-#define __WINE_WINDEF16_H
+#ifndef WINE_WINDEF16_H
+#define WINE_WINDEF16_H
 
 #include "windef.h"
 
@@ -454,7 +454,7 @@
 typedef LRESULT CALLBACK (*WNDENUMPROC16)(HWND16,LPARAM);
 typedef LRESULT CALLBACK (*WNDPROC16)(HWND16,UINT16,WPARAM16,LPARAM);
 
-#endif /* __WINE_WINDEF16_H */
+#endif /* WINE_WINDEF16_H */
 
 /* Define some empty macros for compatibility with Windows code. */
 
@@ -638,4 +638,4 @@
 }
 #endif
 
-#endif /* __WINE_WINDEF_H */
+#endif /* WINE_WINDEF_H */