From c88223241307aacb35134d1458646eeaa4777b9a Mon Sep 17 00:00:00 2001 From: dennis07 Date: Fri, 9 Mar 2018 05:54:25 +0100 Subject: [PATCH] Version 1.0 DEV 1.17e Signed-off-by: dennis07 --- Information/Links/Youtube-Channel.url | 5 ++ Package/Delphi_XE5/LINA_D_XE5.identcache | Bin 1145 -> 1242 bytes Source/uInit.pas | 2 +- Source/uSysTools.pas | 78 +++++++++++++++++------ 4 files changed, 64 insertions(+), 21 deletions(-) create mode 100644 Information/Links/Youtube-Channel.url diff --git a/Information/Links/Youtube-Channel.url b/Information/Links/Youtube-Channel.url new file mode 100644 index 0000000..74a85eb --- /dev/null +++ b/Information/Links/Youtube-Channel.url @@ -0,0 +1,5 @@ +[{000214A0-0000-0000-C000-000000000046}] +Prop3=19,11 +[InternetShortcut] +IDList= +URL=https://www.youtube.com/channel/UC68AZlDOXbm2EqCTDiKRMyA diff --git a/Package/Delphi_XE5/LINA_D_XE5.identcache b/Package/Delphi_XE5/LINA_D_XE5.identcache index 19e95d5eb209e2c2f79b54baf65551e93a7b0a93..16dff5735435be01c58f7a0d6cb6ca73869ffd31 100644 GIT binary patch delta 100 zcmey#af_3YcOzpRV_-X9K}>OeX;E@&Oi@WrOmcp1Zhl@&aAk2xYObDdVoAot4H27 #0 do + begin + if ArrayPos(Current^,Chars) = -1 then + begin + OutPut := OutPut + Current^; + end; + Inc(Current); + end; + Text := OutPut; +end; + +procedure DeleteChars(var Text: String; Chars: TCharSet); overload; +var + Current: PChar; + OutPut: String; +begin + Current := PChar(Text); + SetLength(OutPut,0); + while Current^ <> #0 do + begin + if not (Current^ in Chars) then + begin + OutPut := OutPut + Current^; + end; + Inc(Current); + end; + Text := OutPut; +end; + procedure SetPrivilege(const Name: PChar; Value: Boolean); overload; var Token: THandle;