1 // FindSignature.h 2 3 #ifndef ZIP7_INC_FIND_SIGNATURE_H 4 #define ZIP7_INC_FIND_SIGNATURE_H 5 6 #include "../../IStream.h" 7 8 HRESULT FindSignatureInStream(ISequentialInStream *stream, 9 const Byte *signature, unsigned signatureSize, 10 const UInt64 *limit, UInt64 &resPos); 11 12 #endif 13