MCPcopy Create free account
hub / github.com/ZDoom/Raze / C_ExecFile

Function C_ExecFile

source/common/console/c_dispatch.cpp:1066–1079  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1064}
1065
1066bool C_ExecFile (const char *file)
1067{
1068 FExecList *exec = C_ParseExecFile(file, NULL);
1069 if (exec != NULL)
1070 {
1071 exec->ExecCommands();
1072 if (exec->Pullins.Size() > 0)
1073 {
1074 Printf(TEXTCOLOR_BOLD "Notice: Pullin files were ignored.\n");
1075 }
1076 delete exec;
1077 }
1078 return exec != NULL;
1079}
1080
1081void C_SearchForPullins(FExecList *exec, const char *file, FCommandLine &argv)
1082{

Callers 1

UNSAFE_CCMDFunction · 0.85

Calls 4

C_ParseExecFileFunction · 0.85
PrintfFunction · 0.85
ExecCommandsMethod · 0.80
SizeMethod · 0.45

Tested by

no test coverage detected