MLParameters (C Function)

As of Version 10.0, MLParameters has been superseded by MLEnvironmentParameter.

is a MathLink type used to contain user-supplied parameters or functionality for an MLENV object.

Details

Examples

Basic Examples  (1)

#include <stdlib.h>
#include "mathlink.h"

int main(int argc, char **argv)
{
    MLENV env;
    MLParameters p;

    if(! MLNewParameters((char *)p, MLREVISION, MLAPIREVISION))
        { /* unable to initialize the parameters object */

    MLSetAllocParameter((char *)p, malloc, free);

    env = MLInitialize((char *)p);
    if(env == (MLENV)0)
        { /* unable to initialize the MathLink environment */ }

    /* ... */

    MLDeinitialize(env);

    return 0;
}