Re: Creating a separate console window via CreateProcess

2010-02-13 Thread turbowells
Mark Geisert 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 a Cygwin pro

Re: Creating a separate console window via CreateProcess

2010-02-12 Thread Mark Geisert
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 a Cygwin program. That's why it's off-topic for this

Re: Creating a separate console window via CreateProcess

2010-02-12 Thread turbowells
Christopher Faylor 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 the Cygwin list for help. The whol

Re: Creating a separate console window via CreateProcess

2010-02-12 Thread Christopher Faylor
On Fri, Feb 12, 2010 at 04:42:39PM -0500, turbowe...@maine.rr.com wrote: >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 DO

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 dow