Done with ripping for now

This commit is contained in:
chudov
2008-12-02 03:03:08 +00:00
parent e4e1d3ebde
commit 6a7486f7cd
10 changed files with 138 additions and 69 deletions

View File

@@ -174,12 +174,18 @@ namespace WavPackDotNet {
virtual bool UpdateTags(bool preserveTime)
{
return false;
Close ();
APETagDotNet^ apeTag = gcnew APETagDotNet (_path, true, false);
apeTag->SetStringTags (_tags, true);
apeTag->Save();
apeTag->Close();
return true;
}
virtual void Close()
{
_wpc = WavpackCloseFile(_wpc);
if (_wpc != NULL)
_wpc = WavpackCloseFile(_wpc);
if (_IO != nullptr)
{
_IO->Close ();