+ Uuid uuid(riid);
+ return wxString((const wxChar *)uuid);
+}
+
+void wxLogQueryInterface(const wxChar *szInterface, REFIID riid)
+{
+ wxLogTrace(wxT("%s::QueryInterface (iid = %s)"),
+ szInterface, GetIidName(riid).c_str());
+}
+
+void wxLogAddRef(const wxChar *szInterface, ULONG cRef)
+{
+ wxLogTrace(wxT("After %s::AddRef: m_cRef = %d"), szInterface, cRef + 1);
+}
+
+void wxLogRelease(const wxChar *szInterface, ULONG cRef)
+{
+ wxLogTrace(wxT("After %s::Release: m_cRef = %d"), szInterface, cRef - 1);