Kaydet (Commit) 5818dd94 authored tarafından Thorsten Behrens's avatar Thorsten Behrens

Related: tdf#63690 - add stubs for removed rtl_logfile functions.

This fixes up 3d403f2a, by not
removing public API.

Change-Id: I60a4b7284661238bdf32a1600f27a7e507c5374a
üst 6b3aa0fe
......@@ -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: */
......@@ -500,6 +500,7 @@ UDK_3_0_0 {
rtl_addUnloadingListener;
rtl_removeUnloadingListener;
rtl_logfile_trace;
osl_getProcessLocale;
osl_setProcessLocale;
local:
......@@ -545,6 +546,7 @@ UDK_3.3 {
osl_setCommandArgs;
rtl_uStringbuffer_insertUtf32;
rtl_ustr_ascii_compareIgnoreAsciiCase_WithLengths;
rtl_logfile_longTrace;
rtl_ustr_asciil_reverseEquals_WithLength;
} UDK_3.2;
......@@ -606,6 +608,7 @@ UDK_3.9 { # OOo 3.1
UDK_3.10 { # OOo 3.2
global:
rtl_logfile_hasLogFile;
rtl_math_erf;
rtl_math_erfc;
rtl_math_asinh;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment