| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594 | 
							- //---------------------------------------------------------------------------
 
- #define NO_WIN32_LEAN_AND_MEAN
 
- #include <vcl.h>
 
- #pragma hdrstop
 
- #include "Common.h"
 
- #include "Exceptions.h"
 
- #include "TextsCore.h"
 
- #include "Interface.h"
 
- #include <StrUtils.hpp>
 
- #include <DateUtils.hpp>
 
- #include <math.h>
 
- #include <shlobj.h>
 
- #include <limits>
 
- #include <shlwapi.h>
 
- #include <CoreMain.h>
 
- #include <openssl/pkcs12.h>
 
- #include <openssl/pem.h>
 
- #include <openssl/err.h>
 
- //---------------------------------------------------------------------------
 
- #pragma package(smart_init)
 
- //---------------------------------------------------------------------------
 
- const wchar_t * DSTModeNames = L"Win;Unix;Keep";
 
- //---------------------------------------------------------------------------
 
- //---------------------------------------------------------------------------
 
- const wchar_t EngShortMonthNames[12][4] =
 
-   {L"Jan", L"Feb", L"Mar", L"Apr", L"May", L"Jun",
 
-    L"Jul", L"Aug", L"Sep", L"Oct", L"Nov", L"Dec"};
 
- const char Bom[3] = "\xEF\xBB\xBF";
 
- const wchar_t TokenPrefix = L'%';
 
- const wchar_t NoReplacement = wchar_t(false);
 
- const wchar_t TokenReplacement = wchar_t(true);
 
- const UnicodeString LocalInvalidChars(TraceInitStr(L"/\\:*?\"<>|"));
 
- const UnicodeString PasswordMask(TraceInitStr(L"***"));
 
- const UnicodeString Ellipsis(TraceInitStr(L"..."));
 
- //---------------------------------------------------------------------------
 
- UnicodeString ReplaceChar(UnicodeString Str, wchar_t A, wchar_t B)
 
