From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=unavailable autolearn_force=no version=3.4.4 X-Received: by 2002:a05:620a:1286:: with SMTP id w6mr13659527qki.219.1562590037126; Mon, 08 Jul 2019 05:47:17 -0700 (PDT) X-Received: by 2002:aca:1a0e:: with SMTP id a14mr8673932oia.51.1562590036833; Mon, 08 Jul 2019 05:47:16 -0700 (PDT) Path: eternal-september.org!reader01.eternal-september.org!feeder.eternal-september.org!news.gegeweb.eu!gegeweb.org!usenet-fr.net!proxad.net!feeder1-2.proxad.net!209.85.160.216.MISMATCH!b26no830155qtq.0!news-out.google.com!g23ni732qtq.1!nntp.google.com!b26no830152qtq.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Mon, 8 Jul 2019 05:47:16 -0700 (PDT) In-Reply-To: Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=136.163.203.5; posting-account=HFCrOQoAAABZD_f-UUbYHm3lJDIrh-UX NNTP-Posting-Host: 136.163.203.5 References: <1ddb4817-8bb0-4cc4-9653-de12f8a746d6@googlegroups.com> User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: Subject: Re: FreeDOS, Janus/Ada and GNAT From: joakimds@kth.se Injection-Date: Mon, 08 Jul 2019 12:47:17 +0000 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Xref: reader01.eternal-september.org comp.lang.ada:56829 Date: 2019-07-08T05:47:16-07:00 List-Id: Thanks for taking a look Randy and provide feedback. I have used Ghidra (https://ghidra-sre.org/) to disassemble the win32 execu= table and come to the conclusion that InitializeSListHead, GetModuleHandleE= xW and FindFIrstFileExW are indeed not only referenced in the executable bu= t they are called some time during the life-time of the application. Ghidra not only gives an assembly code version of the source code but also = a C programming language version. One can see for example how GetModuleHand= leExW is used: ... BOOL BVar1; HMODULE local_8; local_8 =3D (HMODULE) 0x0; BVar1 =3D GetModuleHandleExW(0,L"mscoree.dll",&local_8); ... I haven't been able to determine the origin of the code but this is as far = as I have investigated. Will write in this thread when I know more on the s= ubject of FreeDOS and possibilites of embedded systems on it. Best regards, Joakim