mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-28 04:31:06 +00:00
21 lines
284 B
C
21 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 */
|