File: APELink.h

package info (click to toggle)
libjmac-java 1.74-8
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 1,780 kB
  • sloc: java: 9,279; cpp: 4,375; xml: 369; makefile: 31; sh: 12
file content (30 lines) | stat: -rw-r--r-- 612 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#ifndef APE_APELINK_H
#define APE_APELINK_H

#include "IO.h"
#include "APEInfo.h"

class CAPELink
{
public:

    CAPELink(const str_utf16 * pFilename);
    CAPELink(const char * pData, const str_utf16 * pFilename);
    ~CAPELink();

    BOOL GetIsLinkFile();
    int GetStartBlock();
    int GetFinishBlock();
    const wchar_t * GetImageFilename();

protected:

    BOOL m_bIsLinkFile;
    int m_nStartBlock;
    int m_nFinishBlock;
    str_utf16 m_cImageFilename[MAX_PATH];

    void ParseData(const char * pData, const str_utf16 * pFilename);
};

#endif // #ifndef APE_APELINK_H