Date: Sun, 28 Nov 1999 16:13:40 +0200 (IST) From: Eli Zaretskii X-Sender: eliz AT is To: "Michael N. Filippov" cc: djgpp AT delorie DOT com Subject: Re: Two newbie questions In-Reply-To: <81r6d1$16o9$1@news.itfs.nsk.su> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On 28 Nov 1999, Michael N. Filippov wrote: > 1) to have only one .exe program. In other words, to compile > DPMI server into the program and use this program independently. It's not such a big deal to have cwsdpmi.exe together with your program, just put them into the same directory. Can you explain why does this bother you? If you MUST have a single executable, you can have it with PMODE/DJ; see section 9.5 of the DJGPP FAQ list for details. Note that PMODE/DJ doesn't support virtual memory, so this is not good enough for memory-starved machines or programs that need lots of memory. > 2) to describe 64-bits variable, something like this : > `int64 a' or may be just simple `long long a'. GCC and DJGPP support a 64-bit `long long' data type.