MCPcopy Create free account
hub / github.com/csound/csound / warn

Method warn

include/OpcodeBase.hpp:229–244  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

227 va_end(args);
228 }
229 void warn(CSOUND *csound, const char *format,...)
230 {
231 if(csound) {
232 if(csound->GetMessageLevel(csound) & CS_WARNMSG) {
233 va_list args;
234 va_start(args, format);
235 csound->MessageV(csound, CSOUNDMSG_WARNING, format, args);
236 va_end(args);
237 }
238 } else {
239 va_list args;
240 va_start(args, format);
241 vfprintf(stdout, format, args);
242 va_end(args);
243 }
244 }
245 OPDS opds;
246};
247

Callers 8

createStartPromiseMethod · 0.45
createStopPromiseMethod · 0.45
createPausePromiseMethod · 0.45
createResumePromiseMethod · 0.45
initializeMethod · 0.45
initializeMethod · 0.45
wasi.jsFile · 0.45
_FindDelegateAtPathMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected