Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '7zip/Compress/Rar29/Original/match.hpp')
-rwxr-xr-x7zip/Compress/Rar29/Original/match.hpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/7zip/Compress/Rar29/Original/match.hpp b/7zip/Compress/Rar29/Original/match.hpp
new file mode 100755
index 00000000..a7367772
--- /dev/null
+++ b/7zip/Compress/Rar29/Original/match.hpp
@@ -0,0 +1,16 @@
+#ifndef _RAR_MATCH_
+#define _RAR_MATCH_
+
+enum {MATCH_NAMES,MATCH_PATH,MATCH_EXACTPATH,MATCH_SUBPATH,MATCH_WILDSUBPATH};
+
+#define MATCH_MODEMASK 0x0000ffff
+
+bool CmpName(char *Wildcard,char *Name,int CmpPath);
+bool CmpName(wchar *Wildcard,wchar *Name,int CmpPath);
+
+int stricompc(const char *Str1,const char *Str2);
+int stricompcw(const wchar *Str1,const wchar *Str2);
+int strnicompc(const char *Str1,const char *Str2,int N);
+int strnicompcw(const wchar *Str1,const wchar *Str2,int N);
+
+#endif