Re: Docs for ml32i1.dll
- To: mathgroup at smc.vnet.net
- Subject: [mg32703] Re: Docs for ml32i1.dll
- From: Jens-Peer Kuska <kuska at informatik.uni-leipzig.de>
- Date: Thu, 7 Feb 2002 05:09:28 -0500 (EST)
- Organization: Universitaet Leipzig
- References: <a3qr7j$29i$1@smc.vnet.net>
- Reply-to: kuska at informatik.uni-leipzig.de
- Sender: owner-wri-mathgroup at wolfram.com
Hi, in your MathLink reference ? in the online help or in "the book" ? MLENV MLInitialize(0) initializes functions in the MathLink library. void MLDeinitialize(MLENV env) deinitializes functions in the MathLink library. MLINK MLOpenString(MLENV env, char *string, long *errno) opens a MathLink connection taking parameters from a character string. Regards Jens Jeff Dillon wrote: > > Where can I find documentation for the functions in ml32il.dll? > > I'm writing a VB ActiveX dll that calls into this dll, based on the > Mathematica 3.0 > AddOns\MathLink\DevelopersKits\Windows\UnsupportedGoodies\vbfe32 > application. > > Here's a few lines from the .bas file: > > Declare Function MLInitialize Lib "ml32i1" (ByVal p As Long) As Long > Declare Sub MLDeinitialize Lib "ml32i1" (ByVal env As Long) > Declare Function MLOpenString Lib "ml32i1" (ByVal ep As Long, ByVal > command_line As String, ByRef errp As Long) As Long > > I need info on these various functions and the parameters. > > Jeff