[plt-scheme] wmzscheme

From: Matthew Flatt (mflatt at cs.utah.edu)
Date: Tue Jun 28 17:25:00 EDT 2005

At Thu, 02 Jun 2005 21:02:07 +0200, Hans Oesterholt-Dijkema wrote:
> Does anyone know of a 'wmzscheme' program, that
> doesn't open a console, on Windows? I need such
> program to be able to start mzgtk2 programs without
> getting a console program.

As of v299.107, MzScheme can make a non-console variant of itself:

 (require (lib "embed.ss" "compiler"))
 (make-embedding-executable "wmzscheme.exe" 
                            #f #f null null null null
                            '((subsystem . windows)))

It can also make a console variant of a MrEd-based application:

 (require (lib "embed.ss" "compiler"))
 (make-embedding-executable "cmred.exe" 
                            #t #f null null null null
                            '((subsystem . console)))

Matthew



Posted on the users mailing list.