summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-03-10 15:10:39 +0100
committerAndras Timar <andras.timar@collabora.com>2016-07-13 21:37:51 +0200
commit763d2d2de29139c36e14c1a22844f4f4744a4be7 (patch)
treeacc957d41640eddd2b08e73d34d59794b1df4fdf /include
parent88df7efb5164cb2e7ecb8f84a1bf1707743ed980 (diff)
No need for extern "C" here
...and fix resulting loplugin:salbool fallout Change-Id: I5ae1497608d31c20b0d10676450a7673dee1c651 (cherry picked from commit 8471ba7b97a2a01039133674d3960c5c16803833)
Diffstat (limited to 'include')
-rw-r--r--include/jvmfwk/framework.hxx14
1 files changed, 5 insertions, 9 deletions
diff --git a/include/jvmfwk/framework.hxx b/include/jvmfwk/framework.hxx
index e0e1d883b1a0..97078a4cc5df 100644
--- a/include/jvmfwk/framework.hxx
+++ b/include/jvmfwk/framework.hxx
@@ -27,8 +27,6 @@
#include <osl/mutex.h>
#include "jni.h"
-extern "C" {
-
/** @file
<p>This library can operate in two modes, application mode and direct mode.</p>
@@ -285,10 +283,10 @@ JVMFWK_DLLPUBLIC void SAL_CALL jfw_freeJavaInfo(JavaInfo *pInfo);
@param pInfoB
the second argument which is compared with the first.
@return
- sal_True - both object represent the same JRE.</br>
- sal_False - the objects represend different JREs
+ true - both object represent the same JRE.</br>
+ false - the objects represend different JREs
*/
-JVMFWK_DLLPUBLIC sal_Bool SAL_CALL jfw_areEqualJavaInfo(
+JVMFWK_DLLPUBLIC bool SAL_CALL jfw_areEqualJavaInfo(
JavaInfo const * pInfoA,JavaInfo const * pInfoB);
/** determines if a Java Virtual Machine is already running.
@@ -573,7 +571,7 @@ JVMFWK_DLLPUBLIC javaFrameworkError SAL_CALL jfw_getSelectedJRE(JavaInfo **ppInf
/** determines if Java can be used.
- <p>If <code>bEnabled</code> is <code>sal_False</code> then a call
+ <p>If <code>bEnabled</code> is <code>false</code> then a call
to jfw_startVM will result in an error with the errorcode
<code>JFW_E_JAVA_DISABLED</code></p>
@@ -587,7 +585,7 @@ JVMFWK_DLLPUBLIC javaFrameworkError SAL_CALL jfw_getSelectedJRE(JavaInfo **ppInf
were not met.<br/>
JFW_E_DIRECT_MODE the function cannot be used in this mode.
*/
-JVMFWK_DLLPUBLIC javaFrameworkError SAL_CALL jfw_setEnabled(sal_Bool bEnabled);
+JVMFWK_DLLPUBLIC javaFrameworkError SAL_CALL jfw_setEnabled(bool bEnabled);
/** provides the information if Java can be used.
@@ -766,8 +764,6 @@ JVMFWK_DLLPUBLIC void SAL_CALL jfw_lock();
*/
JVMFWK_DLLPUBLIC void SAL_CALL jfw_unlock();
-}
-
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */