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

Function freeConsoleParserList

Engine/source/console/consoleParser.cpp:36–46  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

34static ConsoleParser *gDefaultParser = NULL;
35
36void freeConsoleParserList(void)
37{
38 while(gParserList)
39 {
40 ConsoleParser * pParser = gParserList;
41 gParserList = pParser->next;
42 delete pParser;
43 }
44
45 gDefaultParser = NULL;
46}
47
48bool addConsoleParser(char *ext, fnGetCurrentFile gcf, fnGetCurrentLine gcl, fnParse p, fnRestart r, fnSetScanBuffer ssb, bool def)
49{

Callers 1

shutdownFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected