[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: embedding mzscheme into a C++ application



If you're on Win32, you might think about using MzCOM, a COM class that
contains a MzScheme evaluator.  Basically, after loading MzCOM using
COM, you just write:

  mzComObj->Eval("some scheme expression");

in your C++ program.

See 

  http://www.cs.rice.edu/CS/PLT/packages/mzcom/

-- Paul

> -----Original Message-----
> From: owner-plt-scheme@fast.cs.utah.edu [mailto:owner-plt-
> scheme@fast.cs.utah.edu] On Behalf Of Brian McAndrews
> Sent: Wednesday, November 14, 2001 1:04 PM
> To: plt-scheme@fast.cs.utah.edu
> Subject: embedding mzscheme into a C++ application
> 
> I want to use scheme as a scripting language extension to our
> application.
> I've been using guile, but I am becoming frustrated with it
> (especially on a
> win32 platform).  I've looked at the Inside PLT MzScheme document and
> it
> looks promising.  2 questions: 1) is this the right tool for the job
> and 2)
> where can I find more documentation/examples on embedding mzscheme
> into C
> based applications?
> 
> Thanks
> Brian