Lhaz
読み取り中…
検索中…
一致する文字列を見つけられません
tgztar.h
[詳解]
1#ifndef _TGZTAR_H
2#define _TGZTAR_H
3
4#include <stdio.h>
5#include <time.h>
6#include "tar.h"
7#include "../zlib/zlib.h"
8
9class TGZTAR : public CTAR {
10public:
11 TGZTAR(gzFile fp, const char* arcname = NULL);
12 ‾TGZTAR(void);
13private:
14 gzFile Fp;
15 size_t TarRead(void *buf, size_t size, unsigned long* crc);
16 int TarSeek(fpos_t offset, int origin);
17 size_t TarWrite(const void* buf, size_t size, bool eof);
18};
19
20#endif
Definition tar.h:14
Definition tgztar.h:9
gzFile Fp
Definition tgztar.h:14
size_t TarWrite(const void *buf, size_t size, bool eof)
Definition tgztar.cpp:47
int TarSeek(fpos_t offset, int origin)
Definition tgztar.cpp:39
size_t TarRead(void *buf, size_t size, unsigned long *crc)
Definition tgztar.cpp:29
‾TGZTAR(void)
Definition tgztar.cpp:22