![]() |
Re: HexToInt
im Prinzip:
Delphi-Quellcode:
oder du ließt die gesamten 4 Byte via GetBlock direkt in Temp
Temp: LongInt;
Temp := Ord(GetChar); Temp := Temp shl 8 or Ord(GetChar); Temp := Temp shl 8 or Ord(GetChar); Temp := Temp shl 8 or Ord(GetChar); |
Re: HexToInt
Sieht latürnich galanter aus als meines. :dp:
Zitat:
|
Re: HexToInt
In Bezug auf Delphi2009 (Unicode) wäre da ein Array of AnsiChar wohl besser geeignet.
Delphi-Quellcode:
var Data: Array of AnsiChar;
//oder var Data: Array[0..x] of AnsiChar; i: LongInt {oder Integer}; i := PLongInt(@Data[startindex]); |
Alle Zeitangaben in WEZ +1. Es ist jetzt 08:50 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