mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-13 16:11:34 -06:00
13 lines
277 B
C
Executable File
13 lines
277 B
C
Executable File
// FindSignature.h
|
|
|
|
#ifndef ZIP7_INC_FIND_SIGNATURE_H
|
|
#define ZIP7_INC_FIND_SIGNATURE_H
|
|
|
|
#include "../../IStream.h"
|
|
|
|
HRESULT FindSignatureInStream(ISequentialInStream *stream,
|
|
const Byte *signature, unsigned signatureSize,
|
|
const UInt64 *limit, UInt64 &resPos);
|
|
|
|
#endif
|