| 1064 | } |
| 1065 | |
| 1066 | bool 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 | |
| 1081 | void C_SearchForPullins(FExecList *exec, const char *file, FCommandLine &argv) |
| 1082 | { |
no test coverage detected