~ubuntu-branches/ubuntu/utopic/unrar-nonfree/utopic-updates

« back to all changes in this revision

Viewing changes to match.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Martin Meredith
  • Date: 2006-11-01 11:58:20 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20061101115820-41wn9un5v4m9r3jh
Tags: 1:3.6.8-0ubuntu1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
enum {MATCH_NAMES,MATCH_PATH,MATCH_EXACTPATH,MATCH_SUBPATH,MATCH_WILDSUBPATH};
5
5
 
6
6
#define MATCH_MODEMASK           0x0000ffff
 
7
#define MATCH_FORCECASESENSITIVE 0x80000000
7
8
 
8
9
bool CmpName(char *Wildcard,char *Name,int CmpPath);
9
10
bool CmpName(wchar *Wildcard,wchar *Name,int CmpPath);
10
11
 
11
 
int stricompc(const char *Str1,const char *Str2);
12
 
int stricompcw(const wchar *Str1,const wchar *Str2);
13
 
int strnicompc(const char *Str1,const char *Str2,int N);
14
 
int strnicompcw(const wchar *Str1,const wchar *Str2,int N);
15
 
 
16
12
#endif