aboutsummaryrefslogtreecommitdiff
path: root/CPP/7zip/Archive/Common/FindSignature.h
diff options
context:
space:
mode:
Diffstat (limited to 'CPP/7zip/Archive/Common/FindSignature.h')
-rw-r--r--CPP/7zip/Archive/Common/FindSignature.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/CPP/7zip/Archive/Common/FindSignature.h b/CPP/7zip/Archive/Common/FindSignature.h
new file mode 100644
index 0000000..c359b9e
--- /dev/null
+++ b/CPP/7zip/Archive/Common/FindSignature.h
@@ -0,0 +1,12 @@
1// FindSignature.h
2
3#ifndef __FIND_SIGNATURE_H
4#define __FIND_SIGNATURE_H
5
6#include "../../IStream.h"
7
8HRESULT FindSignatureInStream(ISequentialInStream *stream,
9 const Byte *signature, unsigned signatureSize,
10 const UInt64 *limit, UInt64 &resPos);
11
12#endif