The definitive Wolfram Language and notebook experience
The original technical computing environment
All-in-one AI assistance for your Wolfram experience
More mobile apps
We deliver solutions for the AI era—combining symbolic computation, data-driven insights and deep technical expertise
WolframConsulting.com
More Wolfram Solutions
More Solutions for Education
Courses in computing, science, life and more
Learn, solve problems and share ideas.
News, views and insights from Wolfram
Resources for
MLINK MLFromLinkID(MLENV env,long inumb)
returns the link object with ID number inumb in the MathLink environment env.
#include "mathlink.h"/* read data from the link represented by id */void f(MLENV env, long id){ MLINK lp; lp = MLFromLinkID(env, id); if(lp == (MLINK)0) { /* unable to get the link from the id number */ } /* determine the type of data on lp */ switch(MLGetNext(lp)) { /* ... */ } /* ... */}
C Functions: MLToLinkID()
Introduced in 1999 (4.0)