summaryrefslogtreecommitdiffstats
path: root/vidix
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-01-07 23:34:15 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-01-07 23:34:15 +0000
commit547094ba51948fe0da78a034f9e1df417a5dcde3 (patch)
tree1537928229f8b61f2326b537f2457b9634827577 /vidix
parent1aac3c3fdeca903c6e29f326c873f4e5c5fe2960 (diff)
downloadmpv-547094ba51948fe0da78a034f9e1df417a5dcde3.tar.bz2
mpv-547094ba51948fe0da78a034f9e1df417a5dcde3.tar.xz
Fix illegal identifier, names starting with _ and uppercase are reserved.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25646 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'vidix')
-rw-r--r--vidix/dhahelperwin/dhahelper.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/vidix/dhahelperwin/dhahelper.h b/vidix/dhahelperwin/dhahelper.h
index 80adabea01..9145e412cf 100644
--- a/vidix/dhahelperwin/dhahelper.h
+++ b/vidix/dhahelperwin/dhahelper.h
@@ -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 @@ struct __attribute__((__packed__)) dhahelper_t {
typedef struct dhahelper_t dhahelper_t;
-#endif /* _DHAHELPER_H */
+#endif /* DHAHELPER_H */