mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-13 22:25:40 +00:00
34 lines
685 B
C
34 lines
685 B
C
|
/*
|
||
|
* Copyright 2018 The Emscripten Authors. All rights reserved.
|
||
|
* Emscripten is available under two separate licenses, the MIT license and the
|
||
|
* University of Illinois/NCSA Open Source License. Both these licenses can be
|
||
|
* found in the LICENSE file.
|
||
|
*/
|
||
|
|
||
|
#include <emscripten.h>
|
||
|
|
||
|
void waka(int x, int y, int z) {
|
||
|
EM_ASM({
|
||
|
out('received ' + [$0, $1, $2] + '.');
|
||
|
}, x, y, z);
|
||
|
}
|
||
|
|
||
|
int main() {
|
||
|
EM_ASM({
|
||
|
#if DIRECT
|
||
|
dynCall_viii($0, 1, 4, 9);
|
||
|
return;
|
||
|
#endif
|
||
|
#if EXPORTED
|
||
|
Module['dynCall_viii']($0, 1, 4, 9);
|
||
|
return;
|
||
|
#endif
|
||
|
#if FROM_OUTSIDE
|
||
|
eval("Module['dynCall_viii'](" + $0 + ", 1, 4, 9)");
|
||
|
return;
|
||
|
#endif
|
||
|
throw "no test mode";
|
||
|
}, &waka);
|
||
|
}
|
||
|
|