mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-07 05:24:46 +01:00
14 lines
240 B
C
14 lines
240 B
C
|
|
||
|
#ifndef _WASMDUTIL_H_
|
||
|
#define _WASMDUTIL_H_
|
||
|
|
||
|
#include <pthread.h>
|
||
|
|
||
|
#include "dutil.h"
|
||
|
#include "mempool.h"
|
||
|
|
||
|
XW_DUtilCtxt* wasm_dutil_make( MPFORMAL VTableMgr* vtMgr, void* closure );
|
||
|
void wasm_dutil_destroy( XW_DUtilCtxt* dutil );
|
||
|
|
||
|
#endif
|