summaryrefslogtreecommitdiff
path: root/src/VBox/Runtime/common/string/strprintf.cpp
diff options
context:
space:
mode:
authorvboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f>2009-07-07 14:58:27 +0000
committervboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f>2009-07-07 14:58:27 +0000
commitb262e1c4f9758d44557105ae83f1de7b7f123dfc (patch)
tree4d9530f479fd0015fcb1b1cd88be476828346c33 /src/VBox/Runtime/common/string/strprintf.cpp
parent61311d7faf97c6b16b704e3337ba05e24495fb9a (diff)
downloadVirtualBox-svn-b262e1c4f9758d44557105ae83f1de7b7f123dfc.tar.gz
IPRT,HostDrv,AddDrv: Export public IPRT symbols for the linux kernel (pain).
git-svn-id: https://www.virtualbox.org/svn/vbox/trunk@21337 cfe28804-0f27-0410-a406-dd0f0b0b656f
Diffstat (limited to 'src/VBox/Runtime/common/string/strprintf.cpp')
-rw-r--r--src/VBox/Runtime/common/string/strprintf.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/VBox/Runtime/common/string/strprintf.cpp b/src/VBox/Runtime/common/string/strprintf.cpp
index a6e8823838a..d3189b7fee5 100644
--- a/src/VBox/Runtime/common/string/strprintf.cpp
+++ b/src/VBox/Runtime/common/string/strprintf.cpp
@@ -33,6 +33,8 @@
* Header Files *
*******************************************************************************/
#include <iprt/string.h>
+#include "internal/iprt.h"
+
#include <iprt/assert.h>
@@ -96,12 +98,15 @@ RTDECL(size_t) RTStrPrintfExV(PFNSTRFORMAT pfnFormat, void *pvArg, char *pszBuff
Arg.cch = cchBuffer - 1;
return RTStrFormatV(strbufoutput, &Arg, pfnFormat, pvArg, pszFormat, args);
}
+RT_EXPORT_SYMBOL(RTStrPrintfExV);
RTDECL(size_t) RTStrPrintfV(char *pszBuffer, size_t cchBuffer, const char *pszFormat, va_list args)
{
return RTStrPrintfExV(NULL, NULL, pszBuffer, cchBuffer, pszFormat, args);
}
+RT_EXPORT_SYMBOL(RTStrPrintfV);
+
RTDECL(size_t) RTStrPrintfEx(PFNSTRFORMAT pfnFormat, void *pvArg, char *pszBuffer, size_t cchBuffer, const char *pszFormat, ...)
{
@@ -112,6 +117,8 @@ RTDECL(size_t) RTStrPrintfEx(PFNSTRFORMAT pfnFormat, void *pvArg, char *pszBuffe
va_end(args);
return cbRet;
}
+RT_EXPORT_SYMBOL(RTStrPrintfEx);
+
RTDECL(size_t) RTStrPrintf(char *pszBuffer, size_t cchBuffer, const char *pszFormat, ...)
{
@@ -122,4 +129,5 @@ RTDECL(size_t) RTStrPrintf(char *pszBuffer, size_t cchBuffer, const char *pszFor
va_end(args);
return cbRet;
}
+RT_EXPORT_SYMBOL(RTStrPrintf);