diff options
author | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2008-01-20 17:16:39 +0000 |
---|---|---|
committer | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2008-01-20 17:16:39 +0000 |
commit | 3bbe897e247d128cf63f1fad665fdfc086bab5ab (patch) | |
tree | 567f6ff88d6dfa186a9184676793512b85743c22 /loader/dshow/libwin32.h | |
parent | 8fb418635ee3511971ab3bc923b2f95228669906 (diff) |
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/dshow/libwin32.h')
-rw-r--r-- | loader/dshow/libwin32.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/loader/dshow/libwin32.h b/loader/dshow/libwin32.h index fa7d601abd..762c8e86b5 100644 --- a/loader/dshow/libwin32.h +++ b/loader/dshow/libwin32.h @@ -14,21 +14,21 @@ typedef uint32_t fourcc_t; /* -typedef struct _FatalError +typedef struct FatalError { FatalError(); void PrintAll() {} }FatalError; */ -typedef struct _CodecInfo +typedef struct CodecInfo { char* dll; GUID* guid; }CodecInfo; -typedef struct _CImage // public your_libvo_mem +typedef struct CImage // public your_libvo_mem { char* ptr; @@ -53,7 +53,7 @@ struct BitmapInfo : public BITMAPINFOHEADER }; #endif -typedef struct _IAudioDecoder +typedef struct IAudioDecoder { WAVEFORMATEX in_fmt; CodecInfo record; @@ -96,7 +96,7 @@ struct IAudioEncoder START, }; -typedef struct _BitmapInfo +typedef struct BitmapInfo { long biSize; long biWidth; @@ -112,7 +112,7 @@ typedef struct _BitmapInfo int colors[3]; } BitmapInfo; -typedef struct _IVideoDecoder +typedef struct IVideoDecoder { int VBUFSIZE; int QMARKHI; |