- {
 
-   for (Integer Index = 0; Index < Str.Length(); Index++)
 
-     if (Str[Index+1] == A) Str[Index+1] = B;
 
-   return Str;
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString DeleteChar(UnicodeString Str, wchar_t C)
 
- {
 
-   int P;
 
-   while ((P = Str.Pos(C)) > 0)
 
-   {
 
-     Str.Delete(P, 1);
 
-   }
 
-   return Str;
 
- }
 
- //---------------------------------------------------------------------------
 
- template<typename T>
 
- void DoPackStr(T & Str)
 
- {
 
-   // Following will free unnecessary bytes
 
-   Str = Str.c_str();
 
- }
 
- //---------------------------------------------------------------------------
 
- void PackStr(UnicodeString & Str)
 
- {
 
-   DoPackStr(Str);
 
- }
 
- //---------------------------------------------------------------------------
 
- void PackStr(RawByteString & Str)
 
- {
 
-   DoPackStr(Str);
 
- }
 
- //---------------------------------------------------------------------------
 
- void PackStr(AnsiString & Str)
 
- {
 
-   DoPackStr(Str);
 
- }
 
- //---------------------------------------------------------------------------
 
- template<typename T>
 
- void __fastcall DoShred(T & Str)
 
- {
 
-   if (!Str.IsEmpty())
 
-   {
 
-     Str.Unique();
 
-     memset(Str.c_str(), 0, Str.Length() * sizeof(*Str.c_str()));
 
-     Str = L"";
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall Shred(UnicodeString & Str)
 
- {
 
-   DoShred(Str);
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall Shred(UTF8String & Str)
 
- {
 
-   DoShred(Str);
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall Shred(AnsiString & Str)
 
- {
 
-   DoShred(Str);
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString AnsiToString(const RawByteString & S)
 
- {
 
-   return UnicodeString(AnsiString(S));
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString AnsiToString(const char * S, size_t Len)
 
- {
 
-   return UnicodeString(AnsiString(S, Len));
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString MakeValidFileName(UnicodeString FileName)
 
- {
 
-   UnicodeString IllegalChars = L":;,=+<>|\"[] \\/?*";
 
-   for (int Index = 0; Index < IllegalChars.Length(); Index++)
 
-   {
 
-     FileName = ReplaceChar(FileName, IllegalChars[Index+1], L'-');
 
-   }
 
-   return FileName;
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString RootKeyToStr(HKEY RootKey)
 
- {
 
-   if (RootKey == HKEY_USERS) return L"HKU";
 
-     else
 
-   if (RootKey == HKEY_LOCAL_MACHINE) return L"HKLM";
 
-     else
 
-   if (RootKey == HKEY_CURRENT_USER) return L"HKCU";
 
-     else
 
-   if (RootKey == HKEY_CLASSES_ROOT) return L"HKCR";
 
-     else
 
-   if (RootKey == HKEY_CURRENT_CONFIG) return L"HKCC";
 
-     else
 
-   if (RootKey == HKEY_DYN_DATA) return L"HKDD";
 
-     else
 
-   {  Abort(); return L""; };
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString BooleanToEngStr(bool B)
 
- {
 
-   if (B)
 
-   {
 
-     return L"Yes";
 
-   }
 
-   else
 
-   {
 
-     return L"No";
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString BooleanToStr(bool B)
 
- {
 
-   if (B)
 
-   {
 
-     return LoadStr(YES_STR);
 
-   }
 
-   else
 
-   {
 
-     return LoadStr(NO_STR);
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString DefaultStr(const UnicodeString & Str, const UnicodeString & Default)
 
- {
 
-   if (!Str.IsEmpty())
 
-   {
 
-     return Str;
 
-   }
 
-   else
 
-   {
 
-     return Default;
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString CutToChar(UnicodeString &Str, wchar_t Ch, bool Trim)
 
- {
 
-   Integer P = Str.Pos(Ch);
 
-   UnicodeString Result;
 
-   if (P)
 
-   {
 
-     Result = Str.SubString(1, P-1);
 
-     Str.Delete(1, P);
 
-   }
 
-   else
 
-   {
 
-     Result = Str;
 
-     Str = L"";
 
-   }
 
-   if (Trim)
 
-   {
 
-     Result = Result.TrimRight();
 
-     Str = Str.TrimLeft();
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString CopyToChars(const UnicodeString & Str, int & From, UnicodeString Chs, bool Trim,
 
-   wchar_t * Delimiter, bool DoubleDelimiterEscapes)
 
- {
 
-   UnicodeString Result;
 
-   int P;
 
-   for (P = From; P <= Str.Length(); P++)
 
-   {
 
-     if (IsDelimiter(Chs, Str, P))
 
-     {
 
-       if (DoubleDelimiterEscapes &&
 
-           (P < Str.Length()) &&
 
-           IsDelimiter(Chs, Str, P + 1))
 
-       {
 
-         Result += Str[P];
 
-         P++;
 
-       }
 
-       else
 
-       {
 
-         break;
 
-       }
 
-     }
 
-     else
 
-     {
 
-       Result += Str[P];
 
-     }
 
-   }
 
-   if (P <= Str.Length())
 
-   {
 
-     if (Delimiter != NULL)
 
-     {
 
-       *Delimiter = Str[P];
 
-     }
 
-   }
 
-   else
 
-   {
 
-     if (Delimiter != NULL)
 
-     {
 
-       *Delimiter = L'\0';
 
-     }
 
-   }
 
-   // even if we reached the end, return index, as if there were the delimiter,
 
-   // so caller can easily find index of the end of the piece by subtracting
 
-   // 2 from From (as long as he did not asked for trimming)
 
-   From = P+1;
 
-   if (Trim)
 
-   {
 
-     Result = Result.TrimRight();
 
-     while ((From <= Str.Length()) && (Str[From] == L' '))
 
-     {
 
-       From++;
 
-     }
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString CopyToChar(const UnicodeString & Str, wchar_t Ch, bool Trim)
 
- {
 
-   int From = 1;
 
-   return CopyToChars(Str, From, UnicodeString(Ch), Trim);
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString DelimitStr(UnicodeString Str, UnicodeString Chars)
 
- {
 
-   for (int i = 1; i <= Str.Length(); i++)
 
-   {
 
-     if (Str.IsDelimiter(Chars, i))
 
-     {
 
-       Str.Insert(L"\\", i);
 
-       i++;
 
-     }
 
-   }
 
-   return Str;
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString ShellDelimitStr(UnicodeString Str, wchar_t Quote)
 
- {
 
-   UnicodeString Chars = L"$\\";
 
-   if (Quote == L'"')
 
-   {
 
-     Chars += L"`\"";
 
-   }
 
-   return DelimitStr(Str, Chars);
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString ExceptionLogString(Exception *E)
 
- {
 
-   DebugAssert(E);
 
-   if (E->InheritsFrom(__classid(Exception)))
 
-   {
 
-     UnicodeString Msg;
 
-     Msg = FORMAT(L"(%s) %s", (E->ClassName(), E->Message));
 
-     if (E->InheritsFrom(__classid(ExtException)))
 
-     {
 
-       TStrings * MoreMessages = ((ExtException*)E)->MoreMessages;
 
-       if (MoreMessages)
 
-       {
 
-         Msg += L"\n" +
 
-           ReplaceStr(MoreMessages->Text, L"\r", L"");
 
-       }
 
-     }
 
-     return Msg;
 
-   }
 
-   else
 
-   {
 
-     wchar_t Buffer[1024];
 
-     ExceptionErrorMessage(ExceptObject(), ExceptAddr(), Buffer, LENOF(Buffer));
 
-     return UnicodeString(Buffer);
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall MainInstructions(const UnicodeString & S)
 
- {
 
-   UnicodeString MainMsgTag = LoadStr(MAIN_MSG_TAG);
 
-   return MainMsgTag + S + MainMsgTag;
 
- }
 
- //---------------------------------------------------------------------------
 
- bool __fastcall HasParagraphs(const UnicodeString & S)
 
- {
 
-   return (S.Pos(L"\n\n") > 0);
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall MainInstructionsFirstParagraph(const UnicodeString & S)
 
- {
 
-   // WORKAROUND, we consider it bad practice, the highlighting should better
 
-   // be localized (but maybe we change our mind later)
 
-   UnicodeString Result;
 
-   int Pos = S.Pos(L"\n\n");
 
-   // we would not be calling this on single paragraph message
 
-   if (DebugAlwaysTrue(Pos > 0))
 
-   {
 
-     Result =
 
-       MainInstructions(S.SubString(1, Pos - 1)) +
 
-       S.SubString(Pos, S.Length() - Pos + 1);
 
-   }
 
-   else
 
-   {
 
-     Result = MainInstructions(S);
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- bool ExtractMainInstructions(UnicodeString & S, UnicodeString & MainInstructions)
 
- {
 
-   bool Result = false;
 
-   UnicodeString MainMsgTag = LoadStr(MAIN_MSG_TAG);
 
-   if (StartsStr(MainMsgTag, S))
 
-   {
 
-     int EndTagPos =
 
-       S.SubString(MainMsgTag.Length() + 1, S.Length() - MainMsgTag.Length()).Pos(MainMsgTag);
 
-     if (EndTagPos > 0)
 
-     {
 
-       MainInstructions = S.SubString(MainMsgTag.Length() + 1, EndTagPos - 1);
 
-       S.Delete(1, EndTagPos + (2 * MainMsgTag.Length()) - 1);
 
-       Result = true;
 
-     }
 
-   }
 
-   DebugAssert(MainInstructions.Pos(MainMsgTag) == 0);
 
-   DebugAssert(S.Pos(MainMsgTag) == 0);
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- static int FindInteractiveMsgStart(const UnicodeString & S)
 
- {
 
-   int Result = 0;
 
-   UnicodeString InteractiveMsgTag = LoadStr(INTERACTIVE_MSG_TAG);
 
-   if (EndsStr(InteractiveMsgTag, S) &&
 
-       (S.Length() >= 2 * InteractiveMsgTag.Length()))
 
-   {
 
-     Result = S.Length() - 2 * InteractiveMsgTag.Length() + 1;
 
-     while ((Result > 0) && (S.SubString(Result, InteractiveMsgTag.Length()) != InteractiveMsgTag))
 
-     {
 
-       Result--;
 
-     }
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString RemoveMainInstructionsTag(UnicodeString S)
 
- {
 
-   UnicodeString MainInstruction;
 
-   if (ExtractMainInstructions(S, MainInstruction))
 
-   {
 
-     S = MainInstruction + S;
 
-   }
 
-   return S;
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString UnformatMessage(UnicodeString S)
 
- {
 
-   S = RemoveMainInstructionsTag(S);
 
-   int InteractiveMsgStart = FindInteractiveMsgStart(S);
 
-   if (InteractiveMsgStart > 0)
 
-   {
 
-     S = S.SubString(1, InteractiveMsgStart - 1);
 
-   }
 
-   return S;
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString RemoveInteractiveMsgTag(UnicodeString S)
 
- {
 
-   int InteractiveMsgStart = FindInteractiveMsgStart(S);
 
-   if (InteractiveMsgStart > 0)
 
-   {
 
-     UnicodeString InteractiveMsgTag = LoadStr(INTERACTIVE_MSG_TAG);
 
-     S.Delete(InteractiveMsgStart, InteractiveMsgTag.Length());
 
-     S.Delete(S.Length() - InteractiveMsgTag.Length() + 1, InteractiveMsgTag.Length());
 
-   }
 
-   return S;
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString RemoveEmptyLines(const UnicodeString & S)
 
- {
 
-   return
 
-     ReplaceStr(
 
-       ReplaceStr(S.TrimRight(), L"\n\n", L"\n"),
 
-       L"\n \n", L"\n");
 
- }
 
- //---------------------------------------------------------------------------
 
- bool IsNumber(const UnicodeString Str)
 
- {
 
-   int Value;
 
-   return TryStrToInt(Str, Value);
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall SystemTemporaryDirectory()
 
- {
 
-   UnicodeString TempDir;
 
-   TempDir.SetLength(MAX_PATH);
 
-   TempDir.SetLength(GetTempPath(MAX_PATH, TempDir.c_str()));
 
-   return TempDir;
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall GetShellFolderPath(int CSIdl)
 
- {
 
-   UnicodeString Result;
 
-   wchar_t Path[2 * MAX_PATH + 10] = L"\0";
 
-   if (SUCCEEDED(SHGetFolderPath(NULL, CSIdl, NULL, SHGFP_TYPE_CURRENT, Path)))
 
-   {
 
-     Result = Path;
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- // Particularly needed when using file name selected by TFilenameEdit,
 
- // as it wraps a path to double-quotes, when there is a space in the path.
 
- UnicodeString __fastcall StripPathQuotes(const UnicodeString Path)
 
- {
 
-   if ((Path.Length() >= 2) &&
 
-       (Path[1] == L'\"') && (Path[Path.Length()] == L'\"'))
 
-   {
 
-     return Path.SubString(2, Path.Length() - 2);
 
-   }
 
-   else
 
-   {
 
-     return Path;
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall AddQuotes(UnicodeString Str)
 
- {
 
-   if (Str.Pos(L" ") > 0)
 
-   {
 
-     Str = L"\"" + Str + L"\"";
 
-   }
 
-   return Str;
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall AddPathQuotes(UnicodeString Path)
 
- {
 
-   Path = StripPathQuotes(Path);
 
-   return AddQuotes(Path);
 
- }
 
- //---------------------------------------------------------------------------
 
- static wchar_t * __fastcall ReplaceChar(
 
-   UnicodeString & FileName, wchar_t * InvalidChar, wchar_t InvalidCharsReplacement)
 
- {
 
-   int Index = InvalidChar - FileName.c_str() + 1;
 
-   if (InvalidCharsReplacement == TokenReplacement)
 
-   {
 
-     // currently we do not support unicode chars replacement
 
-     if (FileName[Index] > 0xFF)
 
-     {
 
-       EXCEPTION;
 
-     }
 
-     FileName.Insert(ByteToHex(static_cast<unsigned char>(FileName[Index])), Index + 1);
 
-     FileName[Index] = TokenPrefix;
 
-     InvalidChar = FileName.c_str() + Index + 2;
 
-   }
 
-   else
 
-   {
 
-     FileName[Index] = InvalidCharsReplacement;
 
-     InvalidChar = FileName.c_str() + Index;
 
-   }
 
-   return InvalidChar;
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall ValidLocalFileName(UnicodeString FileName)
 
- {
 
-   return ValidLocalFileName(FileName, L'_', L"", LocalInvalidChars);
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall ValidLocalFileName(
 
-   UnicodeString FileName, wchar_t InvalidCharsReplacement,
 
-   const UnicodeString & TokenizibleChars, const UnicodeString & LocalInvalidChars)
 
- {
 
-   if (InvalidCharsReplacement != NoReplacement)
 
-   {
 
-     bool ATokenReplacement = (InvalidCharsReplacement == TokenReplacement);
 
-     const wchar_t * Chars =
 
-       (ATokenReplacement ? TokenizibleChars : LocalInvalidChars).c_str();
 
-     wchar_t * InvalidChar = FileName.c_str();
 
-     while ((InvalidChar = wcspbrk(InvalidChar, Chars)) != NULL)
 
-     {
 
-       int Pos = (InvalidChar - FileName.c_str() + 1);
 
-       wchar_t Char;
 
-       if (ATokenReplacement &&
 
-           (*InvalidChar == TokenPrefix) &&
 
-           (((FileName.Length() - Pos) <= 1) ||
 
-            (((Char = static_cast<wchar_t>(HexToByte(FileName.SubString(Pos + 1, 2)))) == L'\0') ||
 
-             (TokenizibleChars.Pos(Char) == 0))))
 
-       {
 
-         InvalidChar++;
 
-       }
 
-       else
 
-       {
 
-         InvalidChar = ReplaceChar(FileName, InvalidChar, InvalidCharsReplacement);
 
-       }
 
-     }
 
-     // Windows trim trailing space or dot, hence we must encode it to preserve it
 
-     if (!FileName.IsEmpty() &&
 
-         ((FileName[FileName.Length()] == L' ') ||
 
-          (FileName[FileName.Length()] == L'.')))
 
-     {
 
-       ReplaceChar(FileName, FileName.c_str() + FileName.Length() - 1, InvalidCharsReplacement);
 
-     }
 
-     if (IsReservedName(FileName))
 
-     {
 
-       int P = FileName.Pos(".");
 
-       if (P == 0)
 
-       {
 
-         P = FileName.Length() + 1;
 
-       }
 
-       FileName.Insert(L"%00", P);
 
-     }
 
-   }
 
-   return FileName;
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall SplitCommand(UnicodeString Command, UnicodeString &Program,
 
-   UnicodeString & Params, UnicodeString & Dir)
 
- {
 
-   Command = Command.Trim();
 
-   Params = L"";
 
-   Dir = L"";
 
-   if (!Command.IsEmpty() && (Command[1] == L'\"'))
 
-   {
 
-     Command.Delete(1, 1);
 
-     int P = Command.Pos(L'"');
 
-     if (P)
 
-     {
 
-       Program = Command.SubString(1, P-1).Trim();
 
-       Params = Command.SubString(P + 1, Command.Length() - P).Trim();
 
-     }
 
-     else
 
-     {
 
-       throw Exception(FMTLOAD(INVALID_SHELL_COMMAND, (L"\"" + Command)));
 
-     }
 
-   }
 
-   else
 
-   {
 
-     int P = Command.Pos(L" ");
 
-     if (P)
 
-     {
 
-       Program = Command.SubString(1, P).Trim();
 
-       Params = Command.SubString(P + 1, Command.Length() - P).Trim();
 
-     }
 
-     else
 
-     {
 
-       Program = Command;
 
-     }
 
-   }
 
-   int B = Program.LastDelimiter(L"\\/");
 
-   if (B)
 
-   {
 
-     Dir = Program.SubString(1, B).Trim();
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall ExtractProgram(UnicodeString Command)
 
- {
 
-   UnicodeString Program;
 
-   UnicodeString Params;
 
-   UnicodeString Dir;
 
-   SplitCommand(Command, Program, Params, Dir);
 
-   return Program;
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall ExtractProgramName(UnicodeString Command)
 
- {
 
-   UnicodeString Name = ExtractFileName(ExtractProgram(Command));
 
-   int Dot = Name.LastDelimiter(L".");
 
-   if (Dot > 0)
 
-   {
 
-     Name = Name.SubString(1, Dot - 1);
 
-   }
 
-   return Name;
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall FormatCommand(UnicodeString Program, UnicodeString Params)
 
- {
 
-   Program = Program.Trim();
 
-   Params = Params.Trim();
 
-   if (!Params.IsEmpty()) Params = L" " + Params;
 
-   Program = AddQuotes(Program);
 
-   return Program + Params;
 
- }
 
- //---------------------------------------------------------------------------
 
- const wchar_t ShellCommandFileNamePattern[] = L"!.!";
 
- //---------------------------------------------------------------------------
 
- void __fastcall ReformatFileNameCommand(UnicodeString & Command)
 
- {
 
-   if (!Command.IsEmpty())
 
-   {
 
-     UnicodeString Program, Params, Dir;
 
-     SplitCommand(Command, Program, Params, Dir);
 
-     if (Params.Pos(ShellCommandFileNamePattern) == 0)
 
-     {
 
-       Params = Params + (Params.IsEmpty() ? L"" : L" ") + ShellCommandFileNamePattern;
 
-     }
 
-     Command = FormatCommand(Program, Params);
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall ExpandFileNameCommand(const UnicodeString Command,
 
-   const UnicodeString FileName)
 
- {
 
-   return AnsiReplaceStr(Command, ShellCommandFileNamePattern,
 
-     AddPathQuotes(FileName));
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall EscapeParam(const UnicodeString & Param)
 
- {
 
-   // Make sure this won't break RTF syntax
 
-   return ReplaceStr(Param, L"\"", L"\"\"");
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall EscapePuttyCommandParam(UnicodeString Param)
 
- {
 
-   bool Space = false;
 
-   for (int i = 1; i <= Param.Length(); i++)
 
-   {
 
-     switch (Param[i])
 
-     {
 
-       case L'"':
 
-         Param.Insert(L"\\", i);
 
-         i++;
 
-         break;
 
-       case L' ':
 
-         Space = true;
 
-         break;
 
-       case L'\\':
 
-         int i2 = i;
 
-         while ((i2 <= Param.Length()) && (Param[i2] == L'\\'))
 
-         {
 
-           i2++;
 
-         }
 
-         if ((i2 <= Param.Length()) && (Param[i2] == L'"'))
 
-         {
 
-           while (Param[i] == L'\\')
 
-           {
 
-             Param.Insert(L"\\", i);
 
-             i += 2;
 
-           }
 
-           i--;
 
-         }
 
-         break;
 
-     }
 
-   }
 
-   if (Space)
 
-   {
 
-     Param = L"\"" + Param + L'"';
 
-   }
 
-   return Param;
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall ExpandEnvironmentVariables(const UnicodeString & Str)
 
- {
 
-   UnicodeString Buf;
 
-   unsigned int Size = 1024;
 
-   Buf.SetLength(Size);
 
-   Buf.Unique();
 
-   unsigned int Len = ExpandEnvironmentStrings(Str.c_str(), Buf.c_str(), Size);
 
-   if (Len > Size)
 
-   {
 
-     Buf.SetLength(Len);
 
-     Buf.Unique();
 
-     ExpandEnvironmentStrings(Str.c_str(), Buf.c_str(), Len);
 
-   }
 
-   PackStr(Buf);
 
-   return Buf;
 
- }
 
- //---------------------------------------------------------------------------
 
- bool __fastcall IsPathToSameFile(const UnicodeString & Path1, const UnicodeString & Path2)
 
- {
 
-   UnicodeString ShortPath1 = ExtractShortPathName(Path1);
 
-   UnicodeString ShortPath2 = ExtractShortPathName(Path2);
 
-   bool Result;
 
-   // ExtractShortPathName returns empty string if file does not exist
 
-   if (ShortPath1.IsEmpty() || ShortPath2.IsEmpty())
 
-   {
 
-     Result = AnsiSameText(Path1, Path2);
 
-   }
 
-   else
 
-   {
 
-     Result = AnsiSameText(ShortPath1, ShortPath2);
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- bool __fastcall SamePaths(const UnicodeString & Path1, const UnicodeString & Path2)
 
- {
 
-   // TODO: ExpandUNCFileName
 
-   return AnsiSameText(IncludeTrailingBackslash(Path1), IncludeTrailingBackslash(Path2));
 
- }
 
- //---------------------------------------------------------------------------
 
- int __fastcall CompareLogicalText(const UnicodeString & S1, const UnicodeString & S2)
 
- {
 
-   return StrCmpLogicalW(S1.c_str(), S2.c_str());
 
- }
 
- //---------------------------------------------------------------------------
 
- bool __fastcall IsReservedName(UnicodeString FileName)
 
- {
 
-   int P = FileName.Pos(L".");
 
-   int Len = (P > 0) ? P - 1 : FileName.Length();
 
-   if ((Len == 3) || (Len == 4))
 
-   {
 
-     if (P > 0)
 
-     {
 
-       FileName.SetLength(P - 1);
 
-     }
 
-     static UnicodeString Reserved[] = {
 
-       L"CON", L"PRN", L"AUX", L"NUL",
 
-       L"COM1", L"COM2", L"COM3", L"COM4", L"COM5", L"COM6", L"COM7", L"COM8", L"COM9",
 
-       L"LPT1", L"LPT2", L"LPT3", L"LPT4", L"LPT5", L"LPT6", L"LPT7", L"LPT8", L"LPT9" };
 
-     for (unsigned int Index = 0; Index < LENOF(Reserved); Index++)
 
-     {
 
-       if (SameText(FileName, Reserved[Index]))
 
-       {
 
-         return true;
 
-       }
 
-     }
 
-   }
 
-   return false;
 
- }
 
- //---------------------------------------------------------------------------
 
- // ApiPath support functions
 
- // Inspired by
 
- // http://stackoverflow.com/questions/18580945/need-clarification-for-converting-paths-into-long-unicode-paths-or-the-ones-star
 
- // This can be reimplemented using PathCchCanonicalizeEx on Windows 8 and later
 
- enum PATH_PREFIX_TYPE
 
- {
 
-   PPT_UNKNOWN,
 
-   PPT_ABSOLUTE,           //Found absolute path that is none of the other types
 
-   PPT_UNC,                //Found \\server\share\ prefix
 
-   PPT_LONG_UNICODE,       //Found \\?\ prefix
 
-   PPT_LONG_UNICODE_UNC,   //Found \\?\UNC\ prefix
 
- };
 
- //---------------------------------------------------------------------------
 
- static int __fastcall PathRootLength(UnicodeString Path)
 
- {
 
-   // Correction for PathSkipRoot API
 
-   // Replace all /'s with \'s because PathSkipRoot can't handle /'s
 
-   UnicodeString Result = ReplaceChar(Path, L'/', L'\\');
 
-   // Now call the API
 
-   LPCTSTR Buffer = PathSkipRoot(Result.c_str());
 
-   return (Buffer != NULL) ? (Buffer - Result.c_str()) : -1;
 
- }
 
- //---------------------------------------------------------------------------
 
- static bool __fastcall PathIsRelative_CorrectedForMicrosoftStupidity(UnicodeString Path)
 
- {
 
-   // Correction for PathIsRelative API
 
-   // Replace all /'s with \'s because PathIsRelative can't handle /'s
 
-   UnicodeString Result = ReplaceChar(Path, L'/', L'\\');
 
-   //Now call the API
 
-   return PathIsRelative(Result.c_str());
 
- }
 
- //---------------------------------------------------------------------------
 
- static int __fastcall GetOffsetAfterPathRoot(UnicodeString Path, PATH_PREFIX_TYPE & PrefixType)
 
- {
 
-   // Checks if 'pPath' begins with the drive, share, prefix, etc
 
-   // EXAMPLES:
 
-   //    Path                          Return:   Points at:                 PrefixType:
 
-   //   Relative\Folder\File.txt        0         Relative\Folder\File.txt   PPT_UNKNOWN
 
-   //   \RelativeToRoot\Folder          1         RelativeToRoot\Folder      PPT_ABSOLUTE
 
-   //   C:\Windows\Folder               3         Windows\Folder             PPT_ABSOLUTE
 
-   //   \\server\share\Desktop          15        Desktop                    PPT_UNC
 
-   //   \\?\C:\Windows\Folder           7         Windows\Folder             PPT_LONG_UNICODE
 
-   //   \\?\UNC\server\share\Desktop    21        Desktop                    PPT_LONG_UNICODE_UNC
 
-   // RETURN:
 
-   //      = Index in 'pPath' after the root, or
 
-   //      = 0 if no root was found
 
-   int Result = 0;
 
-   PrefixType = PPT_UNKNOWN;
 
-   if (!Path.IsEmpty())
 
-   {
 
-     int Len = Path.Length();
 
-     bool WinXPOnly = !IsWinVista();
 
-     // The PathSkipRoot() API doesn't work correctly on Windows XP
 
-     if (!WinXPOnly)
 
-     {
 
-       // Works since Vista and up, but still needs correction :)
 
-       int RootLength = PathRootLength(Path);
 
-       if (RootLength >= 0)
 
-       {
 
-         Result = RootLength + 1;
 
-       }
 
-     }
 
-     // Now determine the type of prefix
 
-     int IndCheckUNC = -1;
 
-     if ((Len >= 8) &&
 
-         (Path[1] == L'\\' || Path[1] == L'/') &&
 
-         (Path[2] == L'\\' || Path[2] == L'/') &&
 
-         (Path[3] == L'?') &&
 
-         (Path[4] == L'\\' || Path[4] == L'/') &&
 
-         (Path[5] == L'U' || Path[5] == L'u') &&
 
-         (Path[6] == L'N' || Path[6] == L'n') &&
 
-         (Path[7] == L'C' || Path[7] == L'c') &&
 
-         (Path[8] == L'\\' || Path[8] == L'/'))
 
-     {
 
-       // Found \\?\UNC\ prefix
 
-       PrefixType = PPT_LONG_UNICODE_UNC;
 
-       if (WinXPOnly)
 
-       {
 
-           //For older OS
 
-           Result += 8;
 
-       }
 
-       //Check for UNC share later
 
-       IndCheckUNC = 8;
 
-     }
 
-     else if ((Len >= 4) &&
 
-         (Path[1] == L'\\' || Path[1] == L'/') &&
 
-         (Path[2] == L'\\' || Path[2] == L'/') &&
 
-         (Path[3] == L'?') &&
 
-         (Path[4] == L'\\' || Path[4] == L'/'))
 
-     {
 
-       // Found \\?\ prefix
 
-       PrefixType = PPT_LONG_UNICODE;
 
-       if (WinXPOnly)
 
-       {
 
-           //For older OS
 
-           Result += 4;
 
-       }
 
-     }
 
-     else if ((Len >= 2) &&
 
-         (Path[1] == L'\\' || Path[1] == L'/') &&
 
-         (Path[2] == L'\\' || Path[2] == L'/'))
 
-     {
 
-       // Check for UNC share later
 
-       IndCheckUNC = 2;
 
-     }
 
-     if (IndCheckUNC >= 0)
 
-     {
 
-       // Check for UNC, i.e. \\server\share\ part
 
-       int Index = IndCheckUNC;
 
-       for (int SkipSlashes = 2; SkipSlashes > 0; SkipSlashes--)
 
-       {
 
-         for(; Index <= Len; Index++)
 
-         {
 
-           TCHAR z = Path[Index];
 
-           if ((z == L'\\') || (z == L'/') || (Index >= Len))
 
-           {
 
-             Index++;
 
-             if (SkipSlashes == 1)
 
-             {
 
-               if (PrefixType == PPT_UNKNOWN)
 
-               {
 
-                 PrefixType = PPT_UNC;
 
-               }
 
-               if (WinXPOnly)
 
-               {
 
-                   //For older OS
 
-                   Result = Index;
 
-               }
 
-             }
 
-             break;
 
-           }
 
-         }
 
-       }
 
-     }
 
-     if (WinXPOnly)
 
-     {
 
-       // Only if we didn't determine any other type
 
-       if (PrefixType == PPT_UNKNOWN)
 
-       {
 
-         if (!PathIsRelative_CorrectedForMicrosoftStupidity(Path.SubString(Result, Path.Length() - Result + 1)))
 
-         {
 
-           PrefixType = PPT_ABSOLUTE;
 
-         }
 
-       }
 
-       // For older OS only
 
-       int RootLength = PathRootLength(Path.SubString(Result, Path.Length() - Result + 1));
 
-       if (RootLength >= 0)
 
-       {
 
-         Result = RootLength + 1;
 
-       }
 
-     }
 
-     else
 
-     {
 
-       // Only if we didn't determine any other type
 
-       if (PrefixType == PPT_UNKNOWN)
 
-       {
 
-         if (!PathIsRelative_CorrectedForMicrosoftStupidity(Path))
 
-         {
 
-           PrefixType = PPT_ABSOLUTE;
 
-         }
 
-       }
 
-     }
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall MakeUnicodeLargePath(UnicodeString Path)
 
- {
 
-   // Convert path from 'into a larger Unicode path, that allows up to 32,767 character length
 
-   UnicodeString Result;
 
-   if (!Path.IsEmpty())
 
-   {
 
-     // Determine the type of the existing prefix
 
-     PATH_PREFIX_TYPE PrefixType;
 
-     GetOffsetAfterPathRoot(Path, PrefixType);
 
-     // Assume path to be without change
 
-     Result = Path;
 
-     switch (PrefixType)
 
-     {
 
-       case PPT_ABSOLUTE:
 
-         {
 
-           // First we need to check if its an absolute path relative to the root
 
-           bool AddPrefix = true;
 
-           if ((Path.Length() >= 1) &&
 
-               ((Path[1] == L'\\') || (Path[1] == L'/')))
 
-           {
 
-             AddPrefix = FALSE;
 
-             // Get current root path
 
-             UnicodeString CurrentDir = GetCurrentDir();
 
-             PATH_PREFIX_TYPE PrefixType2; // unused
 
-             int Following = GetOffsetAfterPathRoot(CurrentDir, PrefixType2);
 
-             if (Following > 0)
 
-             {
 
-               AddPrefix = true;
 
-               Result = CurrentDir.SubString(1, Following - 1) + Result.SubString(2, Result.Length() - 1);
 
-             }
 
-           }
 
-           if (AddPrefix)
 
-           {
 
-             // Add \\?\ prefix
 
-             Result = L"\\\\?\\" + Result;
 
-           }
 
-         }
 
-         break;
 
-       case PPT_UNC:
 
-         // First we need to remove the opening slashes for UNC share
 
-         if ((Result.Length() >= 2) &&
 
-             ((Result[1] == L'\\') || (Result[1] == L'/')) &&
 
-             ((Result[2] == L'\\') || (Result[2] == L'/')))
 
-         {
 
-           Result = Result.SubString(3, Result.Length() - 2);
 
-         }
 
-         // Add \\?\UNC\ prefix
 
-         Result = L"\\\\?\\UNC\\" + Result;
 
-         break;
 
-       case PPT_LONG_UNICODE:
 
-       case PPT_LONG_UNICODE_UNC:
 
-         // nothing to do
 
-         break;
 
-     }
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall ApiPath(UnicodeString Path)
 
- {
 
-   if (Path.Length() >= MAX_PATH)
 
-   {
 
-     if (Configuration != NULL)
 
-     {
 
-       Configuration->Usage->Inc(L"LongPath");
 
-     }
 
-     Path = MakeUnicodeLargePath(Path);
 
-   }
 
-   return Path;
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall DisplayableStr(const RawByteString & Str)
 
- {
 
-   bool Displayable = true;
 
-   int Index = 1;
 
-   while ((Index <= Str.Length()) && Displayable)
 
-   {
 
-     if (((Str[Index] < '\x20') || (static_cast<unsigned char>(Str[Index]) >= static_cast<unsigned char>('\x80'))) &&
 
-         (Str[Index] != '\n') && (Str[Index] != '\r') && (Str[Index] != '\t') && (Str[Index] != '\b'))
 
-     {
 
-       Displayable = false;
 
-     }
 
-     Index++;
 
-   }
 
-   UnicodeString Result;
 
-   if (Displayable)
 
-   {
 
-     Result = L"\"";
 
-     for (int Index = 1; Index <= Str.Length(); Index++)
 
-     {
 
-       switch (Str[Index])
 
-       {
 
-         case '\n':
 
-           Result += L"\\n";
 
-           break;
 
-         case '\r':
 
-           Result += L"\\r";
 
-           break;
 
-         case '\t':
 
-           Result += L"\\t";
 
-           break;
 
-         case '\b':
 
-           Result += L"\\b";
 
-           break;
 
-         case '\\':
 
-           Result += L"\\\\";
 
-           break;
 
-         case '"':
 
-           Result += L"\\\"";
 
-           break;
 
-         default:
 
-           Result += wchar_t(Str[Index]);
 
-           break;
 
-       }
 
-     }
 
-     Result += L"\"";
 
-   }
 
-   else
 
-   {
 
-     Result = L"0x" + BytesToHex(Str);
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall ByteToHex(unsigned char B, bool UpperCase)
 
- {
 
-   static wchar_t UpperDigits[] = L"0123456789ABCDEF";
 
-   static wchar_t LowerDigits[] = L"0123456789abcdef";
 
-   const wchar_t * Digits = (UpperCase ? UpperDigits : LowerDigits);
 
-   UnicodeString Result;
 
-   Result.SetLength(2);
 
-   Result[1] = Digits[(B & 0xF0) >> 4];
 
-   Result[2] = Digits[(B & 0x0F) >> 0];
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall BytesToHex(const unsigned char * B, size_t Length, bool UpperCase, wchar_t Separator)
 
- {
 
-   UnicodeString Result;
 
-   for (size_t i = 0; i < Length; i++)
 
-   {
 
-     Result += ByteToHex(B[i], UpperCase);
 
-     if ((Separator != L'\0') && (i < Length - 1))
 
-     {
 
-       Result += Separator;
 
-     }
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall BytesToHex(RawByteString Str, bool UpperCase, wchar_t Separator)
 
- {
 
-   return BytesToHex(reinterpret_cast<const unsigned char *>(Str.c_str()), Str.Length(), UpperCase, Separator);
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall CharToHex(wchar_t Ch, bool UpperCase)
 
- {
 
-   return BytesToHex(reinterpret_cast<const unsigned char *>(&Ch), sizeof(Ch), UpperCase);
 
- }
 
- //---------------------------------------------------------------------------
 
- RawByteString __fastcall HexToBytes(const UnicodeString Hex)
 
- {
 
-   static UnicodeString Digits = L"0123456789ABCDEF";
 
-   RawByteString Result;
 
-   int L, P1, P2;
 
-   L = Hex.Length();
 
-   if (L % 2 == 0)
 
-   {
 
-     for (int i = 1; i <= Hex.Length(); i += 2)
 
-     {
 
-       P1 = Digits.Pos((wchar_t)toupper(Hex[i]));
 
-       P2 = Digits.Pos((wchar_t)toupper(Hex[i + 1]));
 
-       if (P1 <= 0 || P2 <= 0)
 
-       {
 
-         Result = L"";
 
-         break;
 
-       }
 
-       else
 
-       {
 
-         Result += static_cast<char>((P1 - 1) * 16 + P2 - 1);
 
-       }
 
-     }
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- unsigned char __fastcall HexToByte(const UnicodeString Hex)
 
- {
 
-   static UnicodeString Digits = L"0123456789ABCDEF";
 
-   DebugAssert(Hex.Length() == 2);
 
-   int P1 = Digits.Pos((wchar_t)toupper(Hex[1]));
 
-   int P2 = Digits.Pos((wchar_t)toupper(Hex[2]));
 
-   return
 
-     static_cast<unsigned char>(((P1 <= 0) || (P2 <= 0)) ? 0 : (((P1 - 1) << 4) + (P2 - 1)));
 
- }
 
- //---------------------------------------------------------------------------
 
- bool __fastcall IsLowerCaseLetter(wchar_t Ch)
 
- {
 
-   return (Ch >= 'a') && (Ch <= 'z');
 
- }
 
- //---------------------------------------------------------------------------
 
- bool __fastcall IsUpperCaseLetter(wchar_t Ch)
 
- {
 
-   return (Ch >= 'A') && (Ch <= 'Z');
 
- }
 
- //---------------------------------------------------------------------------
 
- bool __fastcall IsLetter(wchar_t Ch)
 
- {
 
-   return IsLowerCaseLetter(Ch) || IsUpperCaseLetter(Ch);
 
- }
 
- //---------------------------------------------------------------------------
 
- bool __fastcall IsDigit(wchar_t Ch)
 
- {
 
-   return (Ch >= '0') && (Ch <= '9');
 
- }
 
- //---------------------------------------------------------------------------
 
- bool __fastcall IsHex(wchar_t Ch)
 
- {
 
-   return
 
-     IsDigit(Ch) ||
 
-     ((Ch >= 'A') && (Ch <= 'F')) ||
 
-     ((Ch >= 'a') && (Ch <= 'f'));
 
- }
 
- //---------------------------------------------------------------------------
 
- int __fastcall FindCheck(int Result, const UnicodeString & Path)
 
- {
 
-   if ((Result != ERROR_SUCCESS) &&
 
-       (Result != ERROR_FILE_NOT_FOUND) &&
 
-       (Result != ERROR_NO_MORE_FILES))
 
-   {
 
-     throw EOSExtException(FMTLOAD(FIND_FILE_ERROR, (Path)), Result);
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- int __fastcall FindFirstUnchecked(const UnicodeString & Path, int Attr, TSearchRecChecked & F)
 
- {
 
-   F.Path = Path;
 
-   return FindFirst(ApiPath(Path), Attr, F);
 
- }
 
- //---------------------------------------------------------------------------
 
- int __fastcall FindFirstChecked(const UnicodeString & Path, int Attr, TSearchRecChecked & F)
 
- {
 
-   int Result = FindFirstUnchecked(Path, Attr, F);
 
-   return FindCheck(Result, F.Path);
 
- }
 
- //---------------------------------------------------------------------------
 
- // Equivalent to FindNext, just to complement to FindFirstUnchecked
 
- int __fastcall FindNextUnchecked(TSearchRecChecked & F)
 
- {
 
-   return FindNext(F);
 
- }
 
- //---------------------------------------------------------------------------
 
- // It can make sense to use FindNextChecked, even if unchecked FindFirst is used.
 
- // I.e. even if we do not care that FindFirst failed, if FindNext
 
- // fails after successful FindFirst, it means some terrible problem
 
- int __fastcall FindNextChecked(TSearchRecChecked & F)
 
- {
 
-   return FindCheck(FindNextUnchecked(F), F.Path);
 
- }
 
- //---------------------------------------------------------------------------
 
- bool __fastcall FileSearchRec(const UnicodeString FileName, TSearchRec & Rec)
 
- {
 
-   int FindAttrs = faReadOnly | faHidden | faSysFile | faDirectory | faArchive;
 
-   bool Result = (FindFirst(ApiPath(FileName), FindAttrs, Rec) == 0);
 
-   if (Result)
 
-   {
 
-     FindClose(Rec);
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall ProcessLocalDirectory(UnicodeString DirName,
 
-   TProcessLocalFileEvent CallBackFunc, void * Param,
 
-   int FindAttrs)
 
- {
 
-   DebugAssert(CallBackFunc);
 
-   if (FindAttrs < 0)
 
-   {
 
-     FindAttrs = faReadOnly | faHidden | faSysFile | faDirectory | faArchive;
 
-   }
 
-   TSearchRecChecked SearchRec;
 
-   DirName = IncludeTrailingBackslash(DirName);
 
-   if (FindFirstChecked(DirName + L"*.*", FindAttrs, SearchRec) == 0)
 
-   {
 
-     try
 
-     {
 
-       do
 
-       {
 
-         if ((SearchRec.Name != L".") && (SearchRec.Name != L".."))
 
-         {
 
-           CallBackFunc(DirName + SearchRec.Name, SearchRec, Param);
 
-         }
 
-       } while (FindNextChecked(SearchRec) == 0);
 
-     }
 
-     __finally
 
-     {
 
-       FindClose(SearchRec);
 
-     }
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- int __fastcall FileGetAttrFix(const UnicodeString FileName)
 
- {
 
-   // The default for FileGetAttr is to follow links
 
-   bool FollowLink = true;
 
-   // But the FileGetAttr whe called for link with FollowLink set will always fail
 
-   // as its calls InternalGetFileNameFromSymLink, which test for CheckWin32Version(6, 0)
 
-   if (!IsWinVista())
 
-   {
 
-     FollowLink = false;
 
-   }
 
-   return FileGetAttr(FileName, FollowLink);
 
- }
 
- //---------------------------------------------------------------------------
 
- TDateTime __fastcall EncodeDateVerbose(Word Year, Word Month, Word Day)
 
- {
 
-   try
 
-   {
 
-     TDateTime DateTime = EncodeDate(Year, Month, Day);
 
-     return DateTime;
 
-   }
 
-   catch (EConvertError & E)
 
-   {
 
-     throw EConvertError(FORMAT(L"%s [%d-%d-%d]", (E.Message, int(Year), int(Month), int(Day))));
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- TDateTime __fastcall EncodeTimeVerbose(Word Hour, Word Min, Word Sec, Word MSec)
 
- {
 
-   try
 
-   {
 
-     TDateTime DateTime = EncodeTime(Hour, Min, Sec, MSec);
 
-     return DateTime;
 
-   }
 
-   catch (EConvertError & E)
 
-   {
 
-     throw EConvertError(FORMAT(L"%s [%d:%d:%d.%d]", (E.Message, int(Hour), int(Min), int(Sec), int(MSec))));
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- TDateTime __fastcall SystemTimeToDateTimeVerbose(const SYSTEMTIME & SystemTime)
 
- {
 
-   try
 
-   {
 
-     TDateTime DateTime = SystemTimeToDateTime(SystemTime);
 
-     return DateTime;
 
-   }
 
-   catch (EConvertError & E)
 
-   {
 
-     throw EConvertError(FORMAT(L"%s [%d-%2.2d-%2.2d %2.2d:%2.2d:%2.2d.%3.3d]", (E.Message, int(SystemTime.wYear), int(SystemTime.wMonth), int(SystemTime.wDay), int(SystemTime.wHour), int(SystemTime.wMinute), int(SystemTime.wSecond), int(SystemTime.wMilliseconds))));
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- struct TDateTimeParams
 
- {
 
-   TDateTime UnixEpoch;
 
-   double BaseDifference;
 
-   long BaseDifferenceSec;
 
-   // All Current* are actually global, not per-year and
 
-   // are valid for Year 0 (current) only
 
-   double CurrentDaylightDifference;
 
-   long CurrentDaylightDifferenceSec;
 
-   double CurrentDifference;
 
-   long CurrentDifferenceSec;
 
-   double StandardDifference;
 
-   long StandardDifferenceSec;
 
-   double DaylightDifference;
 
-   long DaylightDifferenceSec;
 
-   SYSTEMTIME SystemStandardDate;
 
-   SYSTEMTIME SystemDaylightDate;
 
-   TDateTime StandardDate;
 
-   TDateTime DaylightDate;
 
-   UnicodeString StandardName;
 
-   UnicodeString DaylightName;
 
-   // This is actually global, not per-year
 
-   bool DaylightHack;
 
-   bool HasDST() const
 
-   {
 
-     // On some systems it occurs that StandardDate is unset, while
 
-     // DaylightDate is set. MSDN states that this is invalid and
 
-     // should be treated as if there is no daylight saving.
 
-     // So check both.
 
-     return
 
-       (SystemStandardDate.wMonth != 0) &&
 
-       (SystemDaylightDate.wMonth != 0);
 
-   }
 
-   bool SummerDST() const
 
-   {
 
-     return HasDST() && (DaylightDate < StandardDate);
 
-   }
 
- };
 
- typedef std::map<int, TDateTimeParams> TYearlyDateTimeParams;
 
- static TYearlyDateTimeParams YearlyDateTimeParams;
 
- static std::unique_ptr<TCriticalSection> DateTimeParamsSection(TraceInitPtr(new TCriticalSection()));
 
- static void __fastcall EncodeDSTMargin(const SYSTEMTIME & Date, unsigned short Year,
 
-   TDateTime & Result);
 
- //---------------------------------------------------------------------------
 
- static unsigned short __fastcall DecodeYear(const TDateTime & DateTime)
 
- {
 
-   unsigned short Year, Month, Day;
 
-   DecodeDate(DateTime, Year, Month, Day);
 
-   return Year;
 
- }
 
- //---------------------------------------------------------------------------
 
- static const TDateTimeParams * __fastcall GetDateTimeParams(unsigned short Year)
 
- {
 
-   TGuard Guard(DateTimeParamsSection.get());
 
-   TDateTimeParams * Result;
 
-   TYearlyDateTimeParams::iterator i = YearlyDateTimeParams.find(Year);
 
-   if (i != YearlyDateTimeParams.end())
 
-   {
 
-     Result = &(*i).second;
 
-   }
 
-   else
 
-   {
 
-     // creates new entry as a side effect
 
-     Result = &YearlyDateTimeParams[Year];
 
-     TIME_ZONE_INFORMATION TZI;
 
-     unsigned long GTZI;
 
-     HINSTANCE Kernel32 = GetModuleHandle(kernel32);
 
-     typedef BOOL WINAPI (* TGetTimeZoneInformationForYear)(USHORT wYear, PDYNAMIC_TIME_ZONE_INFORMATION pdtzi, LPTIME_ZONE_INFORMATION ptzi);
 
-     TGetTimeZoneInformationForYear GetTimeZoneInformationForYear =
 
-       (TGetTimeZoneInformationForYear)GetProcAddress(Kernel32, "GetTimeZoneInformationForYear");
 
-     if ((Year == 0) || (GetTimeZoneInformationForYear == NULL))
 
-     {
 
-       GTZI = GetTimeZoneInformation(&TZI);
 
-     }
 
-     else
 
-     {
 
-       GetTimeZoneInformationForYear(Year, NULL, &TZI);
 
-       GTZI = TIME_ZONE_ID_UNKNOWN;
 
-     }
 
-     switch (GTZI)
 
-     {
 
-       case TIME_ZONE_ID_UNKNOWN:
 
-         Result->CurrentDaylightDifferenceSec = 0;
 
-         break;
 
-       case TIME_ZONE_ID_STANDARD:
 
-         Result->CurrentDaylightDifferenceSec = TZI.StandardBias;
 
-         break;
 
-       case TIME_ZONE_ID_DAYLIGHT:
 
-         Result->CurrentDaylightDifferenceSec = TZI.DaylightBias;
 
-         break;
 
-       case TIME_ZONE_ID_INVALID:
 
-       default:
 
-         throw Exception(TIMEZONE_ERROR);
 
-     }
 
-     Result->BaseDifferenceSec = TZI.Bias;
 
-     Result->BaseDifference = double(TZI.Bias) / MinsPerDay;
 
-     Result->BaseDifferenceSec *= SecsPerMin;
 
-     Result->CurrentDifferenceSec = TZI.Bias +
 
-       Result->CurrentDaylightDifferenceSec;
 
-     Result->CurrentDifference =
 
-       double(Result->CurrentDifferenceSec) / MinsPerDay;
 
-     Result->CurrentDifferenceSec *= SecsPerMin;
 
-     Result->CurrentDaylightDifference =
 
-       double(Result->CurrentDaylightDifferenceSec) / MinsPerDay;
 
-     Result->CurrentDaylightDifferenceSec *= SecsPerMin;
 
-     Result->DaylightDifferenceSec = TZI.DaylightBias * SecsPerMin;
 
-     Result->DaylightDifference = double(TZI.DaylightBias) / MinsPerDay;
 
-     Result->StandardDifferenceSec = TZI.StandardBias * SecsPerMin;
 
-     Result->StandardDifference = double(TZI.StandardBias) / MinsPerDay;
 
-     Result->SystemStandardDate = TZI.StandardDate;
 
-     Result->SystemDaylightDate = TZI.DaylightDate;
 
-     unsigned short AYear = (Year != 0) ? Year : DecodeYear(Now());
 
-     if (Result->HasDST())
 
-     {
 
-       EncodeDSTMargin(Result->SystemStandardDate, AYear, Result->StandardDate);
 
-       EncodeDSTMargin(Result->SystemDaylightDate, AYear, Result->DaylightDate);
 
-     }
 
-     Result->StandardName = TZI.StandardName;
 
-     Result->DaylightName = TZI.DaylightName;
 
-     Result->DaylightHack = !IsWin7();
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- static void __fastcall EncodeDSTMargin(const SYSTEMTIME & Date, unsigned short Year,
 
-   TDateTime & Result)
 
- {
 
-   if (Date.wYear == 0)
 
-   {
 
-     TDateTime Temp = EncodeDateVerbose(Year, Date.wMonth, 1);
 
-     Result = Temp + ((Date.wDayOfWeek - DayOfWeek(Temp) + 8) % 7) +
 
-       (7 * (Date.wDay - 1));
 
-     // Day 5 means, the last occurence of day-of-week in month
 
-     if (Date.wDay == 5)
 
-     {
 
-       unsigned short Month = static_cast<unsigned short>(Date.wMonth + 1);
 
-       if (Month > 12)
 
-       {
 
-         Month = static_cast<unsigned short>(Month - 12);
 
-         Year++;
 
-       }
 
-       if (Result >= EncodeDateVerbose(Year, Month, 1))
 
-       {
 
-         Result -= 7;
 
-       }
 
-     }
 
-     Result += EncodeTimeVerbose(Date.wHour, Date.wMinute, Date.wSecond,
 
-       Date.wMilliseconds);
 
-   }
 
-   else
 
-   {
 
-     Result = EncodeDateVerbose(Year, Date.wMonth, Date.wDay) +
 
-       EncodeTimeVerbose(Date.wHour, Date.wMinute, Date.wSecond, Date.wMilliseconds);
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- static bool __fastcall IsDateInDST(const TDateTime & DateTime)
 
- {
 
-   const TDateTimeParams * Params = GetDateTimeParams(DecodeYear(DateTime));
 
-   bool Result;
 
-   // On some systems it occurs that StandardDate is unset, while
 
-   // DaylightDate is set. MSDN states that this is invalid and
 
-   // should be treated as if there is no daylight saving.
 
-   // So check both.
 
-   if (!Params->HasDST())
 
-   {
 
-     Result = false;
 
-   }
 
-   else
 
-   {
 
-     if (Params->SummerDST())
 
-     {
 
-       Result =
 
-         (DateTime >= Params->DaylightDate) &&
 
-         (DateTime < Params->StandardDate);
 
-     }
 
-     else
 
-     {
 
-       Result =
 
-         (DateTime < Params->StandardDate) ||
 
-         (DateTime >= Params->DaylightDate);
 
-     }
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- bool __fastcall UsesDaylightHack()
 
- {
 
-   return GetDateTimeParams(0)->DaylightHack;
 
- }
 
- //---------------------------------------------------------------------------
 
- TDateTime __fastcall UnixToDateTime(__int64 TimeStamp, TDSTMode DSTMode)
 
- {
 
-   DebugAssert(int(EncodeDateVerbose(1970, 1, 1)) == UnixDateDelta);
 
-   TDateTime Result = UnixDateDelta + (double(TimeStamp) / SecsPerDay);
 
-   const TDateTimeParams * Params = GetDateTimeParams(DecodeYear(Result));
 
-   if (Params->DaylightHack)
 
-   {
 
-     if ((DSTMode == dstmWin) || (DSTMode == dstmUnix))
 
-     {
 
-       const TDateTimeParams * CurrentParams = GetDateTimeParams(0);
 
-       Result -= CurrentParams->CurrentDifference;
 
-     }
 
-     else if (DSTMode == dstmKeep)
 
-     {
 
-       Result -= Params->BaseDifference;
 
-     }
 
-   }
 
-   else
 
-   {
 
-     Result -= Params->BaseDifference;
 
-   }
 
-   if ((DSTMode == dstmUnix) || (DSTMode == dstmKeep))
 
-   {
 
-     Result -= DSTDifferenceForTime(Result);
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- __int64 __fastcall Round(double Number)
 
- {
 
-   double Floor = floor(Number);
 
-   double Ceil = ceil(Number);
 
-   return static_cast<__int64>(((Number - Floor) > (Ceil - Number)) ? Ceil : Floor);
 
- }
 
- //---------------------------------------------------------------------------
 
- bool __fastcall TryRelativeStrToDateTime(UnicodeString S, TDateTime & DateTime, bool Add)
 
- {
 
-   S = S.Trim();
 
-   int Index = 1;
 
-   while ((Index <= S.Length()) && IsDigit(S[Index]))
 
-   {
 
-     Index++;
 
-   }
 
-   UnicodeString NumberStr = S.SubString(1, Index - 1);
 
-   int Number;
 
-   bool Result = TryStrToInt(NumberStr, Number);
 
-   if (Result)
 
-   {
 
-     if (!Add)
 
-     {
 
-       Number = -Number;
 
-     }
 
-     S.Delete(1, Index - 1);
 
-     S = S.Trim().UpperCase();
 
-     DateTime = Now();
 
-     // These may not overlap with ParseSize (K, M and G)
 
-     if (S == "S")
 
-     {
 
-       DateTime = IncSecond(DateTime, Number);
 
-     }
 
-     else if (S == "N")
 
-     {
 
-       DateTime = IncMinute(DateTime, Number);
 
-     }
 
-     else if (S == "H")
 
-     {
 
-       DateTime = IncHour(DateTime, Number);
 
-     }
 
-     else if (S == "D")
 
-     {
 
-       DateTime = IncDay(DateTime, Number);
 
-     }
 
-     else if (S == "Y")
 
-     {
 
-       DateTime = IncYear(DateTime, Number);
 
-     }
 
-     else
 
-     {
 
-       Result = false;
 
-     }
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- const wchar_t KiloSize = L'K';
 
- const wchar_t MegaSize = L'M';
 
- const wchar_t GigaSize = L'G';
 
- //---------------------------------------------------------------------------
 
- // Keep consistent with parse_blocksize64
 
- bool __fastcall TryStrToSize(UnicodeString SizeStr, __int64 & Size)
 
- {
 
-   int Index = 0;
 
-   while ((Index + 1 <= SizeStr.Length()) && IsDigit(SizeStr[Index + 1]))
 
-   {
 
-     Index++;
 
-   }
 
-   bool Result =
 
-     (Index > 0) && TryStrToInt64(SizeStr.SubString(1, Index), Size);
 
-   if (Result)
 
-   {
 
-     SizeStr = SizeStr.SubString(Index + 1, SizeStr.Length() - Index).Trim();
 
-     if (!SizeStr.IsEmpty())
 
-     {
 
-       Result = (SizeStr.Length() == 1);
 
-       if (Result)
 
-       {
 
-         wchar_t Unit = (wchar_t)toupper(SizeStr[1]);
 
-         switch (Unit)
 
-         {
 
-           case GigaSize:
 
-             Size *= 1024;
 
-             // fallthru
 
-           case MegaSize:
 
-             Size *= 1024;
 
-             // fallthru
 
-           case KiloSize:
 
-             Size *= 1024;
 
-             break;
 
-           default:
 
-             Result = false;
 
-         }
 
-       }
 
-     }
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall SizeToStr(__int64 Size)
 
- {
 
-   UnicodeString Result;
 
-   if ((Size <= 0) || ((Size % 1024) != 0))
 
-   {
 
-     Result = IntToStr(Size);
 
-   }
 
-   else
 
-   {
 
-     Size /= 1024;
 
-     if ((Size % 1024) != 0)
 
-     {
 
-       Result = IntToStr(Size) + KiloSize;
 
-     }
 
-     else
 
-     {
 
-       Size /= 1024;
 
-       if ((Size % 1024) != 0)
 
-       {
 
-         Result = IntToStr(Size) + MegaSize;
 
-       }
 
-       else
 
-       {
 
-         Size /= 1024;
 
-         Result = IntToStr(Size) + GigaSize;
 
-       }
 
-     }
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- static __int64 __fastcall DateTimeToUnix(const TDateTime DateTime)
 
- {
 
-   const TDateTimeParams * CurrentParams = GetDateTimeParams(0);
 
-   DebugAssert(int(EncodeDateVerbose(1970, 1, 1)) == UnixDateDelta);
 
-   return Round(double(DateTime - UnixDateDelta) * SecsPerDay) +
 
-     CurrentParams->CurrentDifferenceSec;
 
- }
 
- //---------------------------------------------------------------------------
 
- FILETIME __fastcall DateTimeToFileTime(const TDateTime DateTime,
 
-   TDSTMode /*DSTMode*/)
 
- {
 
-   __int64 UnixTimeStamp = ::DateTimeToUnix(DateTime);
 
-   const TDateTimeParams * Params = GetDateTimeParams(DecodeYear(DateTime));
 
-   if (!Params->DaylightHack)
 
-   {
 
-     // We should probably use reversed code of FileTimeToDateTime here instead of custom implementation
 
-     // We are incrementing and decrementing BaseDifferenceSec because it
 
-     // can actually change between years
 
-     // (as it did in Belarus from GMT+2 to GMT+3 between 2011 and 2012)
 
-     UnixTimeStamp += (IsDateInDST(DateTime) ?
 
-       Params->DaylightDifferenceSec : Params->StandardDifferenceSec) +
 
-       Params->BaseDifferenceSec;
 
-     const TDateTimeParams * CurrentParams = GetDateTimeParams(0);
 
-     UnixTimeStamp -=
 
-       CurrentParams->CurrentDaylightDifferenceSec +
 
-       CurrentParams->BaseDifferenceSec;
 
-   }
 
-   FILETIME Result;
 
-   (*(__int64*)&(Result) = (__int64(UnixTimeStamp) + 11644473600LL) * 10000000LL);
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- TDateTime __fastcall FileTimeToDateTime(const FILETIME & FileTime)
 
- {
 
-   // duplicated in DirView.pas
 
-   TDateTime Result;
 
-   // The 0xFFF... is sometime seen for invalid timestamps,
 
-   // it would cause failure in SystemTimeToDateTime below
 
-   if (FileTime.dwLowDateTime == std::numeric_limits<DWORD>::max())
 
-   {
 
-     Result = MinDateTime;
 
-   }
 
-   else
 
-   {
 
-     SYSTEMTIME SysTime;
 
-     if (!UsesDaylightHack())
 
-     {
 
-       SYSTEMTIME UniverzalSysTime;
 
-       FileTimeToSystemTime(&FileTime, &UniverzalSysTime);
 
-       SystemTimeToTzSpecificLocalTime(NULL, &UniverzalSysTime, &SysTime);
 
-     }
 
-     else
 
-     {
 
-       FILETIME LocalFileTime;
 
-       FileTimeToLocalFileTime(&FileTime, &LocalFileTime);
 
-       FileTimeToSystemTime(&LocalFileTime, &SysTime);
 
-     }
 
-     Result = SystemTimeToDateTimeVerbose(SysTime);
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- __int64 __fastcall ConvertTimestampToUnix(const FILETIME & FileTime,
 
-   TDSTMode DSTMode)
 
- {
 
-   __int64 Result = ((*(__int64*)&(FileTime)) / 10000000LL - 11644473600LL);
 
-   if (UsesDaylightHack())
 
-   {
 
-     if ((DSTMode == dstmUnix) || (DSTMode == dstmKeep))
 
-     {
 
-       FILETIME LocalFileTime;
 
-       SYSTEMTIME SystemTime;
 
-       FileTimeToLocalFileTime(&FileTime, &LocalFileTime);
 
-       FileTimeToSystemTime(&LocalFileTime, &SystemTime);
 
-       TDateTime DateTime = SystemTimeToDateTimeVerbose(SystemTime);
 
-       const TDateTimeParams * Params = GetDateTimeParams(DecodeYear(DateTime));
 
-       Result += (IsDateInDST(DateTime) ?
 
-         Params->DaylightDifferenceSec : Params->StandardDifferenceSec);
 
-       if (DSTMode == dstmKeep)
 
-       {
 
-         const TDateTimeParams * CurrentParams = GetDateTimeParams(0);
 
-         Result -= CurrentParams->CurrentDaylightDifferenceSec;
 
-       }
 
-     }
 
-   }
 
-   else
 
-   {
 
-     if (DSTMode == dstmWin)
 
-     {
 
-       FILETIME LocalFileTime;
 
-       SYSTEMTIME SystemTime;
 
-       FileTimeToLocalFileTime(&FileTime, &LocalFileTime);
 
-       FileTimeToSystemTime(&LocalFileTime, &SystemTime);
 
-       TDateTime DateTime = SystemTimeToDateTimeVerbose(SystemTime);
 
-       const TDateTimeParams * Params = GetDateTimeParams(DecodeYear(DateTime));
 
-       Result -= (IsDateInDST(DateTime) ?
 
-         Params->DaylightDifferenceSec : Params->StandardDifferenceSec);
 
-     }
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- TDateTime __fastcall ConvertTimestampToUTC(TDateTime DateTime)
 
- {
 
-   const TDateTimeParams * Params = GetDateTimeParams(DecodeYear(DateTime));
 
-   DateTime += DSTDifferenceForTime(DateTime);
 
-   DateTime += Params->BaseDifference;
 
-   if (Params->DaylightHack)
 
-   {
 
-     const TDateTimeParams * CurrentParams = GetDateTimeParams(0);
 
-     DateTime += CurrentParams->CurrentDaylightDifference;
 
-   }
 
-   return DateTime;
 
- }
 
- //---------------------------------------------------------------------------
 
- TDateTime __fastcall ConvertTimestampFromUTC(TDateTime DateTime)
 
- {
 
-   const TDateTimeParams * Params = GetDateTimeParams(DecodeYear(DateTime));
 
-   DateTime -= DSTDifferenceForTime(DateTime);
 
-   DateTime -= Params->BaseDifference;
 
-   if (Params->DaylightHack)
 
-   {
 
-     const TDateTimeParams * CurrentParams = GetDateTimeParams(0);
 
-     DateTime -= CurrentParams->CurrentDaylightDifference;
 
-   }
 
-   return DateTime;
 
- }
 
- //---------------------------------------------------------------------------
 
- __int64 __fastcall ConvertTimestampToUnixSafe(const FILETIME & FileTime,
 
-   TDSTMode DSTMode)
 
- {
 
-   __int64 Result;
 
-   if ((FileTime.dwLowDateTime == 0) &&
 
-       (FileTime.dwHighDateTime == 0))
 
-   {
 
-     Result = ::DateTimeToUnix(Now());
 
-   }
 
-   else
 
-   {
 
-     Result = ConvertTimestampToUnix(FileTime, DSTMode);
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- double __fastcall DSTDifferenceForTime(TDateTime DateTime)
 
- {
 
-   double Result;
 
-   const TDateTimeParams * Params = GetDateTimeParams(DecodeYear(DateTime));
 
-   if (IsDateInDST(DateTime))
 
-   {
 
-     Result = Params->DaylightDifference;
 
-   }
 
-   else
 
-   {
 
-     Result = Params->StandardDifference;
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- TDateTime __fastcall AdjustDateTimeFromUnix(TDateTime DateTime, TDSTMode DSTMode)
 
- {
 
-   const TDateTimeParams * Params = GetDateTimeParams(DecodeYear(DateTime));
 
-   if (Params->DaylightHack)
 
-   {
 
-     if ((DSTMode == dstmWin) || (DSTMode == dstmUnix))
 
-     {
 
-       const TDateTimeParams * CurrentParams = GetDateTimeParams(0);
 
-       DateTime = DateTime - CurrentParams->CurrentDaylightDifference;
 
-     }
 
-     if (!IsDateInDST(DateTime))
 
-     {
 
-       if (DSTMode == dstmWin)
 
-       {
 
-         DateTime = DateTime - Params->DaylightDifference;
 
-       }
 
-     }
 
-     else
 
-     {
 
-       DateTime = DateTime - Params->StandardDifference;
 
-     }
 
-   }
 
-   else
 
-   {
 
-     if (DSTMode == dstmWin)
 
-     {
 
-       DateTime = DateTime + DSTDifferenceForTime(DateTime);
 
-     }
 
-   }
 
-   return DateTime;
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall FixedLenDateTimeFormat(const UnicodeString & Format)
 
- {
 
-   UnicodeString Result = Format;
 
-   bool AsIs = false;
 
-   int Index = 1;
 
-   while (Index <= Result.Length())
 
-   {
 
-     wchar_t F = Result[Index];
 
-     if ((F == L'\'') || (F == L'\"'))
 
-     {
 
-       AsIs = !AsIs;
 
-       Index++;
 
-     }
 
-     else if (!AsIs && ((F == L'a') || (F == L'A')))
 
-     {
 
-       if (Result.SubString(Index, 5).LowerCase() == L"am/pm")
 
-       {
 
-         Index += 5;
 
-       }
 
-       else if (Result.SubString(Index, 3).LowerCase() == L"a/p")
 
-       {
 
-         Index += 3;
 
-       }
 
-       else if (Result.SubString(Index, 4).LowerCase() == L"ampm")
 
-       {
 
-         Index += 4;
 
-       }
 
-       else
 
-       {
 
-         Index++;
 
-       }
 
-     }
 
-     else
 
-     {
 
-       if (!AsIs && (wcschr(L"dDeEmMhHnNsS", F) != NULL) &&
 
-           ((Index == Result.Length()) || (Result[Index + 1] != F)))
 
-       {
 
-         Result.Insert(F, Index);
 
-       }
 
-       while ((Index <= Result.Length()) && (F == Result[Index]))
 
-       {
 
-         Index++;
 
-       }
 
-     }
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall FormatTimeZone(long Sec)
 
- {
 
-   TTimeSpan Span = TTimeSpan::FromSeconds(Sec);
 
-   UnicodeString Str;
 
-   if ((Span.Seconds == 0) && (Span.Minutes == 0))
 
-   {
 
-     Str = FORMAT(L"%d", (-Span.Hours));
 
-   }
 
-   else if (Span.Seconds == 0)
 
-   {
 
-     Str = FORMAT(L"%d:%2.2d", (-Span.Hours, abs(Span.Minutes)));
 
-   }
 
-   else
 
-   {
 
-     Str = FORMAT(L"%d:%2.2d:%2.2d", (-Span.Hours, abs(Span.Minutes), abs(Span.Seconds)));
 
-   }
 
-   Str = ((Span <= TTimeSpan::Zero) ? L"+" : L"") + Str;
 
-   return Str;
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall GetTimeZoneLogString()
 
- {
 
-   const TDateTimeParams * CurrentParams = GetDateTimeParams(0);
 
-   UnicodeString Result =
 
-     FORMAT(L"Current: GMT%s", (FormatTimeZone(CurrentParams->CurrentDifferenceSec)));
 
-   if (!CurrentParams->HasDST())
 
-   {
 
-     Result += FORMAT(L" (%s), No DST", (CurrentParams->StandardName));
 
-   }
 
-   else
 
-   {
 
-     Result +=
 
-       FORMAT(L", Standard: GMT%s (%s), DST: GMT%s (%s), DST Start: %s, DST End: %s",
 
-         (FormatTimeZone(CurrentParams->BaseDifferenceSec + CurrentParams->StandardDifferenceSec),
 
-          CurrentParams->StandardName,
 
-          FormatTimeZone(CurrentParams->BaseDifferenceSec + CurrentParams->DaylightDifferenceSec),
 
-          CurrentParams->DaylightName,
 
-          CurrentParams->DaylightDate.DateString(),
 
-          CurrentParams->StandardDate.DateString()));
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- bool __fastcall AdjustClockForDSTEnabled()
 
- {
 
-   // Windows XP deletes the DisableAutoDaylightTimeSet value when it is off
 
-   // (the later versions set it to DynamicDaylightTimeDisabled to 0)
 
-   bool DynamicDaylightTimeDisabled = false;
 
-   TRegistry * Registry = new TRegistry(KEY_READ);
 
-   try
 
-   {
 
-     Registry->RootKey = HKEY_LOCAL_MACHINE;
 
-     if (Registry->OpenKey(L"SYSTEM", false) &&
 
-         Registry->OpenKey(L"CurrentControlSet", false) &&
 
-         Registry->OpenKey(L"Control", false) &&
 
-         Registry->OpenKey(L"TimeZoneInformation", false))
 
-     {
 
-       if (Registry->ValueExists(L"DynamicDaylightTimeDisabled"))
 
-       {
 
-         DynamicDaylightTimeDisabled = Registry->ReadBool(L"DynamicDaylightTimeDisabled");
 
-       }
 
-       // WORKAROUND
 
-       // Windows XP equivalent
 
-       else if (Registry->ValueExists(L"DisableAutoDaylightTimeSet"))
 
-       {
 
-         DynamicDaylightTimeDisabled = Registry->ReadBool(L"DisableAutoDaylightTimeSet");
 
-       }
 
-     }
 
-     delete Registry;
 
-   }
 
-   catch(...)
 
-   {
 
-   }
 
-   return !DynamicDaylightTimeDisabled;
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall StandardDatestamp()
 
- {
 
-   return FormatDateTime(L"yyyy'-'mm'-'dd", ConvertTimestampToUTC(Now()));
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall StandardTimestamp(const TDateTime & DateTime)
 
- {
 
-   return FormatDateTime(L"yyyy'-'mm'-'dd'T'hh':'nn':'ss'.'zzz'Z'", ConvertTimestampToUTC(DateTime));
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall StandardTimestamp()
 
- {
 
-   return StandardTimestamp(Now());
 
- }
 
- //---------------------------------------------------------------------------
 
- static TDateTime TwoSeconds(0, 0, 2, 0);
 
- int __fastcall CompareFileTime(TDateTime T1, TDateTime T2)
 
- {
 
-   // "FAT" time precision
 
-   // (when one time is seconds-precision and other is millisecond-precision,
 
-   // we may have times like 12:00:00.000 and 12:00:01.999, which should
 
-   // be treated the same)
 
-   int Result;
 
-   if (T1 == T2)
 
-   {
 
-     // just optimization
 
-     Result = 0;
 
-   }
 
-   else if ((T1 < T2) && (T2 - T1 >= TwoSeconds))
 
-   {
 
-     Result = -1;
 
-   }
 
-   else if ((T1 > T2) && (T1 - T2 >= TwoSeconds))
 
-   {
 
-     Result = 1;
 
-   }
 
-   else
 
-   {
 
-     Result = 0;
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- int __fastcall TimeToMSec(TDateTime T)
 
- {
 
-   return int(Round(double(T) * double(MSecsPerDay)));
 
- }
 
- //---------------------------------------------------------------------------
 
- int __fastcall TimeToSeconds(TDateTime T)
 
- {
 
-   return TimeToMSec(T) / MSecsPerSec;
 
- }
 
- //---------------------------------------------------------------------------
 
- int __fastcall TimeToMinutes(TDateTime T)
 
- {
 
-   return TimeToSeconds(T) / SecsPerMin;
 
- }
 
- //---------------------------------------------------------------------------
 
- static bool __fastcall DoRecursiveDeleteFile(const UnicodeString FileName, bool ToRecycleBin, UnicodeString & ErrorPath)
 
- {
 
-   bool Result;
 
-   UnicodeString AErrorPath = FileName;
 
-   if (!ToRecycleBin)
 
-   {
 
-     TSearchRecChecked SearchRec;
 
-     Result = FileSearchRec(FileName, SearchRec);
 
-     if (Result)
 
-     {
 
-       if (FLAGCLEAR(SearchRec.Attr, faDirectory))
 
-       {
 
-         Result = DeleteFile(ApiPath(FileName));
 
-       }
 
-       else
 
-       {
 
-         Result = (FindFirstUnchecked(FileName + L"\\*", faAnyFile, SearchRec) == 0);
 
-         if (Result)
 
-         {
 
-           try
 
-           {
 
-             do
 
-             {
 
-               UnicodeString FileName2 = FileName + L"\\" + SearchRec.Name;
 
-               if (FLAGSET(SearchRec.Attr, faDirectory))
 
-               {
 
-                 if ((SearchRec.Name != L".") && (SearchRec.Name != L".."))
 
-                 {
 
-                   Result = DoRecursiveDeleteFile(FileName2, DebugAlwaysFalse(ToRecycleBin), AErrorPath);
 
-                 }
 
-               }
 
-               else
 
-               {
 
-                 Result = DeleteFile(ApiPath(FileName2));
 
-                 if (!Result)
 
-                 {
 
-                   AErrorPath = FileName2;
 
-                 }
 
-               }
 
-             }
 
-             while (Result && (FindNextUnchecked(SearchRec) == 0));
 
-           }
 
-           __finally
 
-           {
 
-             FindClose(SearchRec);
 
-           }
 
-           if (Result)
 
-           {
 
-             Result = RemoveDir(ApiPath(FileName));
 
-           }
 
-         }
 
-       }
 
-     }
 
-   }
 
-   else
 
-   {
 
-     SHFILEOPSTRUCT Data;
 
-     memset(&Data, 0, sizeof(Data));
 
-     Data.hwnd = NULL;
 
-     Data.wFunc = FO_DELETE;
 
-     // SHFileOperation does not support long paths anyway
 
-     UnicodeString FileList(ApiPath(FileName));
 
-     FileList.SetLength(FileList.Length() + 2);
 
-     FileList[FileList.Length() - 1] = L'\0';
 
-     FileList[FileList.Length()] = L'\0';
 
-     Data.pFrom = FileList.c_str();
 
-     Data.pTo = L"\0\0"; // this will actually give one null more than needed
 
-     Data.fFlags = FOF_NOCONFIRMATION | FOF_RENAMEONCOLLISION | FOF_NOCONFIRMMKDIR |
 
-       FOF_NOERRORUI | FOF_SILENT;
 
-     if (DebugAlwaysTrue(ToRecycleBin))
 
-     {
 
-       Data.fFlags |= FOF_ALLOWUNDO;
 
-     }
 
-     int ErrorCode = SHFileOperation(&Data);
 
-     Result = (ErrorCode == 0);
 
-     if (!Result)
 
-     {
 
-       // according to MSDN, SHFileOperation may return following non-Win32
 
-       // error codes
 
-       if (((ErrorCode >= 0x71) && (ErrorCode <= 0x88)) ||
 
-           (ErrorCode == 0xB7) || (ErrorCode == 0x402) || (ErrorCode == 0x10000) ||
 
-           (ErrorCode == 0x10074))
 
-       {
 
-         ErrorCode = 0;
 
-       }
 
-       SetLastError(ErrorCode);
 
-     }
 
-   }
 
-   if (!Result)
 
-   {
 
-     ErrorPath = AErrorPath;
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- bool __fastcall RecursiveDeleteFile(const UnicodeString & FileName, bool ToRecycleBin)
 
- {
 
-   UnicodeString ErrorPath; // unused
 
-   bool Result = DoRecursiveDeleteFile(FileName, ToRecycleBin, ErrorPath);
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall RecursiveDeleteFileChecked(const UnicodeString & FileName, bool ToRecycleBin)
 
- {
 
-   UnicodeString ErrorPath;
 
-   if (!DoRecursiveDeleteFile(FileName, ToRecycleBin, ErrorPath))
 
-   {
 
-     throw EOSExtException(FMTLOAD(DELETE_LOCAL_FILE_ERROR, (ErrorPath)));
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall DeleteFileChecked(const UnicodeString & FileName)
 
- {
 
-   if (!DeleteFile(ApiPath(FileName)))
 
-   {
 
-     throw EOSExtException(FMTLOAD(DELETE_LOCAL_FILE_ERROR, (FileName)));
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- unsigned int __fastcall CancelAnswer(unsigned int Answers)
 
- {
 
-   unsigned int Result;
 
-   if ((Answers & qaCancel) != 0)
 
-   {
 
-     Result = qaCancel;
 
-   }
 
-   else if ((Answers & qaNo) != 0)
 
-   {
 
-     Result = qaNo;
 
-   }
 
-   else if ((Answers & qaAbort) != 0)
 
-   {
 
-     Result = qaAbort;
 
-   }
 
-   else if ((Answers & qaOK) != 0)
 
-   {
 
-     Result = qaOK;
 
-   }
 
-   else
 
-   {
 
-     DebugFail();
 
-     Result = qaCancel;
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- unsigned int __fastcall AbortAnswer(unsigned int Answers)
 
- {
 
-   unsigned int Result;
 
-   if (FLAGSET(Answers, qaAbort))
 
-   {
 
-     Result = qaAbort;
 
-   }
 
-   else
 
-   {
 
-     Result = CancelAnswer(Answers);
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- unsigned int __fastcall ContinueAnswer(unsigned int Answers)
 
- {
 
-   unsigned int Result;
 
-   if (FLAGSET(Answers, qaSkip))
 
-   {
 
-     Result = qaSkip;
 
-   }
 
-   else if (FLAGSET(Answers, qaIgnore))
 
-   {
 
-     Result = qaIgnore;
 
-   }
 
-   else if (FLAGSET(Answers, qaYes))
 
-   {
 
-     Result = qaYes;
 
-   }
 
-   else if (FLAGSET(Answers, qaOK))
 
-   {
 
-     Result = qaOK;
 
-   }
 
-   else if (FLAGSET(Answers, qaRetry))
 
-   {
 
-     Result = qaRetry;
 
-   }
 
-   else
 
-   {
 
-     Result = CancelAnswer(Answers);
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- TLibModule * __fastcall FindModule(void * Instance)
 
- {
 
-   TLibModule * CurModule;
 
-   CurModule = reinterpret_cast<TLibModule*>(LibModuleList);
 
-   while (CurModule)
 
-   {
 
-     if (CurModule->Instance == (unsigned)Instance)
 
-     {
 
-       break;
 
-     }
 
-     else
 
-     {
 
-       CurModule = CurModule->Next;
 
-     }
 
-   }
 
-   return CurModule;
 
- }
 
- //---------------------------------------------------------------------------
 
- static UnicodeString __fastcall DoLoadStrFrom(HINSTANCE Module, int Ident, unsigned int MaxLength)
 
- {
 
-   UnicodeString Result;
 
-   Result.SetLength(MaxLength);
 
-   int Length = LoadString(Module, Ident, Result.c_str(), MaxLength);
 
-   Result.SetLength(Length);
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall LoadStrFrom(HINSTANCE Module, int Ident)
 
- {
 
-   // 1024 = what VCL LoadStr limits the string to
 
-   return DoLoadStrFrom(Module, Ident, 1024);
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall LoadStr(int Ident, unsigned int MaxLength)
 
- {
 
-   TLibModule * MainModule = FindModule(HInstance);
 
-   DebugAssert(MainModule != NULL);
 
-   return DoLoadStrFrom((HINSTANCE)MainModule->ResInstance, Ident, MaxLength);
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall LoadStrPart(int Ident, int Part)
 
- {
 
-   UnicodeString Result;
 
-   UnicodeString Str = LoadStr(Ident);
 
-   while (Part > 0)
 
-   {
 
-     Result = CutToChar(Str, L'|', false);
 
-     Part--;
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall DecodeUrlChars(UnicodeString S)
 
- {
 
-   int i = 1;
 
-   while (i <= S.Length())
 
-   {
 
-     switch (S[i])
 
-     {
 
-       case L'+':
 
-         S[i] = ' ';
 
-         break;
 
-       case L'%':
 
-         {
 
-           UnicodeString Hex;
 
-           while ((i + 2 <= S.Length()) && (S[i] == L'%') &&
 
-                  IsHex(S[i + 1]) && IsHex(S[i + 2]))
 
-           {
 
-             Hex += S.SubString(i + 1, 2);
 
-             S.Delete(i, 3);
 
-           }
 
-           if (!Hex.IsEmpty())
 
-           {
 
-             RawByteString Bytes = HexToBytes(Hex);
 
-             UnicodeString Chars(UTF8ToString(Bytes));
 
-             S.Insert(Chars, i);
 
-             i += Chars.Length() - 1;
 
-           }
 
-         }
 
-         break;
 
-     }
 
-     i++;
 
-   }
 
-   return S;
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall DoEncodeUrl(UnicodeString S, bool EncodeSlash)
 
- {
 
-   int Index = 1;
 
-   while (Index <= S.Length())
 
-   {
 
-     wchar_t C = S[Index];
 
-     if (IsLetter(C) ||
 
-         IsDigit(C) ||
 
-         (C == L'_') || (C == L'-') || (C == L'.') ||
 
-         ((C == L'/') && !EncodeSlash))
 
-     {
 
-       Index++;
 
-     }
 
-     else
 
-     {
 
-       UTF8String UtfS(S.SubString(Index, 1));
 
-       UnicodeString H;
 
-       for (int Index2 = 1; Index2 <= UtfS.Length(); Index2++)
 
-       {
 
-         H += L"%" + ByteToHex(static_cast<unsigned char>(UtfS[Index2]));
 
-       }
 
-       S.Delete(Index, 1);
 
-       S.Insert(H, Index);
 
-       Index += H.Length();
 
-     }
 
-   }
 
-   return S;
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall EncodeUrlString(UnicodeString S)
 
- {
 
-   return DoEncodeUrl(S, true);
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall EncodeUrlPath(UnicodeString S)
 
- {
 
-   return DoEncodeUrl(S, false);
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall AppendUrlParams(UnicodeString AURL, UnicodeString Params)
 
- {
 
-   // see also TWebHelpSystem::ShowHelp
 
-   const wchar_t FragmentSeparator = L'#';
 
-   UnicodeString URL = CutToChar(AURL, FragmentSeparator, false);
 
-   if (URL.Pos(L"?") == 0)
 
-   {
 
-     URL += L"?";
 
-   }
 
-   else
 
-   {
 
-     URL += L"&";
 
-   }
 
-   URL += Params;
 
-   AddToList(URL, AURL, FragmentSeparator);
 
-   return URL;
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall ExtractFileNameFromUrl(const UnicodeString & Url)
 
- {
 
-   UnicodeString Result = Url;
 
-   int P = Result.Pos(L"?");
 
-   if (P > 0)
 
-   {
 
-     Result.SetLength(P - 1);
 
-   }
 
-   P = Result.LastDelimiter("/");
 
-   if (DebugAlwaysTrue(P > 0))
 
-   {
 
-     Result.Delete(1, P);
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall EscapeHotkey(const UnicodeString & Caption)
 
- {
 
-   return ReplaceStr(Caption, L"&", L"&&");
 
- }
 
- //---------------------------------------------------------------------------
 
- // duplicated in console's Main.cpp
 
- static bool __fastcall DoCutToken(UnicodeString & Str, UnicodeString & Token,
 
-   UnicodeString * RawToken, UnicodeString * Separator, bool EscapeQuotesInQuotesOnly)
 
- {
 
-   bool Result;
 
-   Token = L"";
 
-   // inspired by Putty's sftp_getcmd() from PSFTP.C
 
-   int Index = 1;
 
-   while ((Index <= Str.Length()) &&
 
-     ((Str[Index] == L' ') || (Str[Index] == L'\t')))
 
-   {
 
-     Index++;
 
-   }
 
-   if (Index <= Str.Length())
 
-   {
 
-     bool Quoting = false;
 
-     while (Index <= Str.Length())
 
-     {
 
-       if (!Quoting && ((Str[Index] == L' ') || (Str[Index] == L'\t')))
 
-       {
 
-         break;
 
-       }
 
-       // With EscapeQuotesInQuotesOnly we escape quotes only within quotes
 
-       // otherwise the "" means " (quote), but it should mean empty string.
 
-       else if ((Str[Index] == L'"') && (Index + 1 <= Str.Length()) &&
 
-         (Str[Index + 1] == L'"') && (!EscapeQuotesInQuotesOnly || Quoting))
 
-       {
 
-         Index += 2;
 
-         Token += L'"';
 
-       }
 
-       else if (Str[Index] == L'"')
 
-       {
 
-         Index++;
 
-         Quoting = !Quoting;
 
-       }
 
-       else
 
-       {
 
-         Token += Str[Index];
 
-         Index++;
 
-       }
 
-     }
 
-     if (RawToken != NULL)
 
-     {
 
-       (*RawToken) = Str.SubString(1, Index - 1);
 
-     }
 
-     if (Index <= Str.Length())
 
-     {
 
-       if (Separator != NULL)
 
-       {
 
-         *Separator = Str.SubString(Index, 1);
 
-       }
 
-       Index++;
 
-     }
 
-     else
 
-     {
 
-       if (Separator != NULL)
 
-       {
 
-         *Separator = UnicodeString();
 
-       }
 
-     }
 
-     Str = Str.SubString(Index, Str.Length());
 
-     Result = true;
 
-   }
 
-   else
 
-   {
 
-     Result = false;
 
-     Str = L"";
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- bool __fastcall CutToken(UnicodeString & Str, UnicodeString & Token,
 
-   UnicodeString * RawToken, UnicodeString * Separator)
 
- {
 
-   return DoCutToken(Str, Token, RawToken, Separator, false);
 
- }
 
- //---------------------------------------------------------------------------
 
- bool __fastcall CutTokenEx(UnicodeString & Str, UnicodeString & Token,
 
-   UnicodeString * RawToken, UnicodeString * Separator)
 
- {
 
-   return DoCutToken(Str, Token, RawToken, Separator, true);
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall AddToList(UnicodeString & List, const UnicodeString & Value, const UnicodeString & Delimiter)
 
- {
 
-   if (!Value.IsEmpty())
 
-   {
 
-     if (!List.IsEmpty() &&
 
-         ((List.Length() < Delimiter.Length()) ||
 
-          (List.SubString(List.Length() - Delimiter.Length() + 1, Delimiter.Length()) != Delimiter)))
 
-     {
 
-       List += Delimiter;
 
-     }
 
-     List += Value;
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- bool __fastcall IsWinVista()
 
- {
 
-   // Vista is 6.0
 
-   // Win XP is 5.1
 
-   // There also 5.2, what is Windows 2003 or Windows XP 64bit
 
-   // (we consider it WinXP for now)
 
-   return CheckWin32Version(6, 0);
 
- }
 
- //---------------------------------------------------------------------------
 
- bool __fastcall IsWin7()
 
- {
 
-   return CheckWin32Version(6, 1);
 
- }
 
- //---------------------------------------------------------------------------
 
- bool __fastcall IsWin8()
 
- {
 
-   return CheckWin32Version(6, 2);
 
- }
 
- //---------------------------------------------------------------------------
 
- bool __fastcall IsWin10()
 
- {
 
-   return CheckWin32Version(10, 0);
 
- }
 
- //---------------------------------------------------------------------------
 
- bool __fastcall IsWine()
 
- {
 
-   HMODULE NtDll = GetModuleHandle(L"ntdll.dll");
 
-   return
 
-     DebugAlwaysTrue(NtDll != NULL) &&
 
-     (GetProcAddress(NtDll, "wine_get_version") != NULL);
 
- }
 
- //---------------------------------------------------------------------------
 
- LCID __fastcall GetDefaultLCID()
 
- {
 
-   return GetUserDefaultLCID();
 
- }
 
- //---------------------------------------------------------------------------
 
- static UnicodeString ADefaultEncodingName;
 
- UnicodeString __fastcall DefaultEncodingName()
 
- {
 
-   if (ADefaultEncodingName.IsEmpty())
 
-   {
 
-     CPINFOEX Info;
 
-     GetCPInfoEx(CP_ACP, 0, &Info);
 
-     ADefaultEncodingName = Info.CodePageName;
 
-   }
 
-   return ADefaultEncodingName;
 
- }
 
- //---------------------------------------------------------------------------
 
- bool _fastcall GetWindowsProductType(DWORD & Type)
 
- {
 
-   bool Result;
 
-   HINSTANCE Kernel32 = GetModuleHandle(kernel32);
 
-   typedef BOOL WINAPI (* TGetProductInfo)(DWORD, DWORD, DWORD, DWORD, PDWORD);
 
-   TGetProductInfo GetProductInfo =
 
-       (TGetProductInfo)GetProcAddress(Kernel32, "GetProductInfo");
 
-   if (GetProductInfo == NULL)
 
-   {
 
-     Result = false;
 
-   }
 
-   else
 
-   {
 
-     GetProductInfo(Win32MajorVersion, Win32MinorVersion, 0, 0, &Type);
 
-     Result = true;
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall WindowsProductName()
 
- {
 
-   UnicodeString Result;
 
-   TRegistry * Registry = new TRegistry(KEY_READ);
 
-   try
 
-   {
 
-     Registry->RootKey = HKEY_LOCAL_MACHINE;
 
-     if (Registry->OpenKey(L"SOFTWARE", false) &&
 
-         Registry->OpenKey(L"Microsoft", false) &&
 
-         Registry->OpenKey(L"Windows NT", false) &&
 
-         Registry->OpenKey(L"CurrentVersion", false))
 
-     {
 
-       Result = Registry->ReadString(L"ProductName");
 
-     }
 
-     delete Registry;
 
-   }
 
-   catch(...)
 
-   {
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall WindowsVersion()
 
- {
 
-   UnicodeString Result;
 
-   OSVERSIONINFO OSVersionInfo;
 
-   OSVersionInfo.dwOSVersionInfoSize = sizeof(OSVersionInfo);
 
-   // Cannot use the VCL Win32MajorVersion+Win32MinorVersion+Win32BuildNumber as
 
-   // on Windows 10 due to some hacking in InitPlatformId, the Win32BuildNumber is lost
 
-   if (GetVersionEx(&OSVersionInfo) != 0)
 
-   {
 
-     Result = FORMAT(L"%d.%d.%d", (int(OSVersionInfo.dwMajorVersion), int(OSVersionInfo.dwMinorVersion), int(OSVersionInfo.dwBuildNumber)));
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall WindowsVersionLong()
 
- {
 
-   UnicodeString Result = WindowsVersion();
 
-   AddToList(Result, Win32CSDVersion, L" ");
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- bool __fastcall IsDirectoryWriteable(const UnicodeString & Path)
 
- {
 
-   UnicodeString FileName =
 
-     IncludeTrailingPathDelimiter(Path) +
 
-     FORMAT(L"wscp_%s_%d.tmp", (FormatDateTime(L"nnzzz", Now()), int(GetCurrentProcessId())));
 
-   HANDLE Handle = CreateFile(ApiPath(FileName).c_str(), GENERIC_READ | GENERIC_WRITE, 0, NULL,
 
-     CREATE_NEW, FILE_ATTRIBUTE_TEMPORARY | FILE_FLAG_DELETE_ON_CLOSE, 0);
 
-   bool Result = (Handle != INVALID_HANDLE_VALUE);
 
-   if (Result)
 
-   {
 
-     CloseHandle(Handle);
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall FormatNumber(__int64 Number)
 
- {
 
-   return FormatFloat(L"#,##0", Number);
 
- }
 
- //---------------------------------------------------------------------------
 
- // simple alternative to FormatBytes
 
- UnicodeString __fastcall FormatSize(__int64 Size)
 
- {
 
-   return FormatNumber(Size);
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall ExtractFileBaseName(const UnicodeString & Path)
 
- {
 
-   return ChangeFileExt(ExtractFileName(Path), L"");
 
- }
 
- //---------------------------------------------------------------------------
 
- TStringList * __fastcall TextToStringList(const UnicodeString & Text)
 
- {
 
-   std::unique_ptr<TStringList> List(new TStringList());
 
-   List->Text = Text;
 
-   return List.release();
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall StringsToText(TStrings * Strings)
 
- {
 
-   UnicodeString Result;
 
-   if (Strings->Count == 1)
 
-   {
 
-     Result = Strings->Strings[0];
 
-   }
 
-   else
 
-   {
 
-     Result = Strings->Text;
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- TStrings * __fastcall CloneStrings(TStrings * Strings)
 
- {
 
-   std::unique_ptr<TStringList> List(new TStringList());
 
-   List->AddStrings(Strings);
 
-   return List.release();
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall TrimVersion(UnicodeString Version)
 
- {
 
-   while ((Version.Pos(L".") != Version.LastDelimiter(L".")) &&
 
-     (Version.SubString(Version.Length() - 1, 2) == L".0"))
 
-   {
 
-     Version.SetLength(Version.Length() - 2);
 
-   }
 
-   return Version;
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall FormatVersion(int MajovVersion, int MinorVersion, int Release)
 
- {
 
-   return
 
-     TrimVersion(FORMAT(L"%d.%d.%d",
 
-       (MajovVersion, MinorVersion, Release)));
 
- }
 
- //---------------------------------------------------------------------------
 
- TFormatSettings __fastcall GetEngFormatSettings()
 
- {
 
-   return TFormatSettings::Create((TLocaleID)1033);
 
- }
 
- //---------------------------------------------------------------------------
 
- int __fastcall ParseShortEngMonthName(const UnicodeString & MonthStr)
 
- {
 
-   TFormatSettings FormatSettings = GetEngFormatSettings();
 
-   return IndexStr(MonthStr, FormatSettings.ShortMonthNames, FormatSettings.ShortMonthNames.Size()) + 1;
 
- }
 
- //---------------------------------------------------------------------------
 
- TStringList * __fastcall CreateSortedStringList(bool CaseSensitive, System::Types::TDuplicates Duplicates)
 
- {
 
-   TStringList * Result = new TStringList();
 
-   Result->CaseSensitive = CaseSensitive;
 
-   Result->Sorted = true;
 
-   Result->Duplicates = Duplicates;
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- static UnicodeString __fastcall NormalizeIdent(UnicodeString Ident)
 
- {
 
-   int Index = 1;
 
-   while (Index <= Ident.Length())
 
-   {
 
-     if (Ident[Index] == L'-')
 
-     {
 
-       Ident.Delete(Index, 1);
 
-     }
 
-     else
 
-     {
 
-       Index++;
 
-     }
 
-   }
 
-   return Ident;
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall FindIdent(const UnicodeString & Ident, TStrings * Idents)
 
- {
 
-   UnicodeString NormalizedIdent(NormalizeIdent(Ident));
 
-   for (int Index = 0; Index < Idents->Count; Index++)
 
-   {
 
-     if (SameText(NormalizedIdent, NormalizeIdent(Idents->Strings[Index])))
 
-     {
 
-       return Idents->Strings[Index];
 
-     }
 
-   }
 
-   return Ident;
 
- }
 
- //---------------------------------------------------------------------------
 
- static UnicodeString __fastcall GetTlsErrorStr(int Err)
 
- {
 
-   char * Buffer = new char[512];
 
-   ERR_error_string(Err, Buffer);
 
-   // not sure about the UTF8
 
-   return UnicodeString(UTF8String(Buffer));
 
- }
 
- //---------------------------------------------------------------------------
 
- static FILE * __fastcall OpenCertificate(const UnicodeString & Path)
 
- {
 
-   FILE * Result = _wfopen(ApiPath(Path).c_str(), L"rb");
 
-   if (Result == NULL)
 
-   {
 
-     int Error = errno;
 
-     throw EOSExtException(MainInstructions(FMTLOAD(CERTIFICATE_OPEN_ERROR, (Path))), Error);
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- struct TPemPasswordCallbackData
 
- {
 
-   UnicodeString * Passphrase;
 
- };
 
- //---------------------------------------------------------------------------
 
- static int PemPasswordCallback(char * Buf, int Size, int /*RWFlag*/, void * UserData)
 
- {
 
-   TPemPasswordCallbackData & Data = *reinterpret_cast<TPemPasswordCallbackData *>(UserData);
 
-   UTF8String UtfPassphrase = UTF8String(*Data.Passphrase);
 
-   strncpy(Buf, UtfPassphrase.c_str(), Size);
 
-   Shred(UtfPassphrase);
 
-   Buf[Size - 1] = '\0';
 
-   return strlen(Buf);
 
- }
 
- //---------------------------------------------------------------------------
 
- static bool __fastcall IsTlsPassphraseError(int Error, bool HasPassphrase)
 
- {
 
-   int ErrorLib = ERR_GET_LIB(Error);
 
-   int ErrorReason = ERR_GET_REASON(Error);
 
-   bool Result =
 
-     ((ErrorLib == ERR_LIB_PKCS12) &&
 
-      (ErrorReason == PKCS12_R_MAC_VERIFY_FAILURE)) ||
 
-     ((ErrorLib == ERR_LIB_PEM) &&
 
-      (ErrorReason == PEM_R_BAD_PASSWORD_READ)) ||
 
-     (HasPassphrase && (ERR_LIB_EVP == ERR_LIB_EVP) &&
 
-      ((ErrorReason == PEM_R_BAD_DECRYPT) || (ErrorReason == PEM_R_BAD_BASE64_DECODE)));
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- static void __fastcall ThrowTlsCertificateErrorIgnorePassphraseErrors(const UnicodeString & Path, bool HasPassphrase)
 
- {
 
-   int Error = ERR_get_error();
 
-   if (!IsTlsPassphraseError(Error, HasPassphrase))
 
-   {
 
-     throw ExtException(MainInstructions(FMTLOAD(CERTIFICATE_READ_ERROR, (Path))), GetTlsErrorStr(Error));
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall ParseCertificate(const UnicodeString & Path,
 
-   const UnicodeString & Passphrase, X509 *& Certificate, EVP_PKEY *& PrivateKey,
 
-   bool & WrongPassphrase)
 
- {
 
-   Certificate = NULL;
 
-   PrivateKey = NULL;
 
-   bool HasPassphrase = !Passphrase.IsEmpty();
 
-   FILE * File;
 
-   // Inspired by neon's ne_ssl_clicert_read
 
-   File = OpenCertificate(Path);
 
-   // openssl pkcs12 -inkey cert.pem -in cert.crt -export -out cert.pfx
 
-   // Binary file
 
-   PKCS12 * Pkcs12 = d2i_PKCS12_fp(File, NULL);
 
-   fclose(File);
 
-   if (Pkcs12 != NULL)
 
-   {
 
-     // Modeled after OPENSSL_asc2uni (reversed bitness to what UnicodeString/wchar_t use)
 
-     std::vector<char> Buf;
 
-     Buf.resize(Passphrase.Length() * sizeof(wchar_t) + sizeof(wchar_t));
 
-     for (int Index = 0; Index <= Passphrase.Length(); Index++)
 
-     {
 
-       Buf[(Index * 2)] = (Passphrase.c_str()[Index] >> 8);
 
-       Buf[(Index * 2) + 1] = (Passphrase.c_str()[Index] & 0x00FF);
 
-     }
 
-     bool Result =
 
-       (PKCS12_parse(Pkcs12, &Buf[0], &PrivateKey, &Certificate, NULL) == 1);
 
-     PKCS12_free(Pkcs12);
 
-     if (!Result)
 
-     {
 
-       ThrowTlsCertificateErrorIgnorePassphraseErrors(Path, HasPassphrase);
 
-       WrongPassphrase = true;
 
-     }
 
-   }
 
-   else
 
-   {
 
-     ERR_clear_error();
 
-     TPemPasswordCallbackData CallbackUserData;
 
-     // PemPasswordCallback never writes to the .Passphrase
 
-     CallbackUserData.Passphrase = const_cast<UnicodeString *>(&Passphrase);
 
-     File = OpenCertificate(Path);
 
-     // Encrypted:
 
-     // openssl req -x509 -newkey rsa:2048 -keyout cert.pem -out cert.crt
 
-     // -----BEGIN ENCRYPTED PRIVATE KEY-----
 
-     // ...
 
-     // -----END ENCRYPTED PRIVATE KEY-----
 
-     // Not encrypted (add -nodes):
 
-     // -----BEGIN PRIVATE KEY-----
 
-     // ...
 
-     // -----END PRIVATE KEY-----
 
-     // Or (openssl genrsa -out client.key 1024   # used for certificate signing request)
 
-     // -----BEGIN RSA PRIVATE KEY-----
 
-     // ...
 
-     // -----END RSA PRIVATE KEY-----
 
-     PrivateKey = PEM_read_PrivateKey(File, NULL, PemPasswordCallback, &CallbackUserData);
 
-     fclose(File);
 
-     try
 
-     {
 
-       if (PrivateKey == NULL)
 
-       {
 
-         ThrowTlsCertificateErrorIgnorePassphraseErrors(Path, HasPassphrase);
 
-         WrongPassphrase = true;
 
-       }
 
-       File = OpenCertificate(Path);
 
-       // The file can contain both private and public key
 
-       // (basically cert.pem and cert.crt appended one to each other)
 
-       // -----BEGIN ENCRYPTED PRIVATE KEY-----
 
-       // ...
 
-       // -----END ENCRYPTED PRIVATE KEY-----
 
-       // -----BEGIN CERTIFICATE-----
 
-       // ...
 
-       // -----END CERTIFICATE-----
 
-       Certificate = PEM_read_X509(File, NULL, PemPasswordCallback, &CallbackUserData);
 
-       fclose(File);
 
-       if (Certificate == NULL)
 
-       {
 
-         int Error = ERR_get_error();
 
-         // unlikely
 
-         if (IsTlsPassphraseError(Error, HasPassphrase))
 
-         {
 
-           WrongPassphrase = true;
 
-         }
 
-         else
 
-         {
 
-           UnicodeString CertificatePath = ChangeFileExt(Path, L".cer");
 
-           if (!FileExists(CertificatePath))
 
-           {
 
-             CertificatePath = ChangeFileExt(Path, L".crt");
 
-           }
 
-           if (!FileExists(CertificatePath))
 
-           {
 
-             throw Exception(MainInstructions(FMTLOAD(CERTIFICATE_PUBLIC_KEY_NOT_FOUND, (Path))));
 
-           }
 
-           else
 
-           {
 
-             File = OpenCertificate(CertificatePath);
 
-             // -----BEGIN CERTIFICATE-----
 
-             // ...
 
-             // -----END CERTIFICATE-----
 
-             Certificate = PEM_read_X509(File, NULL, PemPasswordCallback, &CallbackUserData);
 
-             fclose(File);
 
-             if (Certificate == NULL)
 
-             {
 
-               int Base64Error = ERR_get_error();
 
-               File = OpenCertificate(CertificatePath);
 
-               // Binary DER-encoded certificate
 
-               // (as above, with BEGIN/END removed, and decoded from Base64 to binary)
 
-               // openssl x509 -in cert.crt -out client.der.crt -outform DER
 
-               Certificate = d2i_X509_fp(File, NULL);
 
-               fclose(File);
 
-               if (Certificate == NULL)
 
-               {
 
-                 int DERError = ERR_get_error();
 
-                 UnicodeString Message = MainInstructions(FMTLOAD(CERTIFICATE_READ_ERROR, (CertificatePath)));
 
-                 UnicodeString MoreMessages =
 
-                   FORMAT(L"Base64: %s\nDER: %s", (GetTlsErrorStr(Base64Error), GetTlsErrorStr(DERError)));
 
-                 throw ExtException(Message, MoreMessages);
 
-               }
 
-             }
 
-           }
 
-         }
 
-       }
 
-     }
 
-     __finally
 
-     {
 
-       // We loaded private key, but failed to load certificate, discard the certificate
 
-       // (either exception was thrown or WrongPassphrase)
 
-       if ((PrivateKey != NULL) && (Certificate == NULL))
 
-       {
 
-         EVP_PKEY_free(PrivateKey);
 
-         PrivateKey = NULL;
 
-       }
 
-       // Certificate was verified, but passphrase was wrong when loading private key,
 
-       // so discard the certificate
 
-       else if ((Certificate != NULL) && (PrivateKey == NULL))
 
-       {
 
-         X509_free(Certificate);
 
-         Certificate = NULL;
 
-       }
 
-     }
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall CheckCertificate(const UnicodeString & Path)
 
- {
 
-   X509 * Certificate;
 
-   EVP_PKEY * PrivateKey;
 
-   bool WrongPassphrase;
 
-   ParseCertificate(Path, L"", Certificate, PrivateKey, WrongPassphrase);
 
-   if (PrivateKey != NULL)
 
-   {
 
-     EVP_PKEY_free(PrivateKey);
 
-   }
 
-   if (Certificate != NULL)
 
-   {
 
-     X509_free(Certificate);
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- const UnicodeString HttpProtocol(L"http");
 
- const UnicodeString HttpsProtocol(L"https");
 
- const UnicodeString ProtocolSeparator(L"://");
 
- //---------------------------------------------------------------------------
 
- bool __fastcall IsHttpUrl(const UnicodeString & S)
 
- {
 
-   return StartsText(HttpProtocol + ProtocolSeparator, S);
 
- }
 
- //---------------------------------------------------------------------------
 
- bool __fastcall IsHttpOrHttpsUrl(const UnicodeString & S)
 
- {
 
-   return
 
-     IsHttpUrl(S) ||
 
-     StartsText(HttpsProtocol + ProtocolSeparator, S);
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall ChangeUrlProtocol(const UnicodeString & S, const UnicodeString & Protocol)
 
- {
 
-   int P = S.Pos(ProtocolSeparator);
 
-   DebugAssert(P > 0);
 
-   return Protocol + ProtocolSeparator + RightStr(S, S.Length() - P - ProtocolSeparator.Length() + 1);
 
- }
 
- //---------------------------------------------------------------------------
 
- const UnicodeString RtfPara(TraceInitStr(L"\\par\n"));
 
- const UnicodeString AssemblyNamespace(TraceInitStr(L"WinSCP"));
 
- const UnicodeString TransferOptionsClassName(TraceInitStr(L"TransferOptions"));
 
- const UnicodeString SessionClassName(TraceInitStr(L"Session"));
 
- const UnicodeString RtfHyperlinkField(TraceInitStr(L"HYPERLINK"));
 
- const UnicodeString RtfHyperlinkFieldPrefix(TraceInitStr(RtfHyperlinkField + L" \""));
 
- const UnicodeString RtfHyperlinkFieldSuffix(TraceInitStr(L"\" "));
 
- //---------------------------------------------------------------------
 
- UnicodeString __fastcall RtfColor(int Index)
 
- {
 
-   return FORMAT(L"\\cf%d", (Index));
 
- }
 
- //---------------------------------------------------------------------
 
- UnicodeString __fastcall RtfText(const UnicodeString & Text, bool Rtf)
 
- {
 
-   UnicodeString Result = Text;
 
-   if (Rtf)
 
-   {
 
-     int Index = 1;
 
-     while (Index <= Result.Length())
 
-     {
 
-       UnicodeString Replacement;
 
-       wchar_t Ch = Result[Index];
 
-       if ((Ch == L'\\') || (Ch == L'{') || (Ch == L'}'))
 
-       {
 
-         Replacement = FORMAT(L"\\%s", (Ch));
 
-       }
 
-       else if (Ch >= 0x0080)
 
-       {
 
-         Replacement = FORMAT(L"\\u%d?", (int(Ch)));
 
-       }
 
-       if (!Replacement.IsEmpty())
 
-       {
 
-         Result.Delete(Index, 1);
 
-         Result.Insert(Replacement, Index);
 
-         Index += Replacement.Length();
 
-       }
 
-       else
 
-       {
 
-         Index++;
 
-       }
 
-     }
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------
 
- UnicodeString __fastcall RtfColorText(int Color, const UnicodeString & Text)
 
- {
 
-   return RtfColor(Color) + L" " + RtfText(Text) + RtfColor(0) + L" ";
 
- }
 
- //---------------------------------------------------------------------
 
- UnicodeString __fastcall RtfColorItalicText(int Color, const UnicodeString & Text)
 
- {
 
-   return RtfColor(Color) + L"\\i " + RtfText(Text) + L"\\i0" + RtfColor(0) + L" ";
 
- }
 
- //---------------------------------------------------------------------
 
- UnicodeString __fastcall RtfOverrideColorText(const UnicodeString & Text)
 
- {
 
-   return RtfColorText(1, Text);
 
- }
 
- //---------------------------------------------------------------------
 
- UnicodeString __fastcall RtfKeyword(const UnicodeString & Text)
 
- {
 
-   return RtfColorText(5, Text);
 
- }
 
- //---------------------------------------------------------------------
 
- UnicodeString __fastcall RtfParameter(const UnicodeString & Text)
 
- {
 
-   return RtfColorText(6, Text);
 
- }
 
- //---------------------------------------------------------------------
 
- UnicodeString __fastcall RtfString(const UnicodeString & Text)
 
- {
 
-   return RtfColorText(4, Text);
 
- }
 
- //---------------------------------------------------------------------
 
- UnicodeString __fastcall RtfLink(const UnicodeString & Link, const UnicodeString & RtfText)
 
- {
 
-   return
 
-     L"{\\field{\\*\\fldinst{" + RtfHyperlinkFieldPrefix + Link + RtfHyperlinkFieldSuffix + L"}}{\\fldrslt{" +
 
-     RtfText + L"}}}";
 
- }
 
- //---------------------------------------------------------------------
 
- UnicodeString __fastcall ScriptCommandLink(const UnicodeString & Command)
 
- {
 
-   return L"scriptcommand_" + Command;
 
- }
 
- //---------------------------------------------------------------------
 
- UnicodeString __fastcall RtfSwitch(
 
-   const UnicodeString & Switch, const UnicodeString & Link, bool Rtf)
 
- {
 
-   UnicodeString Result = FORMAT(L"-%s", (Switch));
 
-   if (Rtf)
 
-   {
 
-     Result = RtfLink(Link + L"#" + Switch.LowerCase(), RtfParameter(Result));
 
-   }
 
-   return L" " + Result;
 
- }
 
- //---------------------------------------------------------------------
 
- UnicodeString __fastcall RtfSwitchValue(
 
-   const UnicodeString & Name, const UnicodeString & Link, const UnicodeString & Value, bool Rtf)
 
- {
 
-   return RtfSwitch(Name, Link, Rtf) + L"=" + Value;
 
- }
 
- //---------------------------------------------------------------------
 
- UnicodeString __fastcall RtfSwitch(
 
-   const UnicodeString & Name, const UnicodeString & Link, const UnicodeString & Value, bool Rtf)
 
- {
 
-   return RtfSwitchValue(Name, Link, RtfText(FORMAT("\"%s\"", (EscapeParam(Value))), Rtf), Rtf);
 
- }
 
- //---------------------------------------------------------------------
 
- UnicodeString __fastcall RtfSwitch(
 
-   const UnicodeString & Name, const UnicodeString & Link, int Value, bool Rtf)
 
- {
 
-   return RtfSwitchValue(Name, Link, RtfText(IntToStr(Value), Rtf), Rtf);
 
- }
 
- //---------------------------------------------------------------------
 
- UnicodeString __fastcall RtfRemoveHyperlinks(UnicodeString Text)
 
- {
 
-   // Remove all tags HYPERLINK "http://www.example.com".
 
-   // See also RtfEscapeParam
 
-   int Index = 1;
 
-   int P;
 
-   while ((P = PosEx(RtfHyperlinkFieldPrefix, Text, Index)) > 0)
 
-   {
 
-     int Index2 = P + RtfHyperlinkFieldPrefix.Length();
 
-     int P2 = PosEx(RtfHyperlinkFieldSuffix, Text, Index2);
 
-     if (P2 > 0)
 
-     {
 
-       Text.Delete(P, P2 - P + RtfHyperlinkFieldSuffix.Length());
 
-     }
 
-     else
 
-     {
 
-       Index = Index2;
 
-     }
 
-   }
 
-   return Text;
 
- }
 
- //---------------------------------------------------------------------
 
- UnicodeString __fastcall RtfEscapeParam(UnicodeString Param)
 
- {
 
-   const UnicodeString Quote(L"\"");
 
-   // Equivalent of EscapeParam, except that it does not double quotes in HYPERLINK.
 
-   // See also RtfRemoveHyperlinks.
 
-   int Index = 1;
 
-   while (true)
 
-   {
 
-     int P1 = PosEx(Quote, Param, Index);
 
-     if (P1 == 0)
 
-     {
 
-       // no more quotes
 
-       break;
 
-     }
 
-     else
 
-     {
 
-       int P2 = PosEx(RtfHyperlinkFieldPrefix, Param, Index);
 
-       int P3;
 
-       if ((P2 > 0) && (P2 < P1) && ((P3 = PosEx(RtfHyperlinkFieldSuffix, Param, P2)) > 0))
 
-       {
 
-         // skip HYPERLINK
 
-         Index = P3 + RtfHyperlinkFieldSuffix.Length();
 
-       }
 
-       else
 
-       {
 
-         Param.Insert(Quote, P1);
 
-         Index = P1 + (Quote.Length() * 2);
 
-       }
 
-     }
 
-   }
 
-   return Param;
 
- }
 
- //---------------------------------------------------------------------
 
- static UnicodeString __fastcall RtfCodeComment(const UnicodeString & Text)
 
- {
 
-   return RtfColorItalicText(2, Text);
 
- }
 
- //---------------------------------------------------------------------
 
- UnicodeString __fastcall AssemblyCommentLine(TAssemblyLanguage Language, const UnicodeString & Text)
 
- {
 
-   UnicodeString Prefix;
 
-   switch (Language)
 
-   {
 
-     case alCSharp:
 
-       Prefix = L"//";
 
-       break;
 
-     case alVBNET:
 
-       Prefix = L"'";
 
-       break;
 
-     case alPowerShell:
 
-       Prefix = L"#";
 
-       break;
 
-   }
 
-   return RtfCodeComment(Prefix + L" " + Text) + RtfPara;
 
- }
 
- //---------------------------------------------------------------------
 
- UnicodeString __fastcall AssemblyString(TAssemblyLanguage Language, UnicodeString S)
 
- {
 
-   switch (Language)
 
-   {
 
-     case alCSharp:
 
-       if (S.Pos(L"\\") > 0)
 
-       {
 
-         S = FORMAT(L"@\"%s\"", (ReplaceStr(S, L"\"", L"\"\"")));
 
-       }
 
-       else
 
-       {
 
-         S = FORMAT(L"\"%s\"", (ReplaceStr(S, L"\"", L"\\\"")));
 
-       }
 
-       break;
 
-     case alVBNET:
 
-       S = FORMAT(L"\"%s\"", (ReplaceStr(S, L"\"", L"\"\"")));
 
-       break;
 
-     case alPowerShell:
 
-       S = FORMAT(L"\"%s\"", (ReplaceStr(S, L"\"", L"`\"")));
 
-       break;
 
-     default:
 
-       DebugFail();
 
-       break;
 
-   }
 
-   return RtfString(S);
 
- }
 
- //---------------------------------------------------------------------
 
- static UnicodeString __fastcall RtfClass(const UnicodeString & Text)
 
- {
 
-   return RtfColorText(3, Text);
 
- }
 
- //---------------------------------------------------------------------
 
- UnicodeString __fastcall RtfLibraryClass(const UnicodeString & ClassName)
 
- {
 
-   return RtfLink(L"library_" + ClassName.LowerCase(), RtfClass(ClassName));
 
- }
 
- //---------------------------------------------------------------------
 
- UnicodeString __fastcall RtfLibraryMethod(const UnicodeString & ClassName, const UnicodeString & MethodName, bool InPage)
 
- {
 
-   return RtfLink(L"library_" + ClassName.LowerCase() + (InPage ? L"#" : L"_") + MethodName.LowerCase(), RtfOverrideColorText(MethodName));
 
- }
 
- //---------------------------------------------------------------------
 
- static UnicodeString __fastcall RtfLibraryProperty(const UnicodeString & ClassName, const UnicodeString & PropertyName)
 
- {
 
-   return RtfLink(L"library_" + ClassName.LowerCase() + L"#" + PropertyName.LowerCase(), RtfOverrideColorText(PropertyName));
 
- }
 
- //---------------------------------------------------------------------
 
- UnicodeString __fastcall AssemblyVariableName(TAssemblyLanguage Language, const UnicodeString & ClassName)
 
- {
 
-   UnicodeString Result = ClassName.SubString(1, 1).LowerCase() + ClassName.SubString(2, ClassName.Length() - 1);
 
-   if (Language == alPowerShell)
 
-   {
 
-     Result = L"$" + Result;
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------
 
- UnicodeString __fastcall AssemblyStatementSeparator(TAssemblyLanguage Language)
 
- {
 
-   UnicodeString Result;
 
-   switch (Language)
 
-   {
 
-     case alCSharp:
 
-       Result = L";";
 
-       break;
 
-     case alVBNET:
 
-     case alPowerShell:
 
-       // noop
 
-       break;
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------
 
- UnicodeString __fastcall AssemblyPropertyRaw(
 
-   TAssemblyLanguage Language, const UnicodeString & ClassName, const UnicodeString & Name,
 
-   const UnicodeString & Value, bool Inline)
 
- {
 
-   UnicodeString Result;
 
-   UnicodeString RtfPropertyAndValue = RtfLibraryProperty(ClassName, Name) + L" = " + Value;
 
-   UnicodeString Indetation = (Inline ? L"" : L"    ");
 
-   UnicodeString SpaceOrPara = (Inline ? UnicodeString(L" ") : RtfPara);
 
-   switch (Language)
 
-   {
 
-     case alCSharp:
 
-       Result = Indetation + RtfPropertyAndValue + (Inline ? L"" : L",") + SpaceOrPara;
 
-       break;
 
-     case alVBNET:
 
-       Result = Indetation + L"." + RtfPropertyAndValue + SpaceOrPara;
 
-       break;
 
-     case alPowerShell:
 
-       Result = Indetation + RtfPropertyAndValue + SpaceOrPara;
 
-       break;
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------
 
- UnicodeString __fastcall AssemblyProperty(
 
-   TAssemblyLanguage Language, const UnicodeString & ClassName, const UnicodeString & Name,
 
-   const UnicodeString & Type, const UnicodeString & Member, bool Inline)
 
- {
 
-   UnicodeString PropertyValue;
 
-   switch (Language)
 
-   {
 
-     case alCSharp:
 
-     case alVBNET:
 
-       PropertyValue = RtfClass(Type) + RtfText(L"." + Member);
 
-       break;
 
-     case alPowerShell:
 
-       PropertyValue = RtfText(L"[" + AssemblyNamespace + L".") + RtfClass(Type) + RtfText(L"]::" + Member);
 
-       break;
 
-   }
 
-   return AssemblyPropertyRaw(Language, ClassName, Name, PropertyValue, Inline);
 
- }
 
- //---------------------------------------------------------------------
 
- UnicodeString __fastcall AssemblyProperty(
 
-   TAssemblyLanguage Language, const UnicodeString & ClassName,
 
-   const UnicodeString & Name, const UnicodeString & Value, bool Inline)
 
- {
 
-   return AssemblyPropertyRaw(Language, ClassName, Name, AssemblyString(Language, Value), Inline);
 
- }
 
- //---------------------------------------------------------------------
 
- UnicodeString __fastcall AssemblyProperty(
 
-   TAssemblyLanguage Language, const UnicodeString & ClassName,
 
-   const UnicodeString & Name, int Value, bool Inline)
 
- {
 
-   return AssemblyPropertyRaw(Language, ClassName, Name, IntToStr(Value), Inline);
 
- }
 
- //---------------------------------------------------------------------
 
- UnicodeString __fastcall AssemblyBoolean(TAssemblyLanguage Language, bool Value)
 
- {
 
-   UnicodeString Result;
 
-   switch (Language)
 
-   {
 
-     case alCSharp:
 
-       Result = (Value ? L"true" : L"false");
 
-       break;
 
-     case alVBNET:
 
-       Result = (Value ? L"True" : L"False");
 
-       break;
 
-     case alPowerShell:
 
-       Result = (Value ? L"$True" : L"$False");
 
-       break;
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------
 
- UnicodeString __fastcall AssemblyProperty(
 
-   TAssemblyLanguage Language, const UnicodeString & ClassName, const UnicodeString & Name, bool Value, bool Inline)
 
- {
 
-   UnicodeString PropertyValue = AssemblyBoolean(Language, Value);
 
-   return AssemblyPropertyRaw(Language, ClassName, Name, PropertyValue, Inline);
 
- }
 
- //---------------------------------------------------------------------
 
- UnicodeString __fastcall AssemblyNewClassInstance(TAssemblyLanguage Language, const UnicodeString & ClassName, bool Inline)
 
- {
 
-   UnicodeString VariableName = AssemblyVariableName(Language, ClassName);
 
-   UnicodeString RtfClass = RtfLibraryClass(ClassName);
 
-   UnicodeString Result;
 
-   switch (Language)
 
-   {
 
-     case alCSharp:
 
-       if (!Inline)
 
-       {
 
-         Result += RtfClass + RtfText(L" " + VariableName  + L" = ");
 
-       }
 
-       Result += RtfKeyword(L"new") + RtfText(L" ") + RtfClass;
 
-       break;
 
-     case alVBNET:
 
-       if (!Inline)
 
-       {
 
-         Result += RtfText(VariableName + L" ") + RtfKeyword(L"As") + RtfText(L" ");
 
-       }
 
-       Result += RtfKeyword(L"New") + RtfText(" ") + RtfClass;
 
-       break;
 
-     case alPowerShell:
 
-       if (!Inline)
 
-       {
 
-         Result += RtfText(VariableName + L" = ");
 
-       }
 
-       Result += RtfKeyword(L"New-Object") + RtfText(L" " + AssemblyNamespace + L".") + RtfClass;
 
-       break;
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------
 
- UnicodeString __fastcall AssemblyNewClassInstanceStart(
 
-   TAssemblyLanguage Language, const UnicodeString & ClassName, bool Inline)
 
- {
 
-   UnicodeString NewClassInstance = AssemblyNewClassInstance(Language, ClassName, Inline);
 
-   UnicodeString SpaceOrPara = (Inline ? UnicodeString(L" ") : RtfPara);
 
-   UnicodeString Result;
 
-   switch (Language)
 
-   {
 
-     case alCSharp:
 
-       Result =
 
-         NewClassInstance + SpaceOrPara +
 
-         RtfText(L"{") + SpaceOrPara;
 
-       break;
 
-     case alVBNET:
 
-       // Historically we use Dim .. With instead of object initilizer.
 
-       // But for inline use, we have to use object initialize.
 
-       // We should consistently always use object initilizers.
 
-       if (!Inline)
 
-       {
 
-         Result += RtfKeyword(L"Dim") + RtfText(L" ");
 
-       }
 
-       Result += NewClassInstance + SpaceOrPara + RtfKeyword(L"With");
 
-       if (Inline)
 
-       {
 
-         Result += RtfText(L" { ");
 
-       }
 
-       else
 
-       {
 
-         Result += RtfText(L" " + AssemblyVariableName(Language, ClassName)) + RtfPara;
 
-       }
 
-       break;
 
-     case alPowerShell:
 
-       Result = NewClassInstance + RtfText(" -Property @{") + SpaceOrPara;
 
-       break;
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------
 
- UnicodeString __fastcall AssemblyNewClassInstanceEnd(TAssemblyLanguage Language, bool Inline)
 
- {
 
-   UnicodeString InlineEnd = RtfText(L"}");
 
-   UnicodeString Result;
 
-   switch (Language)
 
-   {
 
-     case alCSharp:
 
-       if (Inline)
 
-       {
 
-         Result = InlineEnd;
 
-       }
 
-       else
 
-       {
 
-         Result = RtfText(L"};") + RtfPara;
 
-       }
 
-       break;
 
-     case alVBNET:
 
-       if (Inline)
 
-       {
 
-         Result = InlineEnd;
 
-       }
 
-       else
 
-       {
 
-         Result = RtfKeyword(L"End With") + RtfPara;
 
-       }
 
-       break;
 
-     case alPowerShell:
 
-       if (Inline)
 
-       {
 
-         Result = InlineEnd;
 
-       }
 
-       else
 
-       {
 
-         Result = RtfText(L"}") + RtfPara;
 
-       }
 
-       break;
 
-   }
 
-   return Result;
 
- }
 
- //---------------------------------------------------------------------------
 
- void __fastcall LoadScriptFromFile(UnicodeString FileName, TStrings * Lines)
 
- {
 
-   std::auto_ptr<TFileStream> Stream(new TFileStream(ApiPath(FileName), fmOpenRead | fmShareDenyWrite));
 
-   Lines->DefaultEncoding = TEncoding::UTF8;
 
-   try
 
-   {
 
-     Lines->LoadFromStream(Stream.get());
 
-   }
 
-   catch (EEncodingError & E)
 
-   {
 
-     throw ExtException(LoadStr(TEXT_FILE_ENCODING), &E);
 
-   }
 
- }
 
- //---------------------------------------------------------------------------
 
- UnicodeString __fastcall StripEllipsis(const UnicodeString & S)
 
- {
 
-   UnicodeString Result = S;
 
-   if (Result.SubString(Result.Length() - Ellipsis.Length() + 1, Ellipsis.Length()) == Ellipsis)
 
-   {
 
-     Result.SetLength(Result.Length() - Ellipsis.Length());
 
-     Result = Result.TrimRight();
 
-   }
 
-   return Result;
 
- }
 
 
  |