13 lines
263 B
C
13 lines
263 B
C
// FindSignature.h
|
|
|
|
#ifndef __FIND_SIGNATURE_H
|
|
#define __FIND_SIGNATURE_H
|
|
|
|
#include "../../IStream.h"
|
|
|
|
HRESULT FindSignatureInStream(ISequentialInStream *stream,
|
|
const Byte *signature, unsigned signatureSize,
|
|
const UInt64 *limit, UInt64 &resPos);
|
|
|
|
#endif
|