Sign in
chromium
/
external
/
github.com
/
kripken
/
emscripten
/
HEAD
/
.
/
test
/
other
/
embind_tsgen_constant_only.cpp
blob: 29de7b8511d5c6e009bd141e648259ed7a61702e [
file
]
#include
<emscripten/bind.h>
using
namespace
emscripten
;
int
SOME_CONSTANT
=
15
;
EMSCRIPTEN_BINDINGS
(
Foo
)
{
constant
(
"SOME_CONSTANT"
,
SOME_CONSTANT
);
}