MCPcopy Create free account
hub / github.com/emscripten-core/emscripten / _embind_initialize_bindings

Function _embind_initialize_bindings

system/lib/embind/bind.cpp:55–59  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

53static InitFunc* init_funcs = nullptr;
54
55void _embind_initialize_bindings() {
56 for (auto* f = init_funcs; f; f = f->next) {
57 f->init_func();
58 }
59}
60
61void _embind_register_bindings(InitFunc* f) {
62 f->next = init_funcs;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected