fpc/tests/tbf/tb0238.pp
svenbarth 2e186a91fa Add support for integer constants to SetPEFlags and SetPEOptFlags. This is Delphi compatible.
scandir.pas:
  + add function "get_peflag_const" to retrieve the value of a constant
  * dir_setpeflags & dir_setpeoptflags: first check for an identifier (value is retrieved through "get_peflag_const") and then read a value

+ added messages for illegal parameters for SetPEFlags and SetPEOptFlags respectively
+ added tests

git-svn-id: trunk@24887 -
2013-06-13 10:51:42 +00:00

13 lines
92 B
ObjectPascal

{ %FAIL }
program tb0238;
const
Invalid = False;
{$setpeoptflags Invalid}
begin
end.