From: Damian Yerrick Newsgroups: comp.os.msdos.djgpp Subject: Re: windows programming with DJGPP Organization: Pin Eight Software http://pineight.8m.com/ Message-ID: <5eroussppbd0a5dq4grdhsc1lgnpi9n4ku@4ax.com> References: <8shfhp$1g2e$1 AT news4 DOT isdnet DOT net> X-Newsreader: Forte Agent 1.7/32.534 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Lines: 22 X-Trace: /KtlGRZ9VFLtjcdSD7rfZkwtyLiySJnIuZhpv2JsFZLixI36qeL4taKHPBIqKS1IyPWJ6pFVCArX!lY60HWpFu4BG3558jddM8d+XwZ6qiuIfaxpnm4EvHcnOgNNVyaT+DZ0ZM2LJ0n/FZwEqWvSgbCAM!klYP8Q== 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: Tue, 17 Oct 2000 15:20:38 GMT Distribution: world Date: Tue, 17 Oct 2000 15:20:38 GMT To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com On Tue, 17 Oct 2000 14:12:03 +0200, "axlman" wrote: >I tried RSX librarie with DJGPP, but is there another windows librarie for >DJGPP that don't display a dos box every time I run a program like those >built with RSX and DJGPP ??? This is a bug in Microsoft Windows 95, Microsoft Windows 98, Microsoft Windows ME, and Microsoft Windows NT 4. They display the "MS-DOS" icon on Win32 console applications. To get rid of the console window, you'll need to write your application to the WinAPI instead of to ANSI/POSIX, and then pass a linker switch (in mingw32, it's -mwindows) when you link. --