Mathematica 9 is now available
THIS IS DOCUMENTATION FOR AN OBSOLETE PRODUCT.
SEE THE DOCUMENTATION CENTER FOR THE LATEST INFORMATION.
Mathematica > MathLink C Language Functions >
MathLink C Function

MLDeinitialize()

void MLDeinitialize(MLENV env)
destructs the MathLink environment object.
  • The MathLink environment object stores the global state of MathLink during the execution of a program.
  • MLDeinitialize() must be called before the program exits.
  • MLClose() must be called for all open links before calling MLDeinitialize().
  • An appropriate call to MLDeinitialize() is generated automatically when an external program is created from MathLink templates.
  • MLDeinitialize() is declared in the MathLink header file mathlink.h.
#include "mathlink.h"

int main(int argc, char **argv)
{
    MLENV ep;

    ep = MLInitialize((char *)0);

    ...

    MLDeinitialize(ep);
    return 0;
}
© 2013 Wolfram Research, Inc. Japanese
Ask a question about this page  |  Suggest an improvement  |  Leave a message for the team