Don't compile smapi.cpp for non-MSW platforms.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23468 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Mattia Barbon 2003-09-10 09:14:01 +00:00
parent 757e7c678f
commit 5f109709da

View File

@ -20,6 +20,8 @@
#pragma hdrstop
#endif
#ifdef __WXMSW__
#ifndef WX_PRECOMP
#include "wx/wx.h"
#endif
@ -487,3 +489,5 @@ long wxMapiSession::GetLastError() const
{
return m_data->m_nLastError;
}
#endif // __WXMSW__