MLDeallocator (C 関数)
MLDeallocatorはWSDeallocatorに置き換えられた.
MathLink形式の一つで,void * を引数として取り,メモリデアロケータを実行する void を返還形式として持つ関数に,関数ポインタを説明する.
例題
例 (1)
#include <stdlib.h>
#include "mathlink.h"
/* AppAllocator implements a custom memory allocator */
void * AppAllocator(unsigned long size)
{
return malloc(size);
}
/* AppDeallocator implements a custom memory deallocator */
void AppDeallocator(void *m)
{
free(m);
}
int main(int argc, char **argv)
{
MLENV env;
MLINK link;
MLEnvironmentParameter p;
int error;
p = MLNewParameters(MLREVISION, MLAPIREVISION);
if(p == (MLEnvironmentParameter)0)
{ /* Unable to initialize a parameters object */ }
MLSetAllocParameter(p, AppAllocator, AppDeallocator);
env = MLInitialize(p);
if(env == (MLENV)0)
{ /* unable to initialize the MathLink environment */ }
MLReleaseParameters(p);
link = MLOpenArgcArgv(env, argc, argv, &error);
if(link == (MLINK)0)
{ /* unable to create the link */ }
/* ... */
MLClose(link);
MLDeinitialize(env);
return 0;
}