* fix SwapWord, arg must be of var type

This commit is contained in:
pierre 2002-11-22 15:18:24 +00:00
parent 758d221083
commit b649c95309

View File

@ -177,7 +177,7 @@ procedure DoneHelpFilesTypes;
{$ifdef ENDIAN_BIG}
Procedure SwapLong(var x : longint);
Procedure SwapWord(x : word);
Procedure SwapWord(var x : word);
{$endif ENDIAN_BIG}
@ -222,7 +222,7 @@ Begin
End;
Procedure SwapWord(x : word);
Procedure SwapWord(var x : word);
var
z : byte;
Begin
@ -951,7 +951,10 @@ end;
END.
{
$Log$
Revision 1.8 2002-11-22 12:21:16 pierre
Revision 1.9 2002-11-22 15:18:24 pierre
* fix SwapWord, arg must be of var type
Revision 1.8 2002/11/22 12:21:16 pierre
+ SwapLongint and SwapWord added for big endian machines
Revision 1.7 2002/09/07 15:40:49 peter