]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/apptrait.h
remove the recently added MSWFindMenuBarItem() as we already had FindItemInMenuBar...
[wxWidgets.git] / include / wx / msw / apptrait.h
index aca686e5fad1a13907fa59193024d3ac7e0852b4..0c8f8ea2bf60d40212b16534b9999d5cd9135c4d 100644 (file)
@@ -28,6 +28,10 @@ public:
 #endif
     virtual bool DoMessageFromThreadWait();
     virtual WXDWORD WaitForThread(WXHANDLE hThread);
+#ifndef __WXWINCE__
+    virtual bool CanUseStderr() { return true; }
+    virtual bool WriteToStderr(const wxString& text);
+#endif // !__WXWINCE__
 };
 
 #if wxUSE_GUI
@@ -45,9 +49,13 @@ public:
     virtual bool DoMessageFromThreadWait();
     virtual wxPortId GetToolkitVersion(int *majVer = NULL, int *minVer = NULL) const;
     virtual WXDWORD WaitForThread(WXHANDLE hThread);
+
+#ifndef __WXWINCE__
+    virtual bool CanUseStderr();
+    virtual bool WriteToStderr(const wxString& text);
+#endif // !__WXWINCE__
 };
 
 #endif // wxUSE_GUI
 
 #endif // _WX_MSW_APPTRAIT_H_
-