Closed GoogleCodeExporter closed 8 years ago
The current wikipedia article on the spawn functions (at
http://en.wikipedia.org/w/index.php?title=Spawn_(computing)&oldid=341902440)
mentions
_exec_showset and _exec_showget functions for controlling how spawned program
windows
are shown. But on further investigation it appears that those functions are
specific
to the "Digital Mars C++ Runtime Library". (See
http://www.digitalmars.com/rtl/process.html). There's no mention of them on
MSDN or
in any of the Cygwin, MinGW, or Visual C++ header files.
What could be done is to invoke the new mintty directly using CreateProcess
instead
of spawn() and pass the original STARTUPINFO along, but that would lose the
Unix
semantics implemented by Cygwin's spawn().
So a new option it will have to be: '--show normal/min/max/full', with the
added
bonus of being able to start mintty in fullscreen mode.
Original comment by andy.koppe
on 30 May 2010 at 7:53
Implemented the option in r892 on trunk. Decided to name it '--window', with
short
option '-w'.
Original comment by andy.koppe
on 30 May 2010 at 7:33
Verified for 0.7-beta3.
Original comment by andy.koppe
on 2 Jun 2010 at 6:48
Original issue reported on code.google.com by
andy.koppe
on 27 May 2010 at 4:09