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
Disclosure Statement: This site contains affiliate links, which means that I may receive a commission if you make a purchase using these links. As an eBay Partner, I earn from qualifying purchases.
E2003 Undeclared identifier: 'IMAGE_FILE_LARGE_ADDRESS_AWARE'
- salvadordf
- Posts: 4564
- Joined: Thu Feb 02, 2017 12:24 pm
- Location: Spain
- Contact:
Re: E2003 Undeclared identifier: 'IMAGE_FILE_LARGE_ADDRESS_AWARE'
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.
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'
Many thanks!!
It is correct, i somehow did not remember it.

It is correct, i somehow did not remember it.