HRESULT LLDBServices::ControlledOutputVaList( ULONG outputControl, ULONG mask, PCSTR format, va_list args) { return OutputVaList(mask, format, args); }
HRESULT DebugClient::ControlledOutputVaList( ULONG outputControl, ULONG mask, PCSTR format, va_list args) { return OutputVaList(mask, format, args); }
// Sends output through clients // output callbacks if the mask is allowed // by the current output control mask and // according to the output distribution // settings. HRESULT LLDBServices::Output( ULONG mask, PCSTR format, ...) { va_list args; va_start (args, format); HRESULT result = OutputVaList(mask, format, args); va_end (args); return result; }
// Sends output through clients // output callbacks if the mask is allowed // by the current output control mask and // according to the output distribution // settings. HRESULT DebugClient::Output( ULONG mask, PCSTR format, ...) { va_list args; va_start (args, format); HRESULT result = OutputVaList(mask, format, args); va_end (args); return result; }