MCPcopy Create free account
hub / github.com/TorqueGameEngines/Torque3D / readLongString

Method readLongString

Engine/source/core/stream/streamObject.cpp:132–140  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

130}
131
132const char *StreamObject::readLongString(U32 maxStringLen)
133{
134 if(mStream == NULL)
135 return NULL;
136
137 char *buffer = Con::getReturnBuffer(maxStringLen + 1);
138 mStream->readLongString(maxStringLen, buffer);
139 return buffer;
140}
141
142//-----------------------------------------------------------------------------
143// Console Methods

Callers 1

streamObject.cppFile · 0.45

Calls 1

getReturnBufferFunction · 0.85

Tested by

no test coverage detected