/////////////////////////////////////////////////////////////////////
| 447 | |
| 448 | ////////////////////////////////////////////////////////////////////////// |
| 449 | int CScriptObjectSystem::Warning(IFunctionHandler *pH) |
| 450 | { |
| 451 | CHECK_PARAMETERS(1); |
| 452 | |
| 453 | const char *sParam = ""; |
| 454 | if (pH->GetParam(1,sParam)) |
| 455 | { |
| 456 | m_pSystem->Warning( VALIDATOR_MODULE_SCRIPTSYSTEM,VALIDATOR_WARNING,0,NULL,"%s",sParam ); |
| 457 | } |
| 458 | |
| 459 | return (pH->EndFunction()); |
| 460 | } |
| 461 | |
| 462 | ////////////////////////////////////////////////////////////////////////// |
| 463 | int CScriptObjectSystem::Error(IFunctionHandler *pH) |
no test coverage detected