Leaked source code of windows server 2003
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
//----------------------------------------------------------------------------- // // File: _report.inl // Copyright (C) 1994-1997 Microsoft Corporation // All rights reserved. // // // //----------------------------------------------------------------------------- //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ // // Gets all the 'Note' severity messages from the CBufferReport. // //----------------------------------------------------------------------------- inline const MessageList & CBufferReport::GetNotes(void) const { return m_mlNotes; }
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ // // Gets all the 'Warning' severity messages from the CBufferReport. // //----------------------------------------------------------------------------- inline const MessageList & CBufferReport::GetWarnings(void) const { return m_mlWarnings; }
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ // // Gets all the 'Error' severity messages from the CBufferReport. // //----------------------------------------------------------------------------- inline const MessageList & CBufferReport::GetErrors(void) const { return m_mlErrors; }
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ // // Gets all the 'Abort' severity messages from the CBufferReport. // //----------------------------------------------------------------------------- inline const MessageList & CBufferReport::GetAborts(void) const { return m_mlAborts; }
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ // // Returns ALL the messages issued to the CBufferReport. The messages // are stored in chronological order. // //----------------------------------------------------------------------------- inline const MessageList & CBufferReport::GetMessages(void) const { return m_mlMessages; }
|