![]() |
Delphi-Version: 2010
Project from Ansi to Unicode
I found nice unit to work with torrents:
Code:
So, TorrentFile.pas and included ones are not Unicode ready. I can't make it working with D2010+ (I only can exchange MessageDigests.pas with DEC). Could you help, please?
http://torrentspy.cvs.sourceforge.net/viewvc/torrentspy/TorrentSpy-0.2-delphi/src/
Delphi-Quellcode:
// Test code: Ansi - oke, Unicode - empty
var T: TTorrentFile; F: TStream; begin if OpenDialog1.Execute then begin T := TTorrentFile.Create; F := TFileStream.Create(OpenDialog1.FileName, fmOpenRead); try T.Load(F); ShowMessage(T.Announce + #13#10 + T.CreatedBy + #13#10 + T.CreationDateAsString); finally T.Free; F.Free; end; end; end; |
AW: Project from Ansi to Unicode
After a quick look I think you just have to replace String with AnsiString and PChar with PAnsiChar inside the unit.
|
Re: Project from Ansi to Unicode
Liste der Anhänge anzeigen (Anzahl: 1)
So, I made some modifications, result attached, but don't working as expected, eg. name is empty or length is zero or wrong hash, but announce or agent are good. :wall: Same project on Ansi compiler is oke :pale:
|
AW: Project from Ansi to Unicode
You forgot to exchange Char with AnsiChar in unit BCode. If I do so it works.
|
Re: Project from Ansi to Unicode
Yap, I forgot :oops: Thank you, now working :-D
But now there is next problem, because can use Unicode in file names and unit is Ansi, can't read Unicode names. I saw maybe 2 times Unicode torrents, but it is possible. How to enable support for Unicode strings inside? Here ![]() |
AW: Project from Ansi to Unicode
You find the answer in your own link:
Zitat:
|
Re: Project from Ansi to Unicode
Exchange type Ansi to UTF8 is working, but what with PAnsiChar typecast and AnsiChar (working, but there is no additional UTF8 routines required?)?
|
Re: Project from Ansi to Unicode
Also another question: has Delphi build-in routines to replace Hashes.pas unit?
|
Alle Zeitangaben in WEZ +1. Es ist jetzt 05:22 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz