MCPcopy Create free account
hub / github.com/MonaSolutions/MonaServer / writeString

Method writeString

MonaServer/sources/ScriptWriter.h:43–43  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

41
42 void writeNumber(double value) { start(); lua_pushnumber(_pState, value); end(); }
43 void writeString(const char* value,Mona::UInt32 size) { start(); lua_pushlstring(_pState,value,size); end(); }
44 void writeBoolean(bool value) { start(); lua_pushboolean(_pState, value); end(); }
45 void writeNull() { start(); lua_pushnil(_pState); end(); }
46 Mona::UInt64 writeDate(const Mona::Date& date);

Callers 4

readOneMethod · 0.45
MonaServer.cppFile · 0.45
sendHelloMethod · 0.45
rejectMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected