MCPcopy Create free account
hub / github.com/DavidColson/Polybox / BindSerialization

Function BindSerialization

source/serialization.cpp:926–937  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

924// ***********************************************************************
925
926void BindSerialization(lua_State* L) {
927 // register global functions
928 const luaL_Reg globalFuncs[] = {
929 { "serialize", Serialize },
930 { "deserialize", Deserialize },
931 { NULL, NULL }
932 };
933
934 lua_pushvalue(L, LUA_GLOBALSINDEX);
935 luaL_register(L, NULL, globalFuncs);
936 lua_pop(L, 1);
937}

Callers 2

ImportFileFunction · 0.85
LoadAppFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected