mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-08 18:07:15 -06:00
13 lines
261 B
C
Executable File
13 lines
261 B
C
Executable File
// 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
|