flst / upstream /emscripten /test /other /embind_tsgen_wasm64.cpp
arudradey's picture
Upload folder using huggingface_hub
00df61d verified
Raw
History Blame Contribute Delete
192 Bytes
#include <emscripten/bind.h>
#include <emscripten/val.h>
using namespace emscripten;
long long_fn(unsigned long) { return 0; }
EMSCRIPTEN_BINDINGS(Test) {
function("longFn", &long_fn);
}