// Author: Vadim Zeitlin
// RCS-ID: $Id$
// Copyright: (c) 2009 Vadim Zeitlin
-// Licence: wxWindows license
+// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
/**
wxMessageOutputStderr(FILE *fp = stderr);
};
+/**
+ Flags used with wxMessageOutputBest.
+
+ See wxMessageOutputBest::wxMessageOutputBest().
+ */
+enum wxMessageOutputFlags
+{
+ wxMSGOUT_PREFER_STDERR = 0, ///< use stderr if available (this is the default)
+ wxMSGOUT_PREFER_MSGBOX = 1 ///< always use message box if available
+};
+
/**
Output messages in the best possible way.