fixed wx_media linkage/export problems - from RN patch

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37479 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
David Surovell
2006-02-11 00:30:20 +00:00
parent 24f904f41f
commit e28985499b
3 changed files with 8 additions and 8 deletions

View File

@@ -66,7 +66,7 @@ bool IsIidFromList(REFIID riid, const IID *aIids[], size_t nCount)
return false;
}
BSTR wxConvertStringToOle(const wxString& str)
WXDLLEXPORT BSTR wxConvertStringToOle(const wxString& str)
{
/*
unsigned int len = strlen((const char*) str);
@@ -80,7 +80,7 @@ BSTR wxConvertStringToOle(const wxString& str)
return bstr.Get();
}
wxString wxConvertStringFromOle(BSTR bStr)
WXDLLEXPORT wxString wxConvertStringFromOle(BSTR bStr)
{
#if wxUSE_UNICODE
wxString str(bStr);