4.46 beta

This commit is contained in:
Igor Pavlov
2007-05-25 00:00:00 +00:00
committed by Kornel Lesiński
parent a145bfc7cf
commit c574fc0f4b
191 changed files with 1318 additions and 854 deletions

View File

@@ -4,7 +4,6 @@
#include "Wildcard.h"
static const wchar_t kPeriodChar = L'.';
static const wchar_t kAnyCharsChar = L'*';
static const wchar_t kAnyCharChar = L'?';
@@ -20,8 +19,6 @@ static const UString kIllegalWildCardFileNameChars=
L"\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1A\x1B\x1C\x1D\x1E\x1F"
L"\"/:<>\\|";
static const UString kIllegalFileNameChars = kIllegalWildCardFileNameChars +
kWildCardCharSet;
static inline bool IsCharDirLimiter(wchar_t c)
{
@@ -147,11 +144,6 @@ bool DoesNameContainWildCard(const UString &path)
namespace NWildcard {
static inline int BoolToIndex(bool value)
{
return value ? 1: 0;
}
/*
M = MaskParts.Size();