WSAllocator (C 関数)

WSTP形式の一つで,unsigned longを引数として取り,void *を返還形式として持つ関数に, 関数ポインタを説明する.

詳細

  • メモリアロケータ(割当て)関数は,同じ位置に現れる要素をまとめることができるものでなくてはならない.
  • 64ビットのWindowsプラットフォーム上では, アロケータは unsigned __wsint64を引数として取る.
  • WSAllocator()は,WSTPヘッダファイルwstp.hの中で宣言される.

例題

  (1)

#include <stdlib.h>
#include "wstp.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)
{
    WSENV env;
    WSLINK link;
    WSParameters p;
    int error;

    WSSetAllocParameter((char *)p, AppAllocator, AppDeallocator);

    env = WSInitialize((char *)p);
    if(env == (WSENV)0)
        { /* unable to initialize the WSTP environment */ }

    link = WSOpenArgcArgv(env, argc, argv, &error);
    if(link == (WSLINK)0)
        { /* unable to create the link */ }

    /* ... */

    WSClose(link);
    WSDeinitialize(env);

    return 0;
}