diff options
author | Ocke Janssen <oj@openoffice.org> | 2010-03-17 12:53:49 +0000 |
---|---|---|
committer | Ocke Janssen <oj@openoffice.org> | 2010-03-17 12:53:49 +0000 |
commit | 6c8f48f2d13e98ca2f844c21e31c5717a3a60c6e (patch) | |
tree | aad4fb05be56e5fc34ba03781b90b0296f023d80 /connectivity/source/drivers/macab | |
parent | dd7a39f401029b46cf65e449531e1c772b20f8f9 (diff) |
add SAL_DLLPUBLIC_EXPORT
Diffstat (limited to 'connectivity/source/drivers/macab')
-rwxr-xr-x | connectivity/source/drivers/macab/MacabConnection.cxx | 3 | ||||
-rwxr-xr-x | connectivity/source/drivers/macab/makefile.mk | 4 |
2 files changed, 2 insertions, 5 deletions
diff --git a/connectivity/source/drivers/macab/MacabConnection.cxx b/connectivity/source/drivers/macab/MacabConnection.cxx index 58cf82f272fc..31b2bbfd6b1e 100755 --- a/connectivity/source/drivers/macab/MacabConnection.cxx +++ b/connectivity/source/drivers/macab/MacabConnection.cxx @@ -314,10 +314,11 @@ MacabAddressBook* MacabConnection::getAddressBook() const return m_pAddressBook; } // ----------------------------------------------------------------------------- -extern "C" void* SAL_CALL createMacabConnection( void* _pDriver ) +extern "C" SAL_DLLPUBLIC_EXPORT void* SAL_CALL createMacabConnection( void* _pDriver ) { MacabConnection* pConnection = new MacabConnection( static_cast< MacabDriver* >( _pDriver ) ); // by definition, the pointer crossing library boundaries as void ptr is acquired once pConnection->acquire(); return pConnection; } + diff --git a/connectivity/source/drivers/macab/makefile.mk b/connectivity/source/drivers/macab/makefile.mk index 811f1fabb143..35532b15ec2d 100755 --- a/connectivity/source/drivers/macab/makefile.mk +++ b/connectivity/source/drivers/macab/makefile.mk @@ -54,8 +54,6 @@ DEPOBJFILES= \ # --- Library ----------------------------------- -SHL1VERSIONMAP=$(TARGET).map - SHL1TARGET= $(TARGET)$(MACAB_MAJOR) SHL1OBJS=$(SLOFILES) SHL1STDLIBS=\ @@ -98,8 +96,6 @@ MACAB_LIB=-framework Carbon -framework AddressBook # --- Library ----------------------------------- -SHL2VERSIONMAP=$(TARGET2).map - SHL2TARGET= $(TARGET2)$(MACAB_MAJOR) SHL2OBJS=$(SLO2FILES) SHL2STDLIBS=\ |