如何将c种的unsigned __int64转化到delphi中某种数据类型,好像可以转化为QWord,但是不知道怎么样使用?谢谢!

解决方案 »

  1.   

    Data type         Range                         SizeLongInt           -2147483748..2147483647       32-bit
    LongWord          0..4294967295                 32-bit
    Int64             -2^63..2^63                   64-bitSo the unsigned __int64 in C corresponds Int64 in Pascal, if it needs that their memory allocations are same. Otherwise, you should use the LongWord to access an unsigned integer number.