MediaInfoLib  0.7
MediaInfo_Const.h
1 /* Copyright (c) MediaArea.net SARL. All Rights Reserved.
2  *
3  * Use of this source code is governed by a BSD-style license that can
4  * be found in the License.html file in the root of the source tree.
5  */
6 
7 //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
8 //
9 // Global configuration of MediaInfo
10 //
11 //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
12 
13 //---------------------------------------------------------------------------
14 #ifndef MediaInfo_ConstH
15 #define MediaInfo_ConstH
16 //---------------------------------------------------------------------------
17 
18 //---------------------------------------------------------------------------
19 #include <string>
20 #include <ZenLib/Conf.h>
21 //---------------------------------------------------------------------------
22 
23 namespace MediaInfoLib
24 {
25 
26 //---------------------------------------------------------------------------
56 //---------------------------------------------------------------------------
57 
58 //---------------------------------------------------------------------------
61 {
69  Stream_Max
70 };
71 
73 enum info_t
74 {
84  Info_Max
85 };
86 
92 {
94  InfoOption_Reserved,
97  InfoOption_Max
98 };
99 
102 {
103  FileOption_Nothing =0x00,
106  FileOption_Max =0x04
107 };
108 
109 //---------------------------------------------------------------------------
110 
111 //---------------------------------------------------------------------------
112 //Char types
113 #undef __T
114 #define __T(__x) __T(__x)
115 #if defined(UNICODE) || defined (_UNICODE)
116  typedef wchar_t Char;
117  #undef __T
118  #define __T(__x) L ## __x
119 #else
120  typedef char Char;
121  #undef __T
122  #define __T(__x) __x
123 #endif
124 typedef std::basic_string<MediaInfoLib::Char> String;
125 typedef std::basic_stringstream<MediaInfoLib::Char> StringStream;
126 typedef std::basic_istringstream<MediaInfoLib::Char> tiStringStream;
127 typedef std::basic_ostringstream<MediaInfoLib::Char> toStringStream;
128 //---------------------------------------------------------------------------
129 
130 } //NameSpace
131 
132 #endif