[fpc-devel] Untranslatable (hardcoded) messages

Michael Van Canneyt michael at freepascal.org
Mon Aug 23 14:45:47 CEST 2021



On Mon, 23 Aug 2021, Bart via fpc-devel wrote:

> On Mon, Aug 23, 2021 at 2:28 PM Tomas Hajny via fpc-devel
> <fpc-devel at lists.freepascal.org> wrote:
>
>> Does it exist in C:\Windows\SysWOW64\ on your machine?
>
> Yes, there is a common.dll there.
> I think that syswow64 is not in my %PATH%, but currently I'm at work
> and cannot check.
>
> I also do not know how to examine wether this one is 32 or 64 bit.

Use objdump, provided with FPC:

C:\lazarus\fpc\3.2.0\bin\x86_64-win64\objdump -f c:\Windows\SysWow64\combase.dll

c:\Windows\SysWow64\combase.dll:     file format pei-i386
architecture: i386, flags 0x0000012f:
HAS_RELOC, EXEC_P, HAS_LINENO, HAS_DEBUG, HAS_LOCALS, D_PAGED
start address 0x1013c090


C:\lazarus\fpc\3.2.0\bin\x86_64-win64\objdump -f "c:\Program Files\Common Files\microsoft shared\VGX\VGX.dll"

c:\Program Files\Common Files\microsoft shared\VGX\VGX.dll:     file format pei-x86-64
architecture: i386:x86-64, flags 0x0000012f:
HAS_RELOC, EXEC_P, HAS_LINENO, HAS_DEBUG, HAS_LOCALS, D_PAGED
start address 0x00000001800a42a0

(note the file format on the first line)

Michael.


More information about the fpc-devel mailing list