diff options
author | Thorsten Behrens <thb@documentfoundation.org> | 2015-02-16 17:22:14 +0100 |
---|---|---|
committer | Thorsten Behrens <thb@documentfoundation.org> | 2015-02-16 23:26:55 +0100 |
commit | 5818dd94599540196072955b5987671f7f7d5a44 (patch) | |
tree | d94cf695962eb7cbdaeda86ba32d3dcf0c2772d1 /sal/osl | |
parent | 6b3aa0fe4094e87290bd33a30bd6cd99ee78ce38 (diff) |
Related: tdf#63690 - add stubs for removed rtl_logfile functions.
This fixes up 3d403f2af2e5b7d26254d45590764f279450fab6, by not
removing public API.
Change-Id: I60a4b7284661238bdf32a1600f27a7e507c5374a
Diffstat (limited to 'sal/osl')
-rw-r--r-- | sal/osl/all/compat.cxx | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sal/osl/all/compat.cxx b/sal/osl/all/compat.cxx index 592ac90ae70c..2f482de56b16 100644 --- a/sal/osl/all/compat.cxx +++ b/sal/osl/all/compat.cxx @@ -150,6 +150,18 @@ SAL_DLLPUBLIC_EXPORT void SAL_CALL rtl_zeroMemory(void *, sal_Size) { std::abort(); } +SAL_DLLPUBLIC_EXPORT void SAL_CALL rtl_logfile_trace( const sal_Char* pszFormat, ... ) { + std::abort(); +} + +SAL_DLLPUBLIC_EXPORT void SAL_CALL rtl_logfile_longTrace(char const * format, ...) { + std::abort(); +} + +SAL_DLLPUBLIC_EXPORT sal_Bool SAL_CALL rtl_logfile_hasLogFile( void ) { + for (;;) { std::abort(); } // avoid "must return a value" warnings +} + } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |