summaryrefslogtreecommitdiff
path: root/src/palrt/bstr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/palrt/bstr.cpp')
-rw-r--r--src/palrt/bstr.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/palrt/bstr.cpp b/src/palrt/bstr.cpp
index ae22b15a10..8b3cc36620 100644
--- a/src/palrt/bstr.cpp
+++ b/src/palrt/bstr.cpp
@@ -71,7 +71,7 @@ inline HRESULT CbSysStringSize(ULONG cchSize, BOOL isByteLen, ULONG *result)
* return value = BSTR, NULL if the allocation failed.
*
***********************************************************************/
-STDAPI_(BSTR) SysAllocStringLen(const OLECHAR *psz, UINT len)
+DLLEXPORT STDAPI_(BSTR) SysAllocStringLen(const OLECHAR *psz, UINT len)
{
BSTR bstr;
@@ -168,7 +168,7 @@ SysAllocStringByteLen(const char FAR* psz, unsigned int len)
* None
*
***********************************************************************/
-STDAPI_(void) SysFreeString(BSTR bstr)
+DLLEXPORT STDAPI_(void) SysFreeString(BSTR bstr)
{
if(bstr == NULL)
return;
@@ -187,7 +187,7 @@ STDAPI_(void) SysFreeString(BSTR bstr)
* return value = unsigned int, length in characters.
*
***********************************************************************/
-STDAPI_(unsigned int)
+DLLEXPORT STDAPI_(unsigned int)
SysStringLen(BSTR bstr)
{
if(bstr == NULL)