Наши преимущества

Компоненты к Delphi (каталог ссылок)

Статус
Закрыто для дальнейших ответов.
MMTools.2.0.FullSource
I work with Builder C ++.
For me these components function normal.

But are incompatibile with Delphi 7 compiler, and I don't know how to fix errors with TLargeInteger:

errors in MOV mnemonics (operand size mismatch):
Код:
function GetCPUCycles: int64;
asm
{$IFDEF WIN32}
      db      00fh              //RDTSC
      db      031h
      {$IFNDEF DELPHI4}
      mov     HiWord(Result), edx
      mov     LoWord(Result), eax
      {$ENDIF}
{$ENDIF}
end;
and other lines where are used varibles typed TLargeInteger or MMLARGE_INTEGER. In C++ LARGE_INTEGER is union, but in Delphi exists type Int64 and TLargeInteger is alias for this one. I understudna this shit :( Someone knows how to install in Delphi 7?
 
You can prove with:
Код:
                          mov  dword ptr   HiWord(Result), edx
                          mov   dword ptr  LoWord(Result), eax
.. both operands they must be of the same size..32 bits
 
Можешь взять на оф сайте Castalia v5.2.88.9 for Delphi 2007.
А патчик вот:
*** hidden content ***

Legolas, that file give's me an error when I extract it and I can't execute it:

! C:\Users\zabibamishra\Desktop\azsd_Castalia_v5.2.88.9_D2007.rar: Cannot set Castalia v5.2.88.9 TahomaMod.exe security data

! C:\Users\zabibamishra\Desktop\azsd_Castalia_v5.2.88.9_D2007.rar: Cannot set readme.txt security data

! Cannot execute "C:\Users\zabibamishra\AppData\Local\Temp\Rar$EX00.761\Castalia v5.2.88.9 TahomaMod.exe"
 
Статус
Закрыто для дальнейших ответов.
Верх