All audio formats can now be read from a .rar archive.

Cleaned up .APE library of outdated code.
This commit is contained in:
chudov
2008-11-10 16:12:16 +00:00
parent d4e68c5261
commit 58d3af09c7
18 changed files with 306 additions and 1026 deletions

View File

@@ -22,7 +22,11 @@ WARNING:
#define APE_APEINFO_H
#include "IO.h"
#ifndef NO_TAG
#include "APETag.h"
#else
#define CAPETag void
#endif
#include "MACLib.h"
/*****************************************************************************************
@@ -93,7 +97,9 @@ private:
// internal variables
BOOL m_bHasFileInformationLoaded;
CSmartPtr<CIO> m_spIO;
#ifndef NO_TAG
CSmartPtr<CAPETag> m_spAPETag;
#endif
APE_FILE_INFO m_APEFileInfo;
};