summaryrefslogtreecommitdiffstats
path: root/loader/dmo/DMO_AudioDecoder.h
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-01-20 17:16:39 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-01-20 17:16:39 +0000
commit3bbe897e247d128cf63f1fad665fdfc086bab5ab (patch)
tree567f6ff88d6dfa186a9184676793512b85743c22 /loader/dmo/DMO_AudioDecoder.h
parent8fb418635ee3511971ab3bc923b2f95228669906 (diff)
downloadmpv-3bbe897e247d128cf63f1fad665fdfc086bab5ab.tar.bz2
mpv-3bbe897e247d128cf63f1fad665fdfc086bab5ab.tar.xz
Fix a ton of illegal identifiers. Identifiers starting with __ or _ and a
capital letter are reserved for the system, those starting with _ are reserved at the file level. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25822 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'loader/dmo/DMO_AudioDecoder.h')
-rw-r--r--loader/dmo/DMO_AudioDecoder.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/loader/dmo/DMO_AudioDecoder.h b/loader/dmo/DMO_AudioDecoder.h
index c2202b4a31..9ad00d1193 100644
--- a/loader/dmo/DMO_AudioDecoder.h
+++ b/loader/dmo/DMO_AudioDecoder.h
@@ -1,7 +1,7 @@
#ifndef AVIFILE_DMO_AUDIODECODER_H
#define AVIFILE_DMO_AUDIODECODER_H
-typedef struct _DMO_AudioDecoder DMO_AudioDecoder;
+typedef struct DMO_AudioDecoder DMO_AudioDecoder;
//DMO_AudioDecoder * DMO_AudioDecoder_Create(const CodecInfo * info, const WAVEFORMATEX* wf);
DMO_AudioDecoder * DMO_AudioDecoder_Open(char* dllname, GUID* guid, WAVEFORMATEX* wf,int out_channels);