From: "Damian Yerrick" Newsgroups: comp.os.msdos.djgpp References: <81r6d1$16o9$1 AT news DOT itfs DOT nsk DOT su> Subject: Re: Two newbie questions Lines: 22 Organization: Pin Eight Software X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 5.00.2919.6600 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 Message-ID: X-Trace: /KtlGWKff9NB7Hm+Lo1aCiJX1loFTuRv1Pl6UJEYt8dnXNLYCtIOfzzYQ9gDlFNg9ee9Y4hKFSa8!awqpQkQadcOHs6D9uF4q6504+wOxiAQiZ6BIKJX5aA4lDY0L41AWgoZjjihH811z/HdEoNDTog== X-Complaints-To: abuse AT gte DOT net X-Abuse-Info: Please be sure to forward a copy of ALL headers X-Abuse-Info: Otherwise we will be unable to process your complaint properly NNTP-Posting-Date: Sun, 28 Nov 1999 21:49:20 GMT Distribution: world Date: Sun, 28 Nov 1999 21:49:20 GMT To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com "Michael N. Filippov" wrote: > I'm going to use DJGPP but don't know is it possible : > > 1) to have only one .exe program. In other words, to compile > DPMI server into the program and use this program independently. Can't compile CWSDPMI into program. You may want to use PMODE/DJ if you *really* need one EXE, but PMODE/DJ has some serious disadvantages. > 2) to describe 64-bits variable, something like this : > `int64 a' or may be just simple `long long a'. "long long a" works in GCC compilers (DJGPP, Mingw32, DJGPP + RSXNTDJ, Cygwin, GCC for GNU/Linux). It's not portable; it may not work in LCC, Watcom, or M$VC. Damian Yerrick