Welcome to mirror list, hosted at ThFree Co, Russian Federation.

FindSignature.h « Common « Archive « 7zip « CPP - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e15af573258c3b5d328b77c35fe70eed3a1fdd8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// FindSignature.h

#ifndef __FINDSIGNATURE_H
#define __FINDSIGNATURE_H

#include "../../IStream.h"

HRESULT FindSignatureInStream(ISequentialInStream *stream,
    const Byte *signature, unsigned signatureSize,
    const UInt64 *limit, UInt64 &resPos);

#endif