changeset 25618:ce2b69d32891

Fix illegal identifier, names starting with _ and uppercase are reserved.
author diego
date Mon, 07 Jan 2008 23:34:15 +0000
parents 9fa3af97c963
children 20f549053410
files vidix/dhahelperwin/dhahelper.h
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/vidix/dhahelperwin/dhahelper.h	Mon Jan 07 22:46:53 2008 +0000
+++ b/vidix/dhahelperwin/dhahelper.h	Mon Jan 07 23:34:15 2008 +0000
@@ -19,8 +19,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  *****************************************************************************/
 
-#ifndef _DHAHELPER_H
-#define _DHAHELPER_H 1
+#ifndef DHAHELPER_H
+#define DHAHELPER_H
 
 // Define the various device type values.  Note that values used by Microsoft
 // Corporation are in the range 0-32767, and 32768-65535 are reserved for use
@@ -68,4 +68,4 @@
 
 typedef struct dhahelper_t dhahelper_t;
 
-#endif /* _DHAHELPER_H */
+#endif /* DHAHELPER_H */