mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-10 22:07:08 -06:00
4.27 beta
This commit is contained in:
committed by
Kornel Lesiński
parent
31e7b924e8
commit
d66cf2fcf3
16
7zip/Compress/Rar29/Original/match.hpp
Executable file
16
7zip/Compress/Rar29/Original/match.hpp
Executable file
@@ -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
|
||||
Reference in New Issue
Block a user