Re: Creating a separate console window via CreateProcess

2010-02-13 Thread turbowells
Mark Geisert m...@maxrnd.com wrote: turbowells writes: I built the test program with: gcc -mno-cygwin creprc.c -o creprc ^^^ This option means No Cygwin. You're linking against MSVCRT, not cygwin1.dll. You are not creating

Creating a separate console window via CreateProcess

2010-02-12 Thread turbowells
I am building a application using the latest tools available via the cygwin setup program. The application is supposed to open a separate DOS console window, but all processing seems to occur within the context of the DOS console window where I execute the program. I have cut the program

Re: Creating a separate console window via CreateProcess

2010-02-12 Thread turbowells
Christopher Faylor cgf-use-the-mailinglist-ple...@cygwin.com wrote: On Fri, Feb 12, 2010 at 04:42:39PM -0500, turbowe...@maine.rr.com wrote: I built the test program with: gcc -mno-cygwin creprc.c -o creprc Could someone help me understand what I am doing wrong? You're asking