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=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,c01667c07f51ded5 X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news1.google.com!newsread.com!news-xfer.newsread.com!news-feed01.roc.ny.frontiernet.net!nntp.frontiernet.net!newscon06.news.prodigy.com!prodigy.net!border1.nntp.dca.giganews.com!nntp.giganews.com!local01.nntp.dca.giganews.com!nntp.megapath.net!news.megapath.net.POSTED!not-for-mail NNTP-Posting-Date: Thu, 03 Mar 2005 16:30:15 -0600 From: "Randy Brukardt" Newsgroups: comp.lang.ada References: <74a78c42.0503010130.785f178f@posting.google.com> <74a78c42.0503030056.5995d08c@posting.google.com> Subject: Re: Advanced file manipulation (multiple question) Date: Thu, 3 Mar 2005 16:32:26 -0600 X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 5.50.4927.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4927.1200 Message-ID: NNTP-Posting-Host: 64.32.209.38 X-Trace: sv3-ck1AC4oQ3goyDCh1aYLoP/bONR5q5byPZwNmXjrM/7R1hbcQ7a5Jodhp/sy/tSe//e6u4z8y91Z+aUl!K5tCzDUPe86/+HGUGS/hG72sr77So/Imv9bAl7iqyrtEVAE1JnDuul9JsxbFDruqzoGCLgYWwUwc X-Complaints-To: abuse@megapath.net X-DMCA-Complaints-To: abuse@megapath.net X-Abuse-and-DMCA-Info: Please be sure to forward a copy of ALL headers X-Abuse-and-DMCA-Info: Otherwise we will be unable to process your complaint properly X-Postfilter: 1.3.32 Xref: g2news1.google.com comp.lang.ada:8612 Date: 2005-03-03T16:32:26-06:00 List-Id: "Steph-ADA" wrote in message news:74a78c42.0503030056.5995d08c@posting.google.com... ... > And does > this use OS-copying properties so I need to use win32-winbase.ads (or > another, I didn't read so much about Win32 API's at the moment!). And > what about the use of this tiny prog with Windows 98, for example? > APIs will probably be proper to the OS... but this is not the main > problem, for me! I want, first, to make it run with Windows 2000, > then, we'll see ! According to the documentation in MSDN, CopyFile is available back to Windows NT 3.1 and Windows 95. You're not going to be able to run a 32-bit PE file on something older anyway. (Well, there is a way to do it on Windows 3.1 running on MS-DOS, but come on, who wants to do that these days?) Randy.