Page 1 of 1

E2003 Undeclared identifier: 'IMAGE_FILE_LARGE_ADDRESS_AWARE'

Posted: Sun Mar 11, 2018 8:38 am
by Hitman
Hi guys,
any ideas why i get this error?
[dcc64 Error] TestBrowser.dpr(18): E2003 Undeclared identifier: 'IMAGE_FILE_LARGE_ADDRESS_AWARE'

Many thanks in advance

Re: E2003 Undeclared identifier: 'IMAGE_FILE_LARGE_ADDRESS_AWARE'

Posted: Sun Mar 11, 2018 8:58 am
by salvadordf
Hi,

That constant is declared in the "WinApi.Windows" or "Windows" unit.
The DPR file must have that unit in the uses section or you can also replace it by $20;

Some Delphi versions delete the "Windows" unit from the uses section automatically when you modify some forms in the project.

Re: E2003 Undeclared identifier: 'IMAGE_FILE_LARGE_ADDRESS_AWARE'

Posted: Sun Mar 11, 2018 9:00 am
by Hitman
Many thanks!! :D
It is correct, i somehow did not remember it.