First, the easy part
In enigma_ide.pas you need to change
Code: Select all
enigma_api_dll_name = 'enigma_ide.dll';Code: Select all
enigma_api_dll_name = 'enigma_ide64.dll';Code below cannot be compiled, as Delphi x64 does not support asm in a non-asm procedures
Code: Select all
procedure TForm1.Button1Click(Sender: TObject);
begin
{$I C:\enigma\x64\EnigmaSDK\Delphi\vm_begin.inc}
Self.Caption := 'Hello';
{$I C:\enigma\x64\EnigmaSDK\Delphi\vm_end.inc}
end;
.[dcc64 Error] vm_begin.inc(1): E1025 Unsupported language feature: 'ASM'
I'm evaluating the demo version of Enigma.
Erix
