<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=GB2312">
<META content="MSHTML 6.00.2900.6049" name=GENERATOR><LINK 
href="BLOCKQUOTE{margin-Top: 0px; margin-Bottom: 0px; margin-Left: 2em}" 
rel=stylesheet>
<META content="MSHTML 6.00.2900.2180" name=GENERATOR>
<STYLE>@font-face {
        font-family: ËÎÌå;
}
@font-face {
        font-family: Verdana;
}
@font-face {
        font-family: @ËÎÌå;
}
@page Section1 {size: 595.3pt 841.9pt; margin: 72.0pt 90.0pt 72.0pt 90.0pt; layout-grid: 15.6pt; }
P.MsoNormal {
        TEXT-JUSTIFY: inter-ideograph; FONT-SIZE: 10.5pt; MARGIN: 0cm 0cm 0pt; FONT-FAMILY: "Times New Roman"; TEXT-ALIGN: justify
}
LI.MsoNormal {
        TEXT-JUSTIFY: inter-ideograph; FONT-SIZE: 10.5pt; MARGIN: 0cm 0cm 0pt; FONT-FAMILY: "Times New Roman"; TEXT-ALIGN: justify
}
DIV.MsoNormal {
        TEXT-JUSTIFY: inter-ideograph; FONT-SIZE: 10.5pt; MARGIN: 0cm 0cm 0pt; FONT-FAMILY: "Times New Roman"; TEXT-ALIGN: justify
}
A:link {
        COLOR: blue; TEXT-DECORATION: underline
}
SPAN.MsoHyperlink {
        COLOR: blue; TEXT-DECORATION: underline
}
A:visited {
        COLOR: purple; TEXT-DECORATION: underline
}
SPAN.MsoHyperlinkFollowed {
        COLOR: purple; TEXT-DECORATION: underline
}
SPAN.EmailStyle17 {
        FONT-WEIGHT: normal; COLOR: windowtext; FONT-STYLE: normal; FONT-FAMILY: Verdana; TEXT-DECORATION: none; mso-style-type: personal-compose
}
DIV.Section1 {
        page: Section1
}
UNKNOWN {
        FONT-SIZE: 10pt
}
BLOCKQUOTE {
        MARGIN-TOP: 0px; MARGIN-BOTTOM: 0px; MARGIN-LEFT: 2em
}
OL {
        MARGIN-TOP: 0px; MARGIN-BOTTOM: 0px
}
UL {
        MARGIN-TOP: 0px; MARGIN-BOTTOM: 0px
}
</STYLE>
</HEAD>
<BODY style="FONT-SIZE: 10pt; MARGIN: 10px; FONT-FAMILY: verdana"><FONT 
face=Verdana color=#000000 size=2>
<DIV>&nbsp;</DIV>
<DIV><FONT face=Verdana size=2><FONT face=Verdana size=2>Hi ALL:</FONT></DIV>
<DIV>
<DIV>&nbsp;</DIV>
<DIV style="TEXT-INDENT: 2em">I want to use taglib to extract id3 from media 
files on wince 6.0. When I use VS2005 to build taglib , it have many the same 
warnings as the follow:</DIV>
<DIV style="TEXT-INDENT: 2em">
<DIV>/toolkit\tfile.h&nbsp;:&nbsp;warning&nbsp;C4251:&nbsp;'TagLib::FileName::m_name'&nbsp;:&nbsp;class&nbsp;'std::basic_string&lt;_Elem,_Traits,_Ax&gt;'&nbsp;needs&nbsp;to&nbsp;have&nbsp;dll-interface&nbsp;to&nbsp;be&nbsp;used&nbsp;by&nbsp;clients&nbsp;of&nbsp;class&nbsp;'TagLib::FileName'</DIV>
<DIV>1&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;with</DIV>
<DIV>1&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[</DIV>
<DIV>1&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_Elem=char,</DIV>
<DIV>1&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_Traits=std::char_traits&lt;char&gt;,</DIV>
<DIV>1&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_Ax=std::allocator&lt;char&gt;</DIV>
<DIV>1&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;] </DIV>
<DIV>&nbsp;</DIV>
<DIV>&nbsp;</DIV>
<DIV>How to resolve this? Has it bad effect to my Application when I use 
it?</DIV>
<DIV>&nbsp;</DIV>
<DIV>&nbsp;</DIV>
<DIV>&nbsp;</DIV>
<DIV>if I modify&nbsp;the class&nbsp;FileName to the followings:</DIV>
<DIV>&nbsp;</DIV>
<DIV>
<DIV>class&nbsp;TAGLIB_API&nbsp;FileName</DIV>
<DIV>&nbsp;&nbsp;{</DIV>
<DIV>&nbsp;&nbsp;public:</DIV>
<DIV>&nbsp;&nbsp;&nbsp;&nbsp;FileName(const&nbsp;wchar_t&nbsp;*name)&nbsp;:&nbsp;m_pwname(name)&nbsp;{}</DIV>
<DIV>&nbsp;&nbsp;&nbsp;&nbsp;FileName(const&nbsp;char&nbsp;*name)&nbsp;:&nbsp;m_pname(name)&nbsp;{}</DIV>
<DIV>&nbsp;&nbsp;&nbsp;&nbsp;operator&nbsp;const&nbsp;wchar_t&nbsp;*()&nbsp;const&nbsp;{&nbsp;return&nbsp;m_pwname;&nbsp;}</DIV>
<DIV>&nbsp;&nbsp;&nbsp;&nbsp;operator&nbsp;const&nbsp;char&nbsp;*()&nbsp;const&nbsp;{&nbsp;return&nbsp;m_pname;&nbsp;}</DIV>
<DIV>&nbsp;&nbsp;private:</DIV>
<DIV>&nbsp;&nbsp;&nbsp;&nbsp;const&nbsp;char*&nbsp;m_pname;</DIV>
<DIV>&nbsp;&nbsp;&nbsp;&nbsp;const&nbsp;wchar_t*&nbsp;m_pwname;</DIV>
<DIV>&nbsp;&nbsp;};</DIV></DIV>
<DIV>&nbsp;</DIV>
<DIV>,the above warnings do not appear. But I don't know it is ok to use the 
Tablib.dll.</DIV>
<DIV>&nbsp;</DIV>
<DIV>As we know, MSVC has many options to build the library, such as 
UNICODE(Preprocessor Definitions), treat wchar_t as build in type, Runtime 
library...</DIV>
<DIV>&nbsp;</DIV>
<DIV>What should we select?</DIV>
<DIV>&nbsp;</DIV>
<DIV>I am a newer to use the taglib and not familiar to MSVC, so I&nbsp; want to 
have someone to help me.</DIV>
<DIV>&nbsp;</DIV>
<DIV>&nbsp;</DIV>
<DIV>&nbsp;</DIV>
<DIV>&nbsp;</DIV>
<DIV>&nbsp;</DIV>
<DIV>&nbsp;</DIV>
<DIV>&nbsp;</DIV>
<DIV>Thank you for your help!</DIV>
<DIV>&nbsp;</DIV>
<DIV>Regards</DIV></DIV>
<DIV><FONT face=Verdana size=2></FONT>&nbsp;</DIV>
<DIV align=left><FONT face=Verdana color=#c0c0c0 size=2>2010-12-21 
</FONT></DIV><FONT face=Verdana size=2>
<HR style="WIDTH: 122px; HEIGHT: 2px" align=left SIZE=2>

<DIV><FONT face=Verdana color=#c0c0c0 
size=2><SPAN>MiaoSpark</SPAN>&nbsp;</FONT></DIV></FONT></FONT></DIV></FONT></BODY></HTML>