1
0
mirror of https://git.code.sf.net/p/lazarus-ccr/dcpcrypt synced 2024-11-18 16:31:48 +02:00

Correctly hide the FPC compiler mode - in case Delphi is used

Seeing that other parts of the code already does IFDEF FPC, lets be consistent.
This commit is contained in:
Graeme Geldenhuys 2014-01-17 16:35:13 +00:00
parent f510caf923
commit 14586ed66d

View File

@ -24,7 +24,7 @@
{******************************************************************************}
unit DCPcrypt2;
{$MODE Delphi}
{$ifdef FPC}{$MODE Delphi}{$endif}
interface
uses
@ -699,4 +699,4 @@ procedure XorBlockEx(var InData1, InData2; Size: longword);
end;
end.