mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-28 04:31:06 +00:00
c1a4db611b
Original commit message from CVS: Add monkeyaudio plugin
20 lines
284 B
C++
20 lines
284 B
C++
#ifndef APE_APELINK_H
|
|
#define APE_APELINK_H
|
|
|
|
#include "IO.h"
|
|
#include "APEInfo.h"
|
|
|
|
class CAPELink
|
|
{
|
|
public:
|
|
CAPELink(const char * pFilename);
|
|
~CAPELink();
|
|
|
|
public:
|
|
|
|
int m_nStartBlock;
|
|
int m_nFinishBlock;
|
|
char m_cImageFile[MAX_PATH];
|
|
};
|
|
|
|
#endif /* APE_APELINK_H */
|