mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-04 23:02:02 +01:00
13 lines
240 B
C
13 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
